mysql command error :the mysql the **option so it cannot execute this statement
the mysql server is running with the --skip-grant-tables option so it cannot execute this statement
mysql 使用grant all on *.* to 'root'@'Client IPADDR' identified by 'passwd'; 此命令报错 the mysql server is running with the --skip-grant-tables option so it cannot execute this statement
此报错的大意是没有授权跳过执行命令错误
原来俺的上一节课造成的 编辑 vim /etc/my.cnf 文件 在vim命令行模式下输入 /skip-grant 找到它并删除或者注释掉保存文件最后/etc/init.d/mysqld restar重启mysql服务解决命令行mysql -uroot -h(IPADDR) -P(post) -p(password) #(指定)远程指定登入mysql报错问题
重点是 mysql -uroot -h(指定(远程)IPADDR) -P(post) -p(password) 解决此命令下mysql语句报错问题
mysql 使用grant all on *.* to 'root'@'Client IPADDR' identified by 'passwd'; 此命令报错 the mysql server is running with the --skip-grant-tables option so it cannot execute this statement
此报错的大意是没有授权跳过执行命令错误
原来俺的上一节课造成的 编辑 vim /etc/my.cnf 文件 在vim命令行模式下输入 /skip-grant 找到它并删除或者注释掉保存文件最后/etc/init.d/mysqld restar重启mysql服务解决命令行mysql -uroot -h(IPADDR) -P(post) -p(password) #(指定)远程指定登入mysql报错问题
重点是 mysql -uroot -h(指定(远程)IPADDR) -P(post) -p(password) 解决此命令下mysql语句报错问题
编辑回复