在此记录一下CentOS 7.2使用yum安装MYSQL 5.7.18的步骤,以便查看
查看Linux发行版本
[root@iZ2zed763hlan3sl19tze0Z opt]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
下载MySQL官方的Yum Repository
根据Linux发行版本(CentOS、Fedora都属于红帽系),从mysql官方(http://dev.mysql.com/downloads/repo/yum/)获取Yum Repository。
这里选取最新的mysql57-community-release-el7-11.noarch.rpm
下载;
下载地址可以点击链接查看,或自己按照规则拼接:
wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
完成后可以检测下md5是否与页面上的一致:
md5sum mysql57-community-release-el7-11.noarch.rpm
安装MySQL的Yum Repository
安装完MySQL的Yum Repository,每次执行yum update都会检查MySQL是否更新。
rpm -ivh mysql57-community-release-el7-11.noarch.rpm
安装MySQL数据库的服务器版本
yum -y install mysql-server
启动数据库:
systemctl start mysqld
MySQL数据库的其他常用命令
systemctl start mysqld #启动MySQL
systemctl stop mysqld #关闭MySQL
systemctl restart mysqld #重启MySQL
systemctl status mysqld #查看MySQL运行状态
systemctl enable mysqld #设置开机启动
systemctl disable mysqld #关闭开机启动
然后使用命令systemctl status mysqld
查看MySQL数据库启动后的服务状态:
获取初始密码
使用YUM安装并启动MySQL服务后,MySQL进程会自动在进程日志中打印root用户的初始密码,使用grep来过滤出密码信息:
grep "password" /var/log/mysqld.log
修改root用户密码
使用上一步中获取的root用户的初始密码,连上数据库,然后进行修改:
[root@iZ2zed763hlan3sl19tze0Z ~]# mysql -uroot -p
Enter password: #######输入默认的root密码后回车
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.18 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password';
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
删除MySQL的Repository
因为小节3中安装了MySQL的Yum Repository,所以以后每次执行yum操作时,都会去检查更新。如果想要去掉这种自动检查操作的话,可以使用如下命令卸载MySQL的Repository即可。
[root@iZ2zed763hlan3sl19tze0Z ~]# yum -y remove -community-release-el7-11.noarch.rpm
安装完毕
至此,使用在CentOS7中使用YUM方法安装MySQL5.7.18数据库完毕。可以使用新的root密码登陆MySQL了
至此,在本地连接MySQL数据库是没有问题的,如果想要异地远程连接数据库,则需要进行另外一些配置,传送门: 解决mysql本地可访问,远程无法访问的问题 Host is not allowed to connect to this MySQL server
文章首次发表于吾勇士的博客http://wuyongshi.top/articles/2017/05/13/1494680227092.html
Q.E.D.