httpd-2.2.26.tar.gz(다운로드 주소)를 다운로드하고
sudo tar xzfv httpd-2.2.26.tar.gz cd httpd-2.2.26 sudo ./configure --prefix=/usr/local/apache2 --enable-module=most --enable-rewrite --enable-shared=max --enable-so
을 실행합니다. 다음 오류가 표시되면:
checking for C compiler default output file name... configure: error: C compiler cannot create executables
이유는 libc6- dev가 설치되지 않았습니다.
sudo apt-get install build-essential
을 실행하면 괜찮습니다.
그런 다음 다시 실행합니다.
sudo ./configure --prefix=/usr/local/apache2 --enable-module=most --enable-rewrite --enable-shared=max --enable-so
오류가 보고되지 않은 다음
sudo make sudo make install sudo groupadd apache sudo useradd -g apache apache sudo passwd apache sudo chown -R apache:apache /usr/local/apache2
을 실행하여 Apache 구성 파일을 수정하고
sudo vi /usr/local/apache2/conf/httpd.conf을 실행합니다.
찾기
User nobody Group #-1
를
User apache Group apache
로 변경
#ServerName www.example.com:80
을 찾아
ServerName *:80
으로 변경 저장!
명령어를 실행
sudo /usr/local/apache2/bin/apachectl start
apache를 시작하세요.
브라우저를 열고 http://localhost를 방문하세요
잘 되셨다면, 아파치 테스트 페이지를 볼 수 있습니다. 축하합니다. 아파치가 설치되었습니다!
Apache 서비스를 다시 시작하고 종료하는 명령은 다음과 같습니다.
sudo /usr/local/apache2/bin/apachectl restart sudo /usr/local/apache2/bin/apachectl stop