RHEL 7.2 安装 MySQL 5.7.11 二进制版

操作系统:rhel7.2

MySQL版本:5.7.11

1、MySQL下载

http://dev.mysql.com/downloads/

2、上传MySQL软件到操作系统

[[email protected] ~]# ls -l mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz 
-rw-r--r--. 1 root root 548193637 Dec  4 21:16 mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz

3、添加mysql用户和组

[[email protected] ~]# groupadd mysql
[[email protected] ~]# useradd -r -g mysql -s /bin/false mysql
[[email protected] ~]# id mysql
uid=996(mysql) gid=1000(mysql) groups=1000(mysql)

4、创建目录、改属组及解压文件

[[email protected] ~]# mkdir -p /opt/mysql/
[[email protected] ~]# mkdir /mysqldata
[[email protected] ~]# mv /root/mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz /opt/mysql/
[[email protected] ~]# cd /opt/mysql/
[[email protected] mysql]# ls
mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz
[[email protected] mysql]# tar -zxvf mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz 
......
[[email protected] mysql]# mv mysql-5.7.11-linux-glibc2.5-x86_64 mysql5.7.11
[[email protected] mysql]# ls -l
total 535352
drwxr-xr-x. 9 7161 wheel      4096 Feb  2  2016 mysql5.7.11
-rw-r--r--. 1 root root  548193637 Dec  4 21:16 mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz
[[email protected] mysql]# chown mysql:mysql -R /opt/mysql/
[[email protected] mysql]# chown mysql:mysql -R /mysqldata/

5、初始化库

[[email protected] mysql]# cd mysql5.7.11/
[[email protected] mysql5.7.11]# ./bin/mysqld --initialize --user=mysql --basedir=/opt/mysql/mysql5.7.11/ --datadir=/mysqldata/
2016-12-04T13:33:01.318081Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-12-04T13:33:01.729086Z 0 [Warning] InnoDB: New log files created, LSN=45790
2016-12-04T13:33:02.027182Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2016-12-04T13:33:02.111882Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 2dca0cf3-ba26-11e6-b4ff-080027e818bc.
2016-12-04T13:33:02.118970Z 0 [Warning] Gtid table is not ready to be used. Table ‘mysql.gtid_executed‘ cannot be opened.
2016-12-04T13:33:02.120080Z 1 [Note] A temporary password is generated for [email protected]: rqwPw!9iNEEP
[[email protected] mysql5.7.11]# ls /mysqldata/
auto.cnf  ib_buffer_pool  ibdata1  ib_logfile0  ib_logfile1  mysql  performance_schema  sys

注意:root的初始密码已经在日志中给出:rqwPw!9iNEEP

在5.7.6之前的版本中使用bin/mysql_install_db --user=mysql初始化库。

6、启动MySQL数据库

#替换系统自带的my.cnf文件
[[email protected] mysql5.7.11]# mv /etc/my.cnf /etc/my.cnf.bak
[[email protected] mysql5.7.11]# cp support-files/my-default.cnf /etc/my.cnf
#在my.cnf中添加如下两条
[[email protected] mysql5.7.11]# vi /etc/my.cnf
basedir = /opt/mysql/mysql5.7.11
datadir = /mysqldata
#启动MySQL
[[email protected] mysql5.7.11]# ./bin/mysqld_safe --user=mysql &
[1] 1756
[[email protected] mysql5.7.11]# 2016-12-04T13:44:30.046089Z mysqld_safe Logging to ‘/mysqldata/rhel7.err‘.
2016-12-04T13:44:30.097978Z mysqld_safe Starting mysqld daemon with databases from /mysqldata

[[email protected] mysql5.7.11]# ps -ef |grep mysql
root      1756  1182  0 21:44 pts/0    00:00:00 /bin/sh ./bin/mysqld_safe --user=mysql
mysql     1876  1756  1 21:44 pts/0    00:00:00 /opt/mysql/mysql5.7.11/bin/mysqld --basedir=/opt/mysql/mysql5.7.11 --datadir=/mysqldata --plugin-dir=/opt/mysql/mysql5.7.11/lib/plugin --user=mysql --log-error=/m
ysqldata/rhel7.err --pid-file=/mysqldata/rhel7.pidroot      1905  1182  0 21:44 pts/0    00:00:00 grep --color=auto mysql

7、登录MySQL,使用安装时给出密码登录并更改root密码

[[email protected] mysql5.7.11]# ./bin/mysql -uroot -p 
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.11

Copyright (c) 2000, 2016, 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> set password=‘1qaz!QAZ‘;
Query OK, 0 rows affected (0.01 sec)

注意:5.6之前使用set password=password(‘newpassword‘)进行改密码,5.7版本不再建议这样改密码,会有如下提示:

mysql> set password=password(‘123456‘);
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> show warnings;
+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                           |
+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1287 | ‘SET PASSWORD = PASSWORD(‘<plaintext_password>‘)‘ is deprecated and will be removed in a future release. Please use SET PASSWORD = ‘<plaintext_password>‘ instead |
+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

到此,MySQL5.7.11安装完成。

官方文档:http://dev.mysql.com/doc/refman/5.7/en/binary-installation.html

时间: 2024-10-29 04:28:25

RHEL 7.2 安装 MySQL 5.7.11 二进制版的相关文章

CentOS7 下源码安装MySQL 8.0.11

CentOS7 下源码安装MySQL 8.0.11 系统环境:CentOS7, 内核:Linux 3.10.0-862.el7.x86_64 如果有旧版本的MySQL,先卸载,用下面命令来查询出系统有哪些相关的MySQL包. rpm -qa | grep mysql 如果上述命令查询出有相关的MySQL包,就卸载 rpm -e 包名 卸载MariaDB包 yum remove mariadb-libs.x86_64 从MySQL官网下载源码包,并将该文件拷贝到系统中. https://dev.m

Red Hat 6.5 编译安装Mysql 5.7.11

安装操作系统注意事项–开发包四个选项全部选择安装 yum配置方便使用 挂载本地光盘到系统:把rhel6.5安装光盘放入光驱,在终端命令行下操作      mkdir /media/rhel   #新建挂载目录      mount /dev/cdrom  /media/rhel  #挂载光盘到/media/rhel目录下      cd  /media/rhel  #进入挂载目录      ls   #查看挂载目录,光盘挂载成功 配置本地yum源 cd/etc/yum.repos.d/   #进

在CentOS6.7上编译安装MySQL 5.7.11

系统环境:CentOS 6.7MYSQL版本:5.7.11 安装依赖包yum -y install gcc gcc-c++ ncurses ncurses-devel cmake 查看系统是否自带mysql和boost,如有则先卸载rpm -qa mysql boostyum remove -y mysql rm /etc/my.cnf -f     #删除系统原有的mysql配置文件,如果有的话yum remove -y boost 下载相应源码包cd ~/tools/wget http://

CentOS6.5编译安装MySQL 5.7.11

http://mirrors.sohu.com/mysql 安装前工作:1,从官方网址下载MySQL5.7.11源码包,大概49M2,安装好CentOS6.5 64位操作系统.建议update操作系统,以便是此版本最新的3. yum -y install  gcc gcc-c++ autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake  libaio libaio-

win10安装mysql 8.0.11

mysql安装包可到官网下载,地址:https://dev.mysql.com/downloads/mysql 1.首先解压文件包,我这解压到E:\install_work\mysql目录下: 2.发现mysql根目录下没有data目录和my.ini文件,不要紧,初始化mysql的时候系统会自动创建一个data目录,我们只需创建一个my.ini文件即可. 新建记事本,将下面代码复制到记事本中: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

如何在Ubuntu Linux上安装 MySQL 8.0.11

继MySQL 5.7之后,直接跳到了MySQL 8.0,官方说这次来了个大升级,其他的不说,就访问速度是5.7的2倍,因此我也尝试安装使用,根据官方文档,下面是安装的过程 一.工具 Ubuntu 16.04 MySQL Community Server 8.0.11 二.安装过程 1. 下载安装包 选择的是Linux 64位通用的二级制版本,这样不在需要进行编译安装,系统安装依赖库后就可以直接使用. 2. 安装依赖库 官方说要安装libaio,但实际如果你安装libaio库的话不行,还需安装nu

Red Hat 7.2 RPM安装Mysql 5.7.11

查看是否安装了mysql rpm -qa | grep mysql 卸载mysqlrpm -e –nodeps 解压mysql tar -xvf mysql-5.7.11-1.el7.x86_64.rpm-bundle.tar 安装mysql yum install mysql-community-{client,common,libs}-* rpm -ivh mysql-community-server-5.7.11-1.el7.x86_64.rpm 启动Mysql服务systemctl st

Oracle Linux 6.5 RPM安装Mysql 5.7.11

安装Oracle Liunx 6.5 开发包全部选择上 不然后面安装Mysql报错 [[email protected] /]# cd /tool [[email protected] tool]# tar -xvf mysql-5.7.11-1.el6.x86_64.rpm-bundle.tar 查看原来安装的Mysql  [[email protected] /]# rpm -qa | grep mysql mysql-5.1.71-1.el6.x86_64 mysql-devel-5.1.

CentOS 7 安装MySQL 8.0.11

1. 下载安装包 wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.11-1.el7.x86_64.rpm-bundle.tar 这个链接的文件包含MySQL所有组件,而我们安装需要的组件如下: (1) mysql-community-common-8.0.11-1.el7.x86_64.rpm (2) mysql-community-libs-8.0.11-1.el7.x86_64.rpm (3) mysql-community