You are on page 1of 2

yum update

yum groupinstall "Development tools"


yum install ImageMagick ImageMagick-devel curl-devel ntp iptables-services system-
config-firewall iptables-services system-config-firewall-tui
systemctl enable ntpd
ntpdate pool.ntp.org
systemctl start ntpd

yum install httpd httpd-devel


systemctl start httpd.service
systemctl enable httpd.service
#Open port 80
firewall-cmd --add-port=80/tcp –permanent
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

yum install mariadb-server mariadb mariadb-devel


systemctl start mariadb
mysql -u root -p
#Presionas <enter>
CREATE DATABASE redmine CHARACTER SET utf8;
GRANT ALL ON redmine.* TO 'redmine'@'localhost' IDENTIFIED BY '2cf3tCkM' WITH
GRANT OPTION;
FLUSH PRIVILEGES;
exit

https://www.howtoforge.com/tutorial/centos-lamp-server-apache-mysql-php/#-
installing-mysql-mariadb

https://www.howtoforge.com/tutorial/how-to-install-redmine-3-with-nginx-on-centos-7/

https://gitlab.inria.fr/sgilles/homepage/wikis/set-up-a-redmine-on-a-centos-7

https://www.rosehosting.com/blog/how-to-install-redmine-on-centos-7/

http://www.redmine.org/projects/redmine/wiki/Download

http://www.elbertcastaneda.com/2014/07/instalar-redmine-desde-cero-en-centos-7-
espanol/

http://www.redmine.org/projects/redmine/wiki/redmineinstall#Operating-system
https://www.redmine.org/projects/redmine/wiki/How_to_Install_Redmine_on_CentOS_(
Detailed)

https://www.redmine.org/projects/redmine/wiki/HowTo_configure_Apache_to_run_Red
mine

You might also like