Ubuntu 和 Red Hat 的 MySQL 安装
程序员文章站
2022-05-27 22:01:07
...
- 安装 MySQL 5.7
Ubuntu安装
apt-get mysql-server
非root用户使用
sudo apt-get mysql-server
安装过程中会让你设置mysql账号的root账号的密码
安装完后会自动启动服务;
#重启命令
service mysql restart / stop / start
Red hat上用rpm安装:
cd /home
#创建目录
mkdir mysql
#下载
wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.26-1.el7.x86_64.rpm-bundle.tar
#解包
tar -xvf mysql-5.7.26-1.el7.x86_64.rpm-bundle.tar
#依次执行,有依赖关系
rpm -ivh mysql-community-common-5.7.22-1.el7.x86_64.rpm
rpm -ivh mysql-community-libs-5.7.22-1.el7.x86_64.rpm
rpm -ivh mysql-community-client-5.7.22-1.el7.x86_64.rpm
rpm -ivh mysql-community-server-5.7.22-1.el7.x86_64.rpm
到此安装完毕!
启动MySQL服务
#和ubuntu的命令不一样
service mysqld restart
#进入MySQL命令行
mysql -u root -p 回车键 输入密码
rpm 安装完后MySQL的root账号没有密码,需要修改/etc/my.cnf配置,增加一行skip-grant-tables跳过密码,直接回车键;
进入MySQL命令行后,修改root密码
use mysql;
update user set authentication_string=PASSWORD('Your_password123') where user='root' and host='你的host';
FLUSH PRIVILEGES;
要注意版本要求的密码格式,查看密码格式
SHOW VARIABLES LIKE 'validate_password%';
键入:exit 退出Mysql
最后再次修改vim /etc/my.cnf,将刚才添加的语句删除,重启MySQL