mysql5.7实现远程连接数据库教程
作者:快盘下载 人气:数据库安装之后,使用命令操作太复杂了。也记不住,使用图形化工具或者phpmyadmin最方便了。但是不能直接远程连接,需要开启远程连接才可以使用。。以下是开启mysql远程命令。
[root@245 ~]# mysql -u root -p
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'yourpasswd' WITH GRANT OPTION;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
[root@245 ~]#
[root@245 ~]# service mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
[root@245 ~]#
[root@245 ~]# service iptables stop
iptables:将链设置为政策 ACCEPT:filter [确定]
iptables:清除防火墙规则: [确定]
iptables:正在卸载模块: [确定]
[root@245 ~]#
关闭防火墙只是测试。记得start啊。防火墙规则就不写了。百度吧。
加载全部内容