
[Apache] macOS homebrew Apache 설치 및 관련 명령어
·
etc
homebrew Apache 설치1. 내장 아파치 중지별도의 설치 없이 macOS에는 내장 Apache가 설치되어있다. 내장 아파치를 중지시키고 내장 아파치 자동 실행을 막는다.sudo apachectl stopsudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist 2>/dev/null2. homebrew로 설치brew install httpd 실행 관련// 실행brew services start httpd// 중지brew services stop httpd// 재시작brew services restart httpd 상태 확인httpd -V 실행 에러 발생 시Bootstrap failed: 5: Input/output e..