우분투에서 명령어 2줄로 그누보드 설치하기 정보
우분투에서 명령어 2줄로 그누보드 설치하기관련링크
본문
우분투에서 그누보드를 설치하려면 기본적으로 MariaDB, php, Nginx나 아파치 같은 웹서버 등을 설치하고 연동하고 할게 많습니다.
요새는 SSL 인증서도 설치해야되고, 3개월마다 갱신해야되고, phpmyadmin으로 DB관리도 해야되고...
GIF 움짤 MP4, WEBM으로 변환하려면 FFMPEG도 따로 설치해야되고....
하지만 이 모든게 단 2줄의 명령어로 설치된다면 어떨까요?
바로 도커와 설치 스크립트로 가능합니다.
루트 DB 비번, DB 이름 등 자신이 다 정할 수 있게 스크립트를 만들었습니다. (사실 수정했습니다.)
sudo apt update -y && sudo apt upgrade -y && sudo apt install curl git -y && sudo apt autoremove -y
위 명령어로 패키지 최신화 하고,
curl -o dc https://raw.githubusercontent.com/woosungchoi/docker-gnuboard/master/dc && bash dc setup && rm -f dc
위 명령어로 설치하면 끝입니다. 참 쉽죠?
상세 설정은 링크1을 참조하시고, 소스는 링크2에 있습니다.
---
로컬(localhost)나 SSL 없이 설치하고 싶다면
sudo apt update -y && sudo apt upgrade -y && sudo apt install curl git -y && sudo apt autoremove -y
위 명령어 후
curl -o dcl https://raw.githubusercontent.com/woosungchoi/docker-gnuboard/master/dcl && bash dcl setup && rm -f dcl
위 명령어를 넣으면 됩니다.
---
설치 패키지
Gnuboard latest(including rewrite configuration)
Php7.4 latest docker image(alpine)
MariaDB latest docker image
Nginx latest docker image(alpine)
Redis latest docker image(alpine)
Certbot latest docker image
Phpmyadmin latest docker image(fpm-alpine)
Portainer latest docker image(alpine)
SMTP latest docker image for SMTP mail
Docker
Docker-compose
5
댓글 23개
https://sir.kr/g5_tip/13521
$300 주니 테스트 할 수 있어요~
2. 오라클 클라우드
https://itreport.tistory.com/624
여긴 무료로 서울 춘천에 서버 가능합니다.
https://sir.kr/g5_tip/13521
$300 주니 테스트 할 수 있어요~
2. 오라클 클라우드
https://itreport.tistory.com/624
여긴 무료로 서울 춘천에 서버 가능합니다.
감사합니다.
이건 쉽게 성공해야 할텐데... 걱정이네요.
1. sudo apt update
2. sudo apt upgrade
3. sudo apt-get install ufw
4. sudo ufw allow 80,443
5. 우성짱님 마법의 두줄 설치
요래 하면 되겠죠?
iptables 가 기본입니다
sudo iptables -F
sudo iptables -X
sudo iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
sudo iptables -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT
sudo iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
이렇게 작업 해주고
sudo apt-get install iptables-persistent netfilter-persistent
설치 후
sudo netfilter-persistent save
sudo netfilter-persistent reload
저장해주면 됩니다.