Last modified 4 years ago
How to grant rights for remote access to a MySQL server
- At the MySQL server run:
mysql -u root -p mysql
- Once logged in, create an account:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'account_name'@'IP_address_of_Proteios_web_server' IDENTIFIED BY 'your_password' WITH GRANT OPTION;
- log out
mysql> exit;
- Check that it worked from the computer where you're going to install Proteios:
mysql -h IP_address_of_mysql_server -u account_name -p mysql
- If you're allowed to log in with your_password you can now proceed with the Proteios installation
