标签:三次 dir --nodeps 查看 mysq gre ring sel upd
--force --nodeps强制忽略依赖查看连接端口:
show global variables like ‘port‘;
若为3306则无需修改
二、mysql端口号的修改
1、编辑/etc/my.cnf文件 [root@localhost ~]# vi /etc/my.cnf
2、添加port=2032;
3、重启mysql [root@localhost ~]# /etc/init.d/mysqld restart
创建远程连接用户并授权:
查看当前用户:
select Host,User,Password from mysql.user;
5.7版本以上password=authentication_string
select Host,User,authentication_string from mysql.user;
查询结果显示无可远程访问用户
添加用户:
create user changan_test identified by ‘Passw0rd‘;
用户授权
grant all privileges on . to ‘changan_test‘@‘%‘identified by ‘Passw0rd‘ with grant option;
flush privileges;
grant all privileges on . to ‘jira‘@‘%‘identified by ‘Passw0rd*‘ with grant option;
flush privileges;
查看用户:
changantest可任意地址(host)访问
访问尝试:
查看防火墙:防火墙打开
关闭防火墙:
再次远程连接尝试:(连接成功)
创建数据库,执行sql文件
标签:三次 dir --nodeps 查看 mysq gre ring sel upd
原文地址:https://blog.51cto.com/14314637/2390985