Atitit .linux 取回root 密码q99
1.1. 停止mysql
service mysqld stop
service mysqld start
1.2. mysqld_safe路径
root@iZ94mqp30dmZ:/# find -name mysqld_safe
./alidata/server/mysql5.6/bin/mysqld_safe
1.3. Mysql配置文件路径
ptions ]
root@iZ94mqp30dmZ:/alidata# service mysqld stop
Warning: World-writable config file '/alidata/server/mysql/my.cnf' is ignored
Shutting down MySQL
.. *
作者:: ★(attilax)>>> 绰号:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿尔 拉帕努伊 ) 汉字名:艾龙, EMAIL:1466519819@qq.com
转载请注明来源: http://www.cnblogs.com/attilax/
1.4. Mysql路径
root@iZ94mqp30dmZ:/# find -name mysqld
./alidata/server/mysql5.6/bin/mysqld
./etc/init.d/mysqld
1.5. 安全方式启动mysql
mysqld_safe --skip-grant-tables &
报错
mysqld_safe The file /usr/local/mysql/bin/mysqld
does not exist or is not executable
解决: 指定basedir mysql目录参数即可
/alidata/server/mysql5.6/bin/mysqld_safe --basedir=/alidata/server/mysql5.6 --skip-grant-tables &
--datadir=path
· --basedir=path
MySQL安装目录的路径。
· --core-file-size=size
mysqld能够创建的内核文件的大小。选项值传递给ulimit -c。
· --datadir=path
数据目录的路径。
1.6. 参考
Linux启动_停止_重启Mysql数据库的方法 - Ruthless - 博客园.html