Accessing Remote Servers with Local phpMyAdmin Client
Managing remote MySQL databases can be a challenge without direct access to the server. However, using a local phpMyAdmin client, it's possible to remotely manage these servers with ease.
Configuration
To connect phpMyAdmin to a remote server, add the following lines to the bottom of your /etc/phpmyadmin/config.inc.php file:
$i++; $cfg['Servers'][$i]['host'] = 'HostName:port'; // Hostname and port (if non-default) $cfg['Servers'][$i]['user'] = 'userName'; // Remote server username $cfg['Servers'][$i]['password'] = 'Password'; // Remote server password $cfg['Servers'][$i]['auth_type'] = 'config'; // Keep as 'config'
Usage
Once configured, you should see a "Current Server" dropdown in phpMyAdmin with both the local (127.0.0.1) server and the remote server you added. Simply switch between the servers as needed.
Additional Resources
For more detailed instructions, refer to this resource: http://sforsuresh.in/access-remote-mysql-server-using-local-phpmyadmin/
The above is the detailed content of How Can I Manage Remote MySQL Databases with a Local phpMyAdmin Client?. For more information, please follow other related articles on the PHP Chinese website!