安装mysql
- yum remove mariadb-libs.x86_64 移除mariadb-libs.x86_64
- cd /tmp/
- wget 下载mysql源
- yum localinstall mysql57-community-release-el7-11.noarch.rpm 安装源
- yum install -y mysql-community-server 安装mysql
- ps -ef | grep mysql 查看mysql服务是否启动
- service mysqld restart 重启mysql服务
- cat /var/log/mysqld.log | grep password 查找mysql的默认安装密码
- mysql -uroot -p密码 进入mysql服务
- SET PASSWORD = PASSWORD(‘新密码’) 重置密码
开启数据库远程连接
- mysql -h127.0.0.1 -uroot -p 进入数据库
- show databases;查看数据库
- use mysql 进入mysql这个数据库
- show tables; 查看表
- select Host,User from user \G;
- update user set Host =’%’ where Host=’localhost’ and User=’user’;
- flush privileges;刷新权限
- service firewalld stop; 关闭防火墙
开启 genelog
- mysql -uroot -p 进入数据库
- set global general_log_file=”/tmp/general.log”;
- set global general_log=on;
忘记root密码
在/etc/my.cnf 加入 skip-grant-tables;
重启mysql服务
mysql -uroot -p
use mysql
update user set authentication_string=password(‘456789’) where user=’root’;