zabbix之MySQL数据库的安装
转载自:http://www.ttlsa.com/mysql/install-mysql5_6/
启动MySQL并制定套接字
mysql -u user -ppassword -S 指定socket路径
MySQL密码丢失
- service mysql stop
- mysqld_safe --skip-grant-tables
- mysql
- use mysql
- update user set password=password("12345") where user="root";
- flush privileges;
- 停止mysql进程:Ctrl+z,如果发现mysqld_safe,直接kill即可。
- service mysql start
- mysql -uroot -p12345
感谢关注