欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用YUM在Linux(CentOS 7)下安装mysql 5.7.18的教程详解

程序员文章站 2022-11-15 21:35:26
项目需要使用mysql,由于以前都是在windows下傻瓜式安装,基本没有遇到什么问题,但是这次是在服务器上安装,由于到linux上安装软件不熟悉,走了不少弯路,耽误了好多...

项目需要使用mysql,由于以前都是在windows下傻瓜式安装,基本没有遇到什么问题,但是这次是在服务器上安装,由于到linux上安装软件不熟悉,走了不少弯路,耽误了好多时间。总结下来,以免下次再走弯路。

****************************图片插入不成功,不知道是怎么回事*********************************

一、各种环境:

linux版本:centos linux release 7.2.1511 (core) 

mysql版本:community sercer 5.7.18

使用的yum安装包:

red hat enterprise linux 7 / oracle linux 7 (architecture independent), rpm package  25.1k 
download
(mysql57-community-release-el7-11.noarch.rpm)

二 :安装步骤

我是先在windows上下载安装包,然后通过xshell导入到服务器中。然后根据mysql官网上的步骤安装的。任何教程都没有官网上的靠谱,之前在网上搜了好多教程,每个教程的安装方法都不一样,搞得我很郁闷,而且,都没有成功。最后还是通过官网上的教程安装成功。

2.1 选择安装指南

2.2 点进入之后选择通用二进制版本。  installing mysql on unix/linux using generic binaries

2.3 按照上面的操作一步一步执行就可以了。

shell> yum search libaio # search for info(mysql安装需要以来libaio库,所以需要先安装libaio库)
shell> yum install libaio # install library
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-version-os.tar.gz
shell> ln -s full-path-to-mysql-version-os mysql
shell> cd mysql
shell> mkdir mysql-files
shell> chmod 750 mysql-files
shell> chown -r mysql .
shell> chgrp -r mysql .
shell> bin/mysql_install_db --user=mysql  # mysql 5.7.5 (mysql5.7.5选择使用这个命令,如果你的mysql是5.7.6及以上,不需要执行这个命令)
shell> bin/mysqld --initialize --user=mysql # mysql 5.7.6 and up
shell> bin/mysql_ssl_rsa_setup       # mysql 5.7.6 and up
shell> chown -r root .
shell> chown -r mysql data mysql-files
shell> bin/mysqld_safe --user=mysql &
# next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server

执行完以上所有步骤,安装就结束了。

2.4 安装结束后,启动mysql服务

[root@***** /]# cd ~ #这里有一个问题,不知道需要需要切换到 “~”目录,之前没有“~”,启动不成功,不确定是我sytemctl start mysqld.service命令输入错了还是别的原因。
[root@***** ~]# sytemctl start mysqld.service

查看是否启动成功

[root@***** ~]# sytemctl status mysqld.service

如果有这个标识则启动成功

2.5 获取安装时的临时密码,用以登录mysql

grep'temporary
 password'/var/log/mysqld.log
2017-05-10t00:55:46.982233z
 1 [note] a temporary password is generated for root@localhost: 5c::+lmjqi+z

红框中的是临时密码。

2.5 使用临时密码登录

[root@****** ~]# mysql -uroot -p
enter password: 
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 5
server version: 5.7.18

2.6 更改密码

mysql> alter user 'root'@'localhost' identified by 'newpassword';
query ok, 0 rows affected (0.00 sec)

注意:最新的mysql对安全性有很高的要求,密码必须包含特殊字符、大小写、数字,否则更改不成功,报错。

      error 1819 (hy000): your password does not satisfy the current policy requirements

以上所述是小编给大家介绍的使用yum在linux(centos 7)下安装mysql 5.7.18的教程详解,希望对大家有所帮助