Skip to content

Commit

Permalink
chore: 테스트 서버 mysql 설치 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
5uhwann committed Jul 9, 2024
1 parent 1f89393 commit d7cc818
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .ebextensions/install_mysql.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
packages:
yum:
wget: []
epel-release: []

commands:
01_add_mysql_repo:
command: "wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm && rpm -Uvh mysql80-community-release-el7-3.noarch.rpm"
command: "wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm -O /tmp/mysql80-community-release-el7-3.noarch.rpm && rpm -Uvh /tmp/mysql80-community-release-el7-3.noarch.rpm"

02_install_mysql:
command: "yum install -y mysql-community-server"
command: "yum clean all && yum -y install mysql-community-server"

03_start_mysql:
command: "service mysqld start"
Expand Down

0 comments on commit d7cc818

Please sign in to comment.