详细排错,linux报错:Found option without preceding group in config file,Fatal error in defaults handling,
本错误提示,还有类似于error: Found option without preceding group in config file,/etc/init.d/mysql: line 244: my_print_defaults: command notaborted!等,这些问题都可以用本方法解决。
怀玉:点个关注,必回关
本错误提示,还有类似于error: Found option without preceding group in config file,/etc/init.d/mysql: line 244: my_print_defaults: command not
found,Fatal error in defaults handling. Program
aborted!等,这些问题都可以用本方法解决
问题描述:
mysql: [ERROR] Found option without preceding group in config file /etc/my.cnf at line 1!
mysql: [ERROR] Fatal error in defaults handling. Program aborted!
报错解析:
配置文件错误错误:配置文件出错检查配置文件my.cnf 第一行,应该是标点或者字符错误导致,修改为正确的配置即可。
我的坎坷解决过程:
因为英语不是太好,接触编程不久,对于报错的解读理解不够清晰,所以本报错花费解决时间30分钟
1、我先ping了网络,ping 192.168.138.100
,反馈的结果是网络正常(停下ping的操作是Ctrl+C
)
2、查看了是不是没有放开MySQL
远程连接权限(我的截图找不到了,借用的朋友的)
打开MySQL
远程连接权限
grant all privileges on *.* to 'root' @'%' identified by 'itcast';
3、随后我使用了telnet
命令(由于没有进入命令行,所以找不到命令,之后就没有再尝试telnet
命令了)
telnet命令的使用:
4、随后我查看了日志文件彻底排查:
4、最后我找到了问题,是我的配置文件my.cnf
错误
命令行键入:vim /etc/my.cnf
进入配置文件
(对表头进行了修改)
然后就解决了
希望对你有帮助,比心
更多推荐
所有评论(0)