RHEL 7.2 MySQL 5.7.11 바 이 너 리 설치

5985 단어 설치 하 다.MySQL
운영 체제: rhel 7.2 
MySQL 버 전: 5.7.11
1. MySQL 다운로드
  http://dev.mysql.com/downloads/
2, 운영 체제 에 MySQL 소프트웨어 를 업로드
[root@rhel7 ~]# 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. my sql 사용자 와 그룹 추가
[root@rhel7 ~]# groupadd mysql
[root@rhel7 ~]# useradd -r -g mysql -s /bin/false mysql
[root@rhel7 ~]# id mysql
uid=996(mysql) gid=1000(mysql) groups=1000(mysql)

4. 디 렉 터 리 생 성, 그룹 변경 및 압축 해제 파일
[root@rhel7 ~]# mkdir -p /opt/mysql/
[root@rhel7 ~]# mkdir /mysqldata
[root@rhel7 ~]# mv /root/mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz /opt/mysql/
[root@rhel7 ~]# cd /opt/mysql/
[root@rhel7 mysql]# ls
mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz
[root@rhel7 mysql]# tar -zxvf mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz 
......
[root@rhel7 mysql]# mv mysql-5.7.11-linux-glibc2.5-x86_64 mysql5.7.11
[root@rhel7 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
[root@rhel7 mysql]# chown mysql:mysql -R /opt/mysql/
[root@rhel7 mysql]# chown mysql:mysql -R /mysqldata/

5. 라 이브 러 리 초기 화
[root@rhel7 mysql]# cd mysql5.7.11/
[root@rhel7 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 root@localhost: rqwPw!9iNEEP
[root@rhel7 mysql5.7.11]# ls /mysqldata/
auto.cnf  ib_buffer_pool  ibdata1  ib_logfile0  ib_logfile1  mysql  performance_schema  sys

메모: 루트 의 초기 암 호 는 로그 에 있 습 니 다: rqwpw!9iNEEP
5.7.6 이전 버 전에 서 빈 / mysql 사용 하기install_db -- user = mysql 라 이브 러 리 초기 화.
6. MySQL 데이터베이스 시작
#       my.cnf  
[root@rhel7 mysql5.7.11]# mv /etc/my.cnf /etc/my.cnf.bak
[root@rhel7 mysql5.7.11]# cp support-files/my-default.cnf /etc/my.cnf
# my.cnf       
[root@rhel7 mysql5.7.11]# vi /etc/my.cnf
basedir = /opt/mysql/mysql5.7.11
datadir = /mysqldata
#  MySQL
[root@rhel7 mysql5.7.11]# ./bin/mysqld_safe --user=mysql &
[1] 1756
[root@rhel7 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

[root@rhel7 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@rhel7 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 ('new password') 를 사용 하여 비밀 번 호 를 바 꿉 니 다. 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('')' is deprecated and will be removed in a future release. Please use SET PASSWORD = '' instead |
+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

여기에 MySQL 5.7.11 설치 가 완료 되 었 습 니 다.
환경 변 수 를 설정 하면 편리 하 게 사용 할 수 있 습 니 다.
[root@rhel7 mysql5.7.11]# vi /root/.bash_profile
#  
export MYSQL_HOME=/opt/mysql/mysql5.7.11
export PATH=$MYSQL_HOME/bin:$PATH
[root@rhel7 mysql5.7.11]# source /root/.bash_profile

MySQL 닫 기
mysqladmin -uroot -p shutdown
공식 문서:http://dev.mysql.com/doc/refman/5.7/en/binary-installation.html

좋은 웹페이지 즐겨찾기