본문 바로가기

리눅스

CentOS 7에서 MySQL 8을 바이너리 파일로 설치하는 방법

728x90

CentOS 7에서 MySQL 8을 바이너리 파일(tar 아카이브)로 설치하는 방법

테스트 환경

$ cat /etc/redhat-release 
CentOS Linux release 7.9.2009 (Core)

MySQL 설치

MySQL 바이너리 파일 다운로드

☞ MySQL Community Downloads

- https://dev.mysql.com/downloads/mysql

m1

1. MySQL 계정 생성

groupadd -g 27 mysql
useradd -m -c "MySQL Server" -d /usr/local/mysql -s /bin/false -u 27 -g 27 mysql
  • 생성된 mysql 계정 확인
cat /etc/passwd | grep mysql
$ cat /etc/passwd | grep mysql
mysql:x:27:27:MySQL Server:/usr/local/mysql:/bin/false

2. 작업 디렉토리로 이동(WORKDIR)

cd /usr/local/src

3. MySQL 바이너리 파일 다운로드

wget -q https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.31-el7-x86_64.tar
$ ls -l mysql-8.0.31-el7-x86_64.tar
-rw-r--r-- 1 root root 848457216  9월 14 00:52 mysql-8.0.31-el7-x86_64.tar

4. MySQL 바이너리 파일 압축 해제

tar xvf mysql-8.0.31-el7-x86_64.tar
$ tar xvf mysql-8.0.31-el7-x86_64.tar 
mysql-test-8.0.31-el7-x86_64.tar.gz
mysql-8.0.31-el7-x86_64.tar.gz
mysql-router-8.0.31-el7-x86_64.tar.gz

⊙ MySQL 바이너리 설치 파일 압축 해제

--strip-components=1 : /mysql/local/mysql/

tar xfz mysql-8.0.31-el7-x86_64.tar.gz -C /usr/local/mysql/ --strip-components=1
$ ls -l /usr/local/mysql/
합계 296
-rw-r--r--  1 7161 31415 287627  9월 14 01:15 LICENSE
-rw-r--r--  1 7161 31415    666  9월 14 01:15 README
drwxr-xr-x  2 7161 31415   4096  9월 14 02:50 bin
drwxr-xr-x  2 7161 31415     55  9월 14 02:50 docs
drwxr-xr-x  3 7161 31415    282  9월 14 02:50 include
drwxr-xr-x  6 7161 31415    201  9월 14 02:50 lib
drwxr-xr-x  4 7161 31415     30  9월 14 02:50 man
drwxr-xr-x 28 7161 31415   4096  9월 14 02:50 share
drwxr-xr-x  2 7161 31415     77  9월 14 02:50 support-files
728x90

5. MySQL 디렉토리 소유권 변경

chown -R mysql.mysql /usr/local/mysql

6. MySQL 설치 위치로 이동

cd /usr/local/mysql/
  • MySQL 버전 확인
./bin/mysqld --version
$ ./bin/mysqld --version
/usr/local/mysql/bin/mysqld  Ver 8.0.31 for Linux on x86_64 (MySQL Community Server - GPL)

7. 데이터베이스(DB) 데이터 디렉토리 생성

mkdir -p /usr/local/mysql/data
chown -R mysql:mysql /usr/local/mysql/data
chmod 750 /usr/local/mysql/data

8. MySQL 환경 설정 파일 설정(edit my.cnf)

vim /usr/local/mysql/my.cnf
[mysqld]
user = mysql
port = 3306
basedir = /usr/local/mysql
datadir = /usr/local/mysql/data
socket = /tmp/mysql.sock
log-error=/usr/local/mysql/data/mysql_error.log

mysqlx=OFF

[client]
port = 3306
socket = /tmp/mysql.sock

9. 초기화 데이터베이스(DB) 설정

--initialize : 기본 데이터베이스 생성, 임의의 패스워드로 root 계정을 생성 (패스워드는 로그에서 확인)
--initialize-insecure : 기본 데이터베이스 생성, 빈 암호로 root 계정 생성
./bin/mysqld --defaults-file=/usr/local/mysql/my.cnf --initialize --user=mysql

10. MySQL root 패스워드 확인

cat /usr/local/mysql/data/mysql_error.log | grep "A temporary password is generated for root@localhost"
$ cat /usr/local/mysql/data/mysql_error.log | grep "A temporary password is generated for root@localhost"
2023-01-09T04:36:24.795397Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: a1k4e!Ahp1,b

11. MySQL 서비스 실행

./bin/mysqld_safe --defaults-file=/usr/local/mysql/my.cnf &

12. MySQL 접속 및 비밀번호 설정

mysql -uroot -p'a1k4e!Ahp1,b'
$ mysql -uroot -p'a1k4e!Ahp1,b'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.31

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

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>

13. 초기 비밀번호 설정 및 보안 설정

ALTER USER 'root'@'localhost' IDENTIFIED BY '새로운_비밀번호';

14. MySQL 초기 보안 설정 수행

bin/mysql_secure_installation

15. 환경 변수 설정(PATH 설정)

vim ~/.bashrc
PATH=$PATH:$HOME/bin:/usr/local/mysql/bin
source ~/.bashrc

또는

echo 'export PATH=$PATH:/usr/local/mysql/bin' >> ~/.bashrc
source ~/.bashrc

 

참고URL

- Server System Variable Reference : https://dev.mysql.com/doc/refman/8.0/en/server-system-variable-reference.html

- MySQL Configuration Utility : https://dev.mysql.com/doc/refman/8.0/en/mysql-config-editor.html

- Initializing the Data Directory : https://dev.mysql.com/doc/refman/8.0/en/data-directory-initialization.html

 

728x90