Comments on How to Install Redmine 3 with Nginx on CentOS 7
Redmine is an open source web application for project management and issue tracker. In this tutorial, we will install Redmine 3.2 with Nginx as the web server, MySQL as the database server on a CentOS 7 (64 bit) operating system.
8 Comment(s)
Comments
Hi and thank you for this tutorial. I almost installed everything as you described. But at the end I can not start the redmine instalation.I installed redmine 3.3.xMy nginx server is working: here is what I have on it:
server {
listen 192.168.2.157:80;
server_name localhost;
root /var/www/redmine/public;
passenger_enabled on;
client_max_body_size 10m; # Max attachemnt size
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
But when I try to access the redmine with http://192.168.2.157/redmine I receive next:The error message is from Redmine I think, because the favicon is the redmine one.
We are sorry, but something went wrong.The issue has been logged for investigation. Please try again later.can you help me what I did wrong?
Hi,
I have one question, does Redmine 3.3 work with mysql 5.7 oder mariadb ?http://www.redmine.org/projects/redmine/wiki/redmineinstall
Thanks,
Dominique Schaefer
This is very helpful. It would be even more helpful if you showed how to set up the email and ldap functionality.
403 Forbidden
his error.
And what if I want to integrate git to redmine configured this way? I should find another tutorial...
I did it the same as on the tutorial but I can not get to redmine. Nothings open.
This post is very helpful for me. Thanks.
If you have an error to init on broswer, you should check '/opt/nginx/logs/error.log' file.
The log file will help you.
Good post.
Centos7 comes with MariaDB installed as opposed to MySQL.
How do you uninstall/remove MariaDB so that MySQL 5.5.6 can be installed? (preferred version for Redmine 3.4)