I have a free domain running at x10hosting (x10.bz), and I want to find out the IP Address of my MySQL host for it, so I can contact the MySQL database from another host. I've already added that host to the access list, but now I need to find out the IP Address of the MySQL host. How can I find this out? x10 is using cPanel X and PHPMyAdmin.
The SQL query
SHOW VARIABLES WHERE Variable_name = 'hostname'
will show you the hostname of the MySQL server which you can easily resolve to its IP address.SHOW VARIABLES WHERE Variable_name = 'port'
Will give you the port number.You can find details about this in MySQL's manual: 12.4.5.41. SHOW VARIABLES Syntax and 5.1.4. Server System Variables
You may try this if using MySQL 5.7 version
Or just write status in mysql prompt
OR
Using PHPMyAdmin all variables are already listed if you click "home" > "MySQL system variables". You can use the find feature of your browser to search for the "hostname" and the "port" variables or scroll to them. It's listed in alphabetical order. No mucking about with queries if you are a non technical person.
Once you are in phpMyAdmin, look for the horizontal menu:
Dashboard | Sql | Status | Users ...etc
Click on Variables.
Here you will find all the variables for mySql server. You can try the search box for specific variables.
Good Luck.