#1 기존에 설치 됐는지 확인해보자
apt list --installed | grep apache2
#2 apache2 설치
apt install apache2 -y
#3 apache2 실행상태 확인
systemctl status apache2
#4 apache2 실행을 종료해보고 다시 실행해보자
systemctl stop apache2
systemctl status apache2
systemctl start apache2
systemctl status apache2
#5 아파치를 실행한 서버의 IP를 확인하고 로컬에서 접속해보자
ifconfig
#6 가상환경에서 방화벽을 실행하고 다시 접속해보자 - 접속 안됨
ufw status
ufw enable
ufw status
#7 방화벽을 끄고 다시 접속해보자 - 접속됨
ufw status
ufw disable
ufw status
#1 기존에 설치 됐는지 확인해보자
apt list --installed | grep apache2
#2 apache2 설치
apt install apache2 -y
#3 apache2 실행상태 확인
systemctl status apache2
#4 apache2 실행을 종료해보고 다시 실행해보자
systemctl stop apache2
systemctl status apache2
systemctl start apache2
systemctl status apache2
#5 아파치를 실행한 서버의 IP를 확인하고 로컬에서 접속해보자
ifconfig
#6 가상환경에서 방화벽을 실행하고 다시 접속해보자 - 접속 안됨
ufw status
ufw enable
ufw status
#7 방화벽을 끄고 다시 접속해보자 - 접속됨
ufw status
ufw disable
ufw status
'Operating System > Linux' 카테고리의 다른 글
[Mac] Error: Failed to upgrade Homebrew Portable Ruby! (1) | 2024.06.04 |
---|---|
[Ubuntu] vi 편집기 사용할 때 방향키가 문자로 적용되는 현상 해결 (0) | 2023.07.28 |
[Ubuntu] 우분투에 apache2 설치됐는지 확인하는 방법 (0) | 2023.07.28 |
[Ubuntu] 우분투 서버에 ping 통신 못하게 하는 방법 (0) | 2023.07.28 |
[Ubuntu] 우분투에서 apt 또는 apt-get 으로 설치한 패키지의 버전을 확인하는 방법 (0) | 2023.07.28 |