...
The MySQL service runs on host dantewebdcsdb.lnf.infn.it
(192.168.192.107). To check if it's running, there are two ways:
- Using PHPMyAdmin:
- Open the PHPMyAdmin web application at this URL: http://danteweb.lnf.infn.it/phpmyadmin/
- Try to access with root user and dcs root password:
Figure 1 - PHPMyAdmin login screen - If there are no errors, the database service is running properly; otherwise, try to check service with command line client (it could be an apache web server problem);
- Using command line client:
- Access via ssh to dantewebdcsdb.lnf.infn.it (192.168.192.107) as as dante user;
run mysql client with following command:
Code Block language text [dante@danteweb ~]$ mysql -u root -p
And enter dcs root password:
Figure 2 - MySQL client output after login- If the server respond like the previous image (Figure 2), the service is running properly. You can exit with the quit command on mysql client terminal; otherwise, try to reboot mysql service;
- Access via ssh to dantewebdcsdb.lnf.infn.it (192.168.192.107) as as dante user;
...