본문 바로가기
OS/Linux

MySQL 8.0 설치

by 팡팡마트 2023. 9. 26.
728x90

** CentOS 8 Stream

 

1. mysql 다운로드 링크 확인

MySQL :: MySQL Community Edition

 

MySQL :: MySQL Community Edition

MySQL Community Edition MySQL Community Edition is the freely downloadable version of the world's most popular open source database. It is available under the GPL license and is supported by a huge and active community of open source developers. The MySQL

www.mysql.com

Download MySQL Community Edition -> MySQL Yum Repository -> Red Hat Enterprise Linux 8 / Oracle Linux 8 (Architecture Independent), RPM Package -> 하단의 No thanks, just start my download. 오른쪽 눌러 링크 복사

 

2. mysql Repository 설치

# yum install -y https://dev.mysql.com/get/mysql80-community-release-el8-8.noarch.rpm

 

레포지토리 목록 확인

# yum repolist enabled | grep mysql

 

3. mysql 설치

# yum install -y mysql-server

 

버전 확인

# mysql -V

 

4. 서비스 시작

# systemctl enable mysqld

# systemctl start mysqld

# systemctl status mysqld

# netstat -nlt

기본값으로 3306  LISTEN

 

5. 접속확인

# mysql -u root -p

초기에는 비밀번호 미설정으로 엔터 누르면 접속

 

**이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

728x90

'OS > Linux' 카테고리의 다른 글

리눅스 In-Place 업그레이드(Centos7 -> 8)  (0) 2023.12.08
sshd 연결 타임아웃 설정  (1) 2023.11.21
리눅스 타임존 Time zone 변경  (0) 2023.08.21
NTP 서버 클라이언트 만들기  (0) 2023.08.21
리눅스 더미파일 만들기  (0) 2023.07.31