关于本地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客户端登录上以后,自己想要在本地连接服务器上的...