本文描述了mysql server的下载安装初始化工作。
下载
https://dev.mysql.com/downloads/mysql/
安装:
环境: CentOS 7.6 ,版本:MYSQL 5.7
tar -xvf mysql-5.7.41-1.el7.x86_64.rpm-bundle.tar
yum -y install mysql-community-*.rpm
启动
systemctl start mysqld
停止
systemctl stop mysqld
第一次要进去,得先修改配置文件 /etc/my.cnf
skip-name-resolve
skip-grant-tables
然后进入:
mysql -h127.0.0.1 -u root --default-character-set=utf8mb4
初始化密码
第一次执行任何指令都会显示:
You must reset your password using ALTER USER statement before executing this statement
输入:
ALTER USER USER() IDENTIFIED BY '***************';
如果密码设置得太简单点的话,会返回
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
所以,我们需要设置稍微复杂一点的密码,
然后再进入
/etc/my.cnf,注释掉
#skip-grant-tables
如果不注释掉就执行授权的操作,就会抛出如下的异常:
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
授权
grant all privileges on . to 'root'@'%' identified by '***************';
grant all privileges on . to 'root'@'%' with grant option;
flush privileges;
卸载
yum unstall mysql
在安装过程中,需要对my.cnf进行一些修改,mysql性能监控的配置
slow-query-log=1
long_query_time = 1
slow-query-log-file=slow.log
log_queries_not_using_indexes=ON