mirror of
https://github.com/tommytran732/Pterodactyl-Script
synced 2024-11-09 05:01:33 -05:00
Fixed Issues with MariaDB on Ubuntu 18.04
Added /etc/mysql/mariadb.conf.d/50-server.cnf as another config file to check.
This commit is contained in:
parent
d5da0e9e53
commit
0621af1cab
@ -546,8 +546,13 @@ install_pterodactyl() {
|
|||||||
output 'Restarting MySQL process...'
|
output 'Restarting MySQL process...'
|
||||||
service mysql restart
|
service mysql restart
|
||||||
elif [ -f /etc/mysql/my.conf.d/mysqld.cnf ] ; then
|
elif [ -f /etc/mysql/my.conf.d/mysqld.cnf ] ; then
|
||||||
sed -i -- 's/bind-address/# bind-address/g' /etc/my.cnf
|
sed -i -- 's/bind-address/# bind-address/g' /etc/mysql/my.conf.d/mysqld.cnf
|
||||||
sed -i '/\[mysqld\]/a bind-address = 0.0.0.0' /etc/my.cnf
|
sed -i '/\[mysqld\]/a bind-address = 0.0.0.0' /etc/mysql/my.conf.d/mysqld.cnf
|
||||||
|
output 'Restarting MySQL process...'
|
||||||
|
service mysql restart
|
||||||
|
elif [ -f /etc/mysql/mariadb.conf.d/50-server.cnf ] ; then
|
||||||
|
sed -i -- 's/bind-address/# bind-address/g' /etc/mysql/mariadb.conf.d/50-server.cnf
|
||||||
|
sed -i '/\[mysqld\]/a bind-address = 0.0.0.0' /etc/mysql/mariadb.conf.d/50-server.cnf
|
||||||
output 'Restarting MySQL process...'
|
output 'Restarting MySQL process...'
|
||||||
service mysql restart
|
service mysql restart
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user