mysql install 썸네일형 리스트형 [draft] CentOS 7에서 YUM 패키지 매니저를 사용하여 MySQL을 설치하는 방법 CentOS 7에서 YUM 패키지 매니저를 사용하여 MySQL을 설치하는 방법MySQL Community 버전 다운로드 링크https://dev.mysql.com/downloads/mysql/https://dev.mysql.com/downloads/repo/yum/1. MySQL Community Repository 다운로드 및 설치MySQL Community Repository 다운로드wget https://dev.mysql.com/get/mysql80-community-release-el7-7.noarch.rpmMySQL Community Repository 설치yum install mysql80-community-release-el7-7.noarch.rpmMySQL 저장소 목록yum repolist.. 더보기 [draft] 우분투에서 MySQL 8을 APT로 설치하고 설정하는 방법 우분투에서 MySQL 8을 APT로 설치하고 설정하는 방법1. MySQL APT 리포지토리 추가MySQL APT 리포지토리 패키지를 다운로드하고 설치합니다.wget https://dev.mysql.com/get/mysql-apt-config_0.8.33-1_all.debsudo dpkg -i mysql-apt-config_0.8.33-1_all.debMySQL 저장소에 HTTP(포트 80)로 연결되지 않을 경우 프로토콜을 HTTPS로 변경합니다.sudo sed -i.bak 's|http://|https://|g' /etc/apt/sources.list.d/mysql.listAPT 패키지 목록을 업데이트합니다.sudo apt update2. MySQL 8 설치APT 명령으로 MySQL 서버를 설치합니다.s.. 더보기 [draft] CentOS 7 Yum Repository 서버에 MariaDB Repository를 추가하는 방법 CentOS 7 Yum Repository 서버에 MariaDB Repository를 추가하는 방법테스트 환경운영체제 정보$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)MariaDB Repository 추가MariaDB Repositories : https://mariadb.org/download/?t=repo-configMariaDB Repository 설정 파일 추가(MariaDB.repo 저장소 추가)vim /etc/yum.repos.d/MariaDB.repoRepository 정보 입력이 설정 파일은 MariaDB의 공식 미러를 사용합니다.# MariaDB 10.8 CentOS repository list - created 2022-1.. 더보기 [draft] CentOS 7에서 MySQL 5.7를 바이너리 아카이브 파일로 설치하는 방법 CentOS 7에서 MySQL 5.7를 바이너리 아카이브 파일로 설치하는 방법테스트 환경운영체제 버전 정보$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)$ getconf LONG_BIT64DB : mysql 5.7.15MySQL 계정 생성groupadd -g 27 mysqluseradd -m -c "MySQL Server" -d /usr/local/mysql -s /bin/false -g 27 -u 27 mysql MySQL Community Server 다운로드 받기https://downloads.mysql.com/archives/community/작업 디렉토리로 이동cd /usr/local/src아카이브 파일 다운로드wget https:/.. 더보기 이전 1 다음