[Linux] Apache 서버 설치와 설정 가이드
Apache HTTP Server는 전 세계적으로 가장 널리 사용되는 오픈소스 웹 서버 중 하나로, 다양한 운영체제에서 폭넓게 활용됩니다.Apache를 리눅스 서버에 설치하고, 기본 설정하는 방법 정리했습니다. 1. Apache 설치하기✔ Ubuntu/Debian 계열sudo apt updatesudo apt install apache2✔ RHEL/CentOS 계열sudo dnf install httpd 2. Apache 서비스 관리설치 후 Apache 데몬을 시작하고, 상태를 확인할 수 있습니다.✔ 서비스 시작/중지/재시작sudo systemctl start apache2 # Ubuntusudo systemctl start httpd # CentOS/RHELsudo systemct..