Help Center> Relational Database Service> FAQs> Client Installation> How Can I Install the MySQL Client?
Updated on 2023-03-06 GMT+08:00

How Can I Install the MySQL Client?

MySQL provides client installation packages for different OSs on its official website. MySQL 5.7 is used as an example. You can download the latest version or any other version for your project. The following procedure illustrates how to obtain the required installation package and install the MySQL client into a Red Hat Linux system.

Procedure

  1. Obtain the installation package.

    Find the link to the required version on the download page. MySQL-client-5.7.31-1.el6.x86_64.rpm is used as an example in the following figure.

    Figure 1 Download

  2. Upload the installation package to the ECS.

    1. When you create an ECS, select an OS, such as Red Hat 6.6, and bind an EIP to it.
    2. Use a remote connection tool to connect to the ECS through the bound EIP and upload the installation package to the ECS.

  3. Run the following command to install the MySQL client:

    sudo rpm -ivh MySQL-client-5.7.31-1.el6.x86_64.rpm
    • If there are any conflicts during the installation, add the replacefiles parameter to the command and try to install the client again. Example:
      rpm -ivh --replacefiles MySQL-client-5.7.31-1.el6.x86_64.rpm
    • If a message is displayed prompting you to install a dependency package, you can add the nodeps parameter to the command and install the client again. Example:
      rpm -ivh --nodeps MySQL-client-5.7.31-1.el6.x86_64.rpm

Client Installation FAQs

more