关于本地mysql客户端如何连接阿里云服务器上的MySQL数据库

前言

用 SSH客户端登录上以后,自己想要在本地连接服务器上的MysqL服务器。

解决方法

1、首先启动数据库

[root@iZm5ec880z2rorZ ~]# service MysqLd start
可以输入一下加粗命令:
[root@iZm5ec880z2rorZ ~]#  MysqL -u root -p 
Enter password: (输入你的数据库密码)
Welcome to the MysqL monitor.  Commands end with ; or \g.
Your MysqL connection id is 5
Server version: 5.1.73-log MysqL Community Server (GPL)
copyright (c) 2000,2013,Oracle and/or its affiliates. All rights reserved.
Oracle is a registered Trademark of Oracle Corporation and/or its
affiliates. Other names may be Trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MysqL> use MysqL
Database changedMysqL> GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'ldyu123' WITH GRANT OPTION;
Query OK,0 rows affected (0.00 sec)
MysqL> commit;
Query OK,0 rows affected (0.00 sec)
MysqL> flush privileges;
Query OK,0 rows affected (0.00 sec)
MysqL>  exit;

2、退出后,输入下边的命令

[root@iZm5ec880z2rorZ ~]# service MysqLd restart
Shutting down MysqL...                                     [  OK  ]
Starting MysqL.                                            [  OK  ]

然后在本地输入自己设置的密码就可以连接上来了 。

相关文章

随着云计算和网络技术的发展,越来越多的数据需要在服务器之...
阿里云服务器Tomcat无法从外部访问一、环境阿里云Ubuntu 12....
购买一系列的东西其实就是花钱买块区域,服务器,域名,云解...
前言昨天买了域名,服务器,然后搭建了环境,然后想他通过默...
前言由于服务器centos6.8安装mysql一直出现不能连接问题,然后...
前言用 SSH客户端登录上以后,自己想要在本地连接服务器上的...