安装
下载安装包
到官网下载你所需要的版本,比如:
https://dev.mysql.com/downloads/file/?id=480501
解压安装
tar -xvf MySQL-5.5.62-1.el7.x86_64.rpm-bundle.tar
rpm -ivh MySQL-*
启动失败
查看/etc/my.cnf文件发现log-error和pid-file目录不对,创建相关目录修改权限重新启动mysql成功
在/etc/my.cnf中修改编码为utf-8重启mysql
/etc/init.d/mysql restart
查看修改后的结果
SHOW VARIABLES LIKE ‘%char%’;
如何解决无需密码登录
刚安装的MySQL发现登录数据库不需要密码,这个显然很不安全
登录sql
执行如下语句
1、use mysql;
2、(无password字段的版本)update user set authentication_string=PASSWORD(“密码”) where user=‘root’;
(有password字段的版本)update user set password=password(‘密码’) where user=‘root’;
3、update user set plugin=“mysql_native_password”;
4、flush privileges;
5、quit;
6、/etc/init.d/mysql restart #重启mysql服务
当然一般建议不要在命令行中加密码