mobaXterm에 접속한다. 만약 instance를 껐다 켰다면, 변경된 ip주소를 edit session에서 수정 후 접속해야 한다.
다음과 같은 창이 나올 것이다.
일단 ubuntu 업데이트를 위해
sudo apt-get update
를 입력한다.
대충 해석하면
sudo: 슈퍼 유저(관리자 정도?)의 권한으로 명령을 실행하라.
apt: Advanced Package Tool(업데이트 패키지 툴)
get: 받아서
update: 업데이트 해라.
이런 느낌이다.
Reading package lists... Done
ubuntu@ip-000-000-000-000(본인 AWS ip주소):~$
이 문구가 마지막에 나오면 업데이트가 끝난 것이다.
여기에 MySQL을 깔기 위해
sudo apt-get install mysql-server
을 입력한다.
이후 MySQL 활성화를 시키는
sudo systemctl enable mysql
을 입력한다.
이후 MySQL 실행을 위해
sudo /usr/bin/mysql -u root -p
를 입력한다.
Password 설정 안 했으므로, Enter password 나오면 그냥 엔터하면
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.29-0ubuntu0.18.04.1 (Ubuntu)
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
이렇게 나오면 MySQL이 잘 설치 된 것이다. exit 입력해 나가자.
여기까지 MySQL 설치.
===============================================================
nginx 설치를 위해
sudo apt-get install nginx
//또는(기능이 좀 더 많은 엑스트라를 원한다면..
sudo apt-get install nginx-extras
를 입력한다.
sudo service nginx start
를 입력하면 nginx가 가동된다.
이후 크롬(또는 다른 웹 브라우저)에
(본인 AWS주소):80을 입력해
ex) 54.180.81.65:80
이게 나오면 nginx 설치 완료!
'AWS' 카테고리의 다른 글
AWS Ubuntu에서 Docker 설정, 이미지 파일 생성 및 실행, 공유 (0) | 2020.07.08 |
---|---|
잡담_AWS 접속 시 network error_ connection timed out (8) | 2020.05.02 |
AWS ubuntu 환경 설정하기 3_Java 1.8, Tomcat 9.0 설치 (0) | 2020.04.26 |
AWS ubuntu 환경 설정하기 1_인스턴스 설치 및 mobaXterm 설정 (0) | 2020.04.26 |