前言
用 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 ]
然后在本地输入自己设置的密码就可以连接上来了 。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。