Home  >  Article  >  Database  >  How to connect to a MySQL server remotely (steps)

How to connect to a MySQL server remotely (steps)

PHPz
PHPzOriginal
2023-04-17 16:41:442257browse

If you need to connect to the MySQL server remotely, you need to use the following steps:

  1. Check the MySQL server configuration

Before continuing, you need to check that the MySQL server has been configured To allow remote connections. In the MySQL server configuration file, you need to make sure that the options to skip security checks (skip_networking and bind_address) are commented out.

  1. Create a user on the MySQL server

Create a new user on the MySQL server for remote connection. You can create a new user using the following command:

CREATE USER 'username'@'%' IDENTIFIED BY 'password';

where 'username' is the username of the new user you want to create, and '%' means that any IP address is allowed to connect to the MySQL server. If you want to limit connections to IP addresses, you can specify a specific IP address, such as '192.168.1.100'.

  1. Grant Permissions

After creating a new user, you need to grant the user permissions to access the MySQL database. You can grant permissions using the following command:

GRANT ALL PRIVILEGES ON *.* TO 'username'@'%';
FLUSH PRIVILEGES;

This will grant the new user full access to all databases and all tables.

  1. Connecting to the MySQL server

Now you are ready to connect to the MySQL server. You can connect to the MySQL server using the following command:

mysql -u username -p -h hostname

Where 'username' is the username of the new user you created in step 2, and 'hostname' is the hostname or IP address of the MySQL server.

After connecting to the MySQL server, you need to enter your password to access the server.

The above are the steps to remotely connect to the MySQL server. It is important to note that to ensure security, you should only allow trusted hosts to connect to the MySQL server and use strong passwords to protect your database.

The above is the detailed content of How to connect to a MySQL server remotely (steps). For more information, please follow other related articles on the PHP Chinese website!

Statement:
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