CentOS 7 설치 my sql 5.7 압축 해제 판 간단명료 튜 토리 얼

본 고 는 CentOS 7 에 mysql 5.7 압축 판 을 설치 하 는 방법 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다. 구체 적 으로 는 다음 과 같 습 니 다.
1. 설치 팩 다운로드
http://dev.mysql.com/downloads/mysql/#downloads 일반적인 설치 방법 을 추천 하 는 TAR 패키지
2. 라 이브 러 리 파일 이 존재 하 는 지 확인 하고 삭제 할 경우.

[root@localhost Desktop]$ rpm -qa | grep mysql
mysql-libs-5.1.52-1.el6_0.1.x86_64
[root@localhost ~]$ rpm -e mysql-libs-5.1.52.x86_64 --nodeps
[root@localhost ~]$


3. my sql 그룹 과 사용자 가 존재 하 는 지 확인 합 니 다. 만 들 지 않 은 경우.

[root@localhost ~]$ cat /etc/group | grep mysql
mysql:x:490:
[root@localhost ~]$ cat /etc/passwd | grep mysql
mysql:x:496:490::/home/mysql:/bin/bash
          ,  ,      :
[root@localhost ~]$groupadd mysql
[root@localhost ~]$useradd -r -g mysql mysql
//useradd -r    mysql       ,        。


4. TAR 패키지 압축 해제, 소속 그룹 과 사용자 변경

[root@localhost ~]$ cd /usr/local/
[root@localhost local]$ tar xvf mysql-5.7.12-linux-glibc2.5-x86_64.tar
[root@localhost local]$ ls -l
total 1306432
-rwxr--r--. 1 root root 668866560 Jun 1 15:07 mysql-5.7.12-linux-glibc2.5-x86_64.tar
-rw-r--r--. 1 7161 wheel 638960236 Mar 28 12:54 mysql-5.7.12-linux-glibc2.5-x86_64.tar.gz
-rw-r--r--. 1 7161 wheel 29903372 Mar 28 12:48 mysql-test-5.7.12-linux-glibc2.5-x86_64.tar.gz
[root@localhost local]$ tar xvfz mysql-5.7.12-linux-glibc2.5-x86_64.tar.gz
[root@localhost local]$ mv mysql-5.7.12-linux-glibc2.5-x86_64 mysql
[root@localhost local]$ ls -l
total 1306436
drwxr-xr-x. 2 root root    4096 Dec 4 2009 bin
drwxr-xr-x. 2 root root    4096 Dec 4 2009 etc
drwxr-xr-x. 2 root root    4096 Dec 4 2009 games
drwxr-xr-x. 2 root root    4096 Dec 4 2009 include
drwxr-xr-x. 2 root root    4096 Dec 4 2009 lib
drwxr-xr-x. 3 root root    4096 Dec 2 14:36 lib64
drwxr-xr-x. 2 root root    4096 Dec 4 2009 libexec
drwxr-xr-x. 9 7161 wheel   4096 Mar 28 12:51 mysql
-rwxr--r--. 1 root root 668866560 Jun 1 15:07 mysql-5.7.12-linux-glibc2.5-x86_64.tar
-rw-r--r--. 1 7161 wheel 638960236 Mar 28 12:54 mysql-5.7.12-linux-glibc2.5-x86_64.tar.gz
-rw-r--r--. 1 7161 wheel 29903372 Mar 28 12:48 mysql-test-5.7.12-linux-glibc2.5-x86_64.tar.gz
drwxr-xr-x. 2 root root    4096 Dec 4 2009 sbin
drwxr-xr-x. 6 root root    4096 Dec 2 14:36 share
drwxr-xr-x. 2 root root    4096 Dec 4 2009 src
[root@localhost local]$ chown -R mysql mysql/
[root@localhost local]$ chgrp -R mysql mysql/
[root@localhost local]$ cd mysql/


5. 데이터베이스 설치 및 초기 화

[root@localhost mysql]$ bin/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/
2016-06-01 15:23:25 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize
2016-06-01 15:23:30 [WARNING] The bootstrap log isn't empty:
2016-06-01 15:23:30 [WARNING] 2016-06-01T22:23:25.491840Z 0 [Warning] --bootstrap is deprecated. Please consider using --initialize instead
2016-06-01T22:23:25.492256Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 5000)
2016-06-01T22:23:25.492260Z 0 [Warning] Changed limits: table_open_cache: 431 (requested 2000)


기본 설치 경 로 를 바 꾸 려 면 필요 합 니 다.  1) / etc / my. cnf, / etc / init. d / mysql 에서 수정  basedir='/apps/mysql'  datadir='/apps/mysql/data'  2) ln 생 성  mkdir -p /usr/local/mysql/bin  ln -s /apps/mysql/bin/mysqld /usr/local/mysql/bin/mysqld

[root@localhost mysql]$
[root@localhost mysql]$ cp -a ./support-files/my-default.cnf /etc/my.cnf
[root@localhost mysql]$ cp -a ./support-files/mysql.server /etc/init.d/mysqld
[root@localhost mysql]$ cd bin/
[root@localhost bin]# ./mysqld_safe --user=mysql &
[1] 2932
[root@localhost bin]# 2016-06-01T22:27:09.708557Z mysqld_safe Logging to '/usr/local/mysql/data/localhost.localdomain.err'.
2016-06-01T22:27:09.854913Z mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
[root@localhost bin]# /etc/init.d/mysqld restart
Shutting down MySQL..2016-06-01T22:27:50.498694Z mysqld_safe mysqld from pid file /usr/local/mysql/data/localhost.localdomain.pid ended
 SUCCESS!
Starting MySQL. SUCCESS!
[1]+ Done          ./mysqld_safe --user=mysql
[root@localhost bin]$
//      
[root@localhost bin]$ chkconfig --level 35 mysqld on
[root@localhost bin]$


6. 비밀번호 초기 화
my sql 5.7 은 초기 화 암 호 를 만 들 고 이전 버 전에 서 처음으로 로그 인 할 필요 가 없습니다.

[root@localhost bin]$ cat /root/.mysql_secret
# Password set for user 'root@localhost' at 2016-06-01 15:23:25
,xxxxxR5H9
[root@localhost 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.12
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 = PASSWORD('123456');
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)


7. 원 격 접근 권한 추가

mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update user set host = '%' where user = 'root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select host, user from user;
+-----------+-----------+
| host   | user   |
+-----------+-----------+
| %     | root   |
| localhost | mysql.sys |
+-----------+-----------+
//         。
/etc/init.d/mysqld restart


질문
my sql. sock, my sql. sock 분실 문제 해결 방법 을 찾 을 수 없습니다.
Mysql 에 연결 할 때 기계 에서 mysql. sock 파일 을 찾 을 수 없습니다. 서버 를 다시 시작 해서 간단하게 다시 만 들 수 있 습 니 다.서버 가 시작 할 때 다시 만 들 기 때 문 입 니 다.

[root@localhost mysql-5.7.13]# ./bin/mysql_install_db --user=mysql
2016-06-26 02:47:09 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize
2016-06-26 02:47:09 [ERROR]  The data directory needs to be specified.


해결: 새 data 디 렉 터 리 가 필요 합 니 다. 설치 디 렉 터 리 를 지정 해 야 합 니 다. (기본 디 렉 터 리 가 아 닐 때 지정 해 야 합 니 다. 기본 경로: / usr / local / my sql, 그리고 지정 해 야 합 니 다. / support - files / my sql. server 의 basedir 와 datadir 를 해당 경로 로 지정 해 야 합 니 다.)

[root@localhost mysql-5.7.13]# ./bin/mysql_install_db --user=mysql --basedir=/usr/local/mysql-5.7.13/ --datadir=/usr/local/mysql-5.7.13/data/
2016-06-26 02:48:47 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize
2016-06-26 02:49:19 [WARNING] The bootstrap log isn't empty:
2016-06-26 02:49:19 [WARNING] 2016-06-26T09:48:50.798592Z 0 [Warning] --bootstrap is deprecated. Please consider using --initialize instead
2016-06-26T09:48:50.898732Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 5000)
2016-06-26T09:48:50.898778Z 0 [Warning] Changed limits: table_open_cache: 431 (requested 2000)


이상 의 오 류 는 모두 my sql. server 에서 사용자 정의 경 로 를 지정 하지 않 았 기 때 문 입 니 다.
data 파일 이 있 음 을 알려 준다 면 새로 만 들 면 됩 니 다.
본 고 에서 말 한 것 이 여러분 의 CentOS 서버 유지 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기