목록아파치 (2)
준호씨의 블로그
맥북 마이그레이션 후 아파치 웹서버가 제대로 동작하지 않음 brew services 로는 상황 진단이 어려움 $ brew services restart httpd Stopping `httpd`... (might take a while) ==> Successfully stopped `httpd` (label: homebrew.mxcl.httpd) ==> Successfully started `httpd` (label: homebrew.mxcl.httpd) 메시지는 그럴싸 한데 실제로 httpd 가 안뜸. /usr/local/var/log/httpd/error_log 에도 로그가 안찍힌다. apachectl 로 시작 해 보면 에러 메시지를 볼 수 있다. $ apachectl start dyld: Symbol..
서버를 재 구축 해야 된다거나 등의 이유로 아파치 빌드 옵션을 확인 해야 될 때가 있다. 그 방법을 정리 해 본다. 아파치가 설치 된 디렉토리로 이동 한다. /usr/local/Cellar/httpd24/2.4.23_2 build 디렉토리로 들어간다. cd build config.nice 파일을 열어 본다. $ cat config.nice #! /bin/sh # # Created by configure CC="clang"; export CC "./configure" \ "--enable-layout=Homebrew" \ "--enable-mods-shared=all" \ "--enable-unique-id" \ "--enable-ssl" \ "--enable-dav" \ "--enable-cache" \..