Amazon Linux 2에 LAMP 환경 설치
Amazon Linux Extras 리포지토리에서 lamp-mariadb10.2-php7.2를 설치하고 LAMP 환경을 구축하여 WordPress가 작동하는 상태로 합니다.
Amazon Linux 2 인스턴스 시작
security group 설정은 My IP에서 SSH, Anywhere에서 HTTP/HTTPS 액세스를 허용합니다.
Amazon Linux 2 인스턴스에 연결
SSH private key를 사용하여 EC2 인스턴스에 SSH 연결합니다.
$ ssh -i amazon-linux2-lamp.pem [email protected]
Warning: Permanently added '54.92.xx.xx' (ECDSA) to the list of known hosts.
__| __|_ )
_| ( / Amazon Linux 2 AMI
___|\___|___|
https://aws.amazon.com/amazon-linux-2/
시간대 변경
sudo su -
timedatectl set-timezone Asia/Tokyo
Apache 설치
yum -y install httpd
systemctl enable httpd
systemctl start httpd
웹 브라우저에서 IPv4 Public IP에 나열된 글로벌 IP 주소로 이동하여 Apache 테스트 페이지가 표시되는지 확인합니다.
PHP 7.2 설치
amazon-linux-extras install -y \
lamp-mariadb10.2-php7.2=10.2.10_7.2.0 \
php7.2=7.2.0
MariaDB 10.2 설치
yum install -y mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-05-29 현재 MariaDB 10.2.10이 설치되었습니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.2.10-MariaDB MariaDB Server
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
MariaDB [(none)]> create database wordpress default character set utf8;
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by 'password';
MariaDB [(none)]> flush privileges;
WordPress 초기 설정
웹 브라우저에서 54.92.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Amazon Linux 2에 LAMP 환경 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/4a89856e743f287c599f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
SSH private key를 사용하여 EC2 인스턴스에 SSH 연결합니다.
$ ssh -i amazon-linux2-lamp.pem [email protected]
Warning: Permanently added '54.92.xx.xx' (ECDSA) to the list of known hosts.
__| __|_ )
_| ( / Amazon Linux 2 AMI
___|\___|___|
https://aws.amazon.com/amazon-linux-2/
시간대 변경
sudo su -
timedatectl set-timezone Asia/Tokyo
Apache 설치
yum -y install httpd
systemctl enable httpd
systemctl start httpd
웹 브라우저에서 IPv4 Public IP에 나열된 글로벌 IP 주소로 이동하여 Apache 테스트 페이지가 표시되는지 확인합니다.
PHP 7.2 설치
amazon-linux-extras install -y \
lamp-mariadb10.2-php7.2=10.2.10_7.2.0 \
php7.2=7.2.0
MariaDB 10.2 설치
yum install -y mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-05-29 현재 MariaDB 10.2.10이 설치되었습니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.2.10-MariaDB MariaDB Server
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
MariaDB [(none)]> create database wordpress default character set utf8;
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by 'password';
MariaDB [(none)]> flush privileges;
WordPress 초기 설정
웹 브라우저에서 54.92.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Amazon Linux 2에 LAMP 환경 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/4a89856e743f287c599f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
sudo su -
timedatectl set-timezone Asia/Tokyo
yum -y install httpd
systemctl enable httpd
systemctl start httpd
웹 브라우저에서 IPv4 Public IP에 나열된 글로벌 IP 주소로 이동하여 Apache 테스트 페이지가 표시되는지 확인합니다.
PHP 7.2 설치
amazon-linux-extras install -y \
lamp-mariadb10.2-php7.2=10.2.10_7.2.0 \
php7.2=7.2.0
MariaDB 10.2 설치
yum install -y mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-05-29 현재 MariaDB 10.2.10이 설치되었습니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.2.10-MariaDB MariaDB Server
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
MariaDB [(none)]> create database wordpress default character set utf8;
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by 'password';
MariaDB [(none)]> flush privileges;
WordPress 초기 설정
웹 브라우저에서 54.92.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Amazon Linux 2에 LAMP 환경 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/4a89856e743f287c599f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
amazon-linux-extras install -y \
lamp-mariadb10.2-php7.2=10.2.10_7.2.0 \
php7.2=7.2.0
yum install -y mariadb-server
systemctl enable mariadb
systemctl start mariadb
2019-05-29 현재 MariaDB 10.2.10이 설치되었습니다.
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 10.2.10-MariaDB MariaDB Server
Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
WordPress 설치
WordPress 다운로드/배포
현재 WordPress 최신 버전을 다운로드하여 DocumentRoot 아래로 확장합니다.
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
WordPress용 데이터베이스 만들기
문자 코드 UTF8로 데이터베이스 wordpress를 만듭니다.
MariaDB [(none)]> create database wordpress default character set utf8;
WordPress용 MariaDB 사용자 만들기
방금 만든 데이터베이스 만 전체 권한을 가진 wordpress 사용자를 만듭니다 (사용자 이름/암호는 적절하게 변경하십시오).
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by 'password';
MariaDB [(none)]> flush privileges;
WordPress 초기 설정
웹 브라우저에서 54.92.xx.xx/wordpress로 이동하여 WordPress를 초기화합니다.
성공적으로 설치가 완료되면 지정된 사용자와 암호로 대시보드에 로그인할 수 있습니다.
Reference
이 문제에 관하여(Amazon Linux 2에 LAMP 환경 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/4a89856e743f287c599f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
MariaDB [(none)]> create database wordpress default character set utf8;
MariaDB [(none)]> grant all on wordpress.* to wordpress@localhost identified by 'password';
MariaDB [(none)]> flush privileges;
Reference
이 문제에 관하여(Amazon Linux 2에 LAMP 환경 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/cherubim1111/items/4a89856e743f287c599f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)