프로그래밍/Linux

Ubuntu 16.04 Node.js + MySQL + Nginx 서버 세팅해보자!

Lou Park 2019. 6. 3. 13:49

Node.js 개발자다보니 맨날 Node.js/MySQL/Nginx 서버 세팅할일이 많은데, 이번에 스크립트로 정리해보려한다.

개별 옵션은 각자의 상황에 맞게 커스텀으로 입력하시고, 기본 서버에 필요한 명령어들은 아래와 같다!


1
$ sudo apt-get update
cs


Node.js 설치 (8 버전)

1
2
3
4
5
cd ~
curl -sL https://deb.nodesource.com/setup_8.x -o nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt-get install nodejs -y
sudo apt-get install npm -y
cs


sudo apt-get install build-essential -y


MySQL 설치

1
2
3
4
sudo apt install mysql-server -y
// --> MySQL root 비밀번호 설정
sudo mysql_secure_installation
// --> y | 0 | n | n | y | y | y
cs

Nginx 설치
1
2
3
sudo apt-get install nginx -y
sudo ufw allow 'Nginx HTTP'
systemctl status nginx
cs