목록mysql (5)
miinsun
먼저, MySQL 서버를 업그레이드하는 방법으로 두 가지 방법이 있다. In-Place Upgrade MySQL 서버의 데이터 파일을 그대로 두고 업그레이드 Logical Upgrade mysqldump 도구 등을 이용해 MySQL 서버의 데이터를 덤프 한후, 미리 준비한 업그레이된 버전의 MySQL 서버에서 덤프된 데이터를 적재하는 방법 1번 인플레이스 방법에는 여러 제약 사항이 있지만 업그레이드 시간을 크게 단축할 수 있다. 반대로 로지컬 방법은 버전 간 제약 사항이 거의 없지만 업그레이드 시간이 매우 많이 소요될 수 있다. MySQL 8.0 업그레이드 시 고려 사항 MySQL 5.7 대비 MySQL 8.0에서는 상당히 많은 기능들이 개선되거나 변경됐다. 그래서 반드시 MySQL 8.0으로 업그레이드..
LAMP Lamp는 정적/동적 웹 애플리케이션을 호스팅하기 위한 스택 환경으로 Linux, Apache, MaiaDB, PHP로 구성돼 있다. 💻 실습 환경 OS : CentOS or Rocky Linux Architecture : x89-64 sudo 사용자 준비 📌 1 Apache 설치 가장 먼저 Apache를 설치한다 $ sudo dnf install httpd 가상 머신을 부팅 할 때, 웹 서버가 자동으로 실행되도록 설정해주자 $ sudo systemctl enable httpd Apache 실행 $ sudo systemctl start httpd Apache 서버 상태 확인 $ sudo systemctl status httpd Apache status 결과 : active상태면 정상 동작하고 있..
💻 실습 환경 OS : CentOS 8 Architecture : x89-64 📌 mysql image 다운 $ docker pull mysql:8 📌 mysql image 실행 $ docker run --name mysql8 -e MYSQL_ROOT_PASSWORD=관리자비밀번호 -p 3306:3306 -d mysql:8 📌 docker 상태 확인 $ docekr ps 📌 mySql 실행 $ docker exec -i -t mysql:8 mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.27 MySQL C..
💻 실습 환경 OS : Linux (Ubuntu 8) Architecture : x89-64 📌 원인 : mySql 최신 이미지 실행시 발생 $ $ docker run --name mysql-container -e MYSQL_ROOT_PASSWORD=alstjs1docker -d -p 3306:3306 mysql:latest Unable to find image 'images:latest' locally docker: Error response from daemon: pull access denied for images, repository does not exist or may require 'docker login': denied: requested access to the resource is de..
Rocky Linux 8 AppStream Repository에서 MySQL을 설치할 수 있습니다. AppStream에서 제공되는 MySql 버전 확인 $ dnf whatprovides mysql-server mysql-server-8.0.26-1.module+el8.3.0+242+87d3366a.x86_64 : The MySQL server and related files Repo : appstream Matched from: Provide : mysql-server = 8.0.26-1.module+el8.3.0+242+87d3366a MySql 설치 $ dnf install mysql-server or $ dnf install @mysql MySql 실행 $ systemctl enable -..