在Linux的Shell模式下连接远程MySQL Server,仅安装需要的Client程序即可。
- 首先确定一下远程服务器的MySQL版本,直接登录进去就能看到
1
2
3
4
5
6
7
8[root@localhost mysql-client]# mysql -uroot -p12345678
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Server version: 5.7.40 MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> - 打开MySQL Product Archives,
Product Version
选择刚才看到的Server版本;Operating System
根据实际情况选择(如果是CentOS则选择RHEL);OS Version
也根据实际情况选择即可。 - 找到并下载如下三个包:然后将这三个包放进一个文件夹内,上传至客户端设备。
1
2
3mysql-community-client
mysql-community-common
mysql-community-libs - 在客户端设备上执行如下命令删除原有的
mariadb-libs
:1
yum remove mysql-libs
- 在刚才上传的文件夹内执行如下命令安装mysql Client组件:
1
rpm -ivh mysql-community-*
- 使用
-h
命令连接至远程服务器1
mysql -h<host> -u<user> -p<password>