4、mysql登录密码修改和找回


操作适合5.1-5.5;当前的环境是5.5的环境;

4.1、mysql启动的原理:

mysqld_safe -> my.cnf ->mysql.sock

http://blog.51cto.com/oldboy/1431161

4.2、登录mysql深入讲解:

1、mysql单实例登录:

2、mysql多实例登录:

3、mysql登录安全设置:

shell脚本加密,shell脚本root、700;

数据库强制不记录敏感字符:

echo 'HISTCONTROL=ignorespace' >>/etc/profile

history -d 2

history -c

> /root/.bash_history

>/root/.mysql_history

区分测试环境和生产环境(防止操作错误):

PS1="\[\e[32;1m\][\u@\h \W]\\$\[\e[0m\]" #绿色用于生产环境;

PS1="\[\e[31;1m\][\u@\h \W]\\$\[\e[0m\]" #红色用于测试环境;

以上是临时生效,要永久生效,加入到/etc/profile中即可;

4、mysql退出:

4.3、使用mysql的帮助命令help:

mysql> help show grants;

你可能感兴趣的:(4、mysql登录密码修改和找回)