본문 바로가기

728x90

mysql server install

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.rpm MySQL Community Repository 설치 yum install mysql80-community-release-el7-7.noarch.rpm MySQL 저장소 목록 yum.. 더보기
[리눅스] 바이너리(Generic Binaries)를 사용하여 Ubuntu에 MySQL 설치 바이너리(Generic Binaries)를 사용하여 Ubuntu에 MySQL 설치 요구사항 $ cat /etc/os-release PRETTY_NAME="Ubuntu 22.04 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04 (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/term.. 더보기
CentOS 7에서 MySQL 5.7를 바이너리 아카이브 파일로 설치하는 방법 CentOS 7에서 MySQL 5.7를 바이너리 아카이브 파일로 설치하는 방법 테스트 환경 운영체제 버전 정보 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) $ getconf LONG_BIT 64 DB : mysql 5.7.15 MySQL 계정 생성 groupadd -g 27 mysql useradd -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 아카이브 파일 다운.. 더보기
CentOS 7에 MySQL 5.7을 바이너리 설치하는 방법(binary) CentOS 7에 MySQL 5.7을 바이너리 설치하는 방법(binary) 테스트 환경 - DB : mysql 5.7.15 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) $ getconf LONG_BIT 64 mysql 계정 생성 groupadd -g 27 mysql useradd -m -c "MySQL Server" -d /usr/local/mysql -s /bin/false -g 27 -u 27 mysql MySQL Community Server 다운로드 받기 mysql-boost-5.7.15.tar.gz 압축 풀기 tar xfz mysql-boost-5.7.15.tar.gz cd mysql-5.7.15/ 컴파일 설치 cmake \ -.. 더보기

728x90