MySQL无法重启问题解决Warning: World-writable config file ‘/etc/my.cnf’ is ignored

今天帮朋友维护服务器,在关闭数据库的命令发现mysql关不了,提示Warning: World-writable config file ‘/etc/my.cnf’ is ignored ,大概意思是权限全局可写,任何一个用户都可以写。mysql担心这种文件被其他用户恶意修改,所以忽略掉这个配置文件。这样mysql无法关闭。

下面看下整个过程

重启MySQL

可以看到mysql停止不了

查看my.cnf的权限

权限777,任何一个用户都可以改my.cnf,存在很大的安全隐患.

修复MySQL问题

my.cnf设置为用户可读写,其他用户不可写.

关闭MySQL

MySQL关闭成功.

时间: 2024-10-25 03:04:44

MySQL无法重启问题解决Warning: World-writable config file ‘/etc/my.cnf’ is ignored的相关文章

Warning: World-writable config file '/etc/my.cnf' is ignored

1. 问题描述: 重启mysql服务时出现以下信息: Warning: World-writable config file '/etc/my.cnf' is ignored 出现这种情况的原因是:mysql故意不让用户重写my.cnf,权限默认是644, 即-rw-r--r--, 如果权限不是644, 则会出现这种情况. 2. 解决方法: (1) 查看my.cnf文件的权限:[email protected]:DJISZ/marketevent.git ls -l /etc/my.cnf 信息

MySQL - Found option without preceding group in config file

1.1.1 现象 启动MYSQL超时,windows提示错误,在服务中MYSQL状态一直处于starting状态,执行MYSQL命令,出现如下错误信息: error:found option without preceding group in config file:E:\webserver\mysql5\my.ini at line :1 fatal error in defaults handling .program aborted. 1.1.2 原因 配置文件My.ini的存储格式不正

Starting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/data/vm10-0-0-19

输入:service mysqld start 报错: Starting MySQL.. ERROR! The server quit without updating PID file (/usr/local/mysql/data/vm10-0-0-19.ksc.com.pid). 解决: ./scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/ 参考

Found option without preceding group in config file

报错: error: Found option without preceding group in config file: /etc/my.cnf at line: 1 解决方法: 在mysql配置文件最上面加一行 [mysqld]

mysql启动warning: World-writable config file

如果在启动warning: World-writable config file /home/mysql/my.cnf is ignored原因:my.cnf的读取权限进行了设置,不允许World-writable(字面意思是全世界都可读写)解决方法:sudo chmod 644 /home/mysql/my.cnf 原文地址:https://www.cnblogs.com/xiaoleiel/p/8324092.html

mysql报错问题解决Character set 'utf8mb4' is not a compiled character set

mysql: Character set 'utf8mb4' is not a compiled character set and is not specified in the '/usr/share/mysql/charsets/Index.xml' file 报错的解决方法 1.由于日常程序使用了字符集utf8mb4,为了避免每次更新时,set names utf8mb4,就把配置文件改了,如下: 增加了mysql客户端的默认字符集设置 [[email protected]~]# vim

windows和linux下mysql的重启命令

在 Windows 下: 开始->运行->cmd启动:net start mysql停止:net stop mysql 无重启,必须先停止再启动!!! 在LINUX 下: 启动:/etc/rc.d/init.d/mysqld start停止:/etc/rc.d/init.d/mysqld stop重启:/etc/rc.d/init.d/mysqld restart或启动:/etc/init.d/mysqld start停止:/etc/init.d/mysqld stop重启:/etc/init

解决MAC下PHP连接MYSQL错误Warning: mysql_connect(): No such file or directory in conn.php

今天在mac上用php去连接mysql数据库,出现了 mac PHP Warning:  mysql_connect(): [2002] No such file... 详细例如以下所看到的: DirkMacBook:vote Dirk$ phpunit MyTest.php  Warning: mysql_connect(): No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/myvote/vote/conn.

Windows Mysql Server重启, log-bin路径配置

Windows Mysql Server重启, log-bin路径配置 分类: mysql数据库2014-03-16 14:49 1313人阅读 评论(0) 收藏 举报 Mysqlmysql servermysql重启windows 下命令重启mysqlmysql日志配置 CMD下运行以下命令: net stop <服务名>net start <服务名> 备注:<服务名> 通常默认为:mysql 即:net stop mysqlnet start mysql 备注: 查