Home > Database > Mysql Tutorial > How Can I Manage Remote MySQL Databases with a Local phpMyAdmin Client?

How Can I Manage Remote MySQL Databases with a Local phpMyAdmin Client?

Patricia Arquette
Release: 2024-11-28 22:20:12
Original
631 people have browsed it

How Can I Manage Remote MySQL Databases with a Local phpMyAdmin Client?

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'
Copy after login

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!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template