티스토리 뷰
16년 9월 기준.
wget http://mirror.apache-kr.org//httpd/httpd-2.4.23.tar.gz
./configure --prefix=/usr/local/httpd
make
make install
apache2.4.x 버전부터는 apr과 apr-util을 별로도 설치해야 한다.
yum install apr은 버전이 낮으므로 직접 설치.
wget http://mirror.apache-kr.org//apr/apr-1.5.2.tar.gz
wget http://apache.tt.co.kr//apr/apr-util-1.5.4.tar.gz
apr 압축풀고 ./configure, make, make install
apr-util 압축풀고 ./configure -with-apr=/usr/local/apr, make, make install
pcre도 설치해야 한다.
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
pcre 압축풀고 ./configure, make, make install
// pcre2아니고 pcre로 설치해야 한다.
c++컴파일러가 없다고 뜨면 gcc설치
yum install gcc gcc-c++
make bison 에러
yum install bison
make flex 에러
yum install flex
bin/httpd -k stop
bin/httpd -k start
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.100.97. Set the 'ServerName' directive globally to suppress this message
Could not reliably determine the server's fully qualified
// conf/httpd.conf에 ServerName localhost 추가
vi /etc/httpd/conf/httpd.conf
ServerRoot "/var/www/html"
// 경로 참고
'Study' 카테고리의 다른 글
Java(자바) Linux(리눅스) Command Execute(명령어 실행) (0) | 2024.03.15 |
---|---|
Hash(해시) 관련 (0) | 2024.02.18 |
cygwin(시그윈) 관련 (0) | 2024.02.18 |
Python(파이썬) 관련 (0) | 2024.02.18 |
Docker(도커) 관련 (0) | 2024.02.18 |