Need to change OpenProject linux installation default Apache,Mysql port 80,3306 to 81 & 3307.
How can i do that in linux ubuntu installation where the installation is at path of
Don’t know if you figured this out or not. Here’s where I go for my machine (Ubuntu 16.04 Server):
For MySQL. Mine is found at /etc/mysql/mysql.conf.d/mysqld.cnf. Browse through the file until you find the port number. (port = 3306) Change and restart the MySQL server process.
You will need to go through the OpenProject configuration again to specify the new MySQL port number.
The Apache port number to listen on can be changed by modifying the Apache configuration, usually found in /etc/apache2/ports.conf. (Look for a line that says, Listen 80…) Additionally you might want to also look at the virtual host configuration set up by OpenProject (e.g. /etc/apache2/sites-available/openproject.conf) to make sure that is also configured to the same port number you intend. Restart Apache for changes to take effect.
Replies (1)
Sunil,
Don’t know if you figured this out or not. Here’s where I go for my machine (Ubuntu 16.04 Server):
For MySQL. Mine is found at
/etc/mysql/mysql.conf.d/mysqld.cnf
. Browse through the file until you find the port number. (port = 3306
) Change and restart the MySQL server process.You will need to go through the OpenProject configuration again to specify the new MySQL port number.
The Apache port number to listen on can be changed by modifying the Apache configuration, usually found in
/etc/apache2/ports.conf
. (Look for a line that says,Listen 80
…) Additionally you might want to also look at the virtual host configuration set up by OpenProject (e.g./etc/apache2/sites-available/openproject.conf
) to make sure that is also configured to the same port number you intend. Restart Apache for changes to take effect.Hope this helps.
- Mike