[macOS]brew php 다른 버전으로 전환하는 방법 php 에서 php@7.3 으로 전환 $ brew unlink php $ brew link php@7.3 php@7.3 에서 php 으로 전환 $ brew unlink php@7.3 $ brew link php mac os 4년 전
[macOS]brew 에서 httpd설치 // 설치 brew install httpd // 시작 brew services start httpd apachectl start mac os 4년 전
[macOS][MySQL]brew 로 mysql 종료 1. homebrew/services 설치 (한번만) $ brew tap homebrew/services 2. mysql 5.6 버전 종료 $ brew services stop mysql@5.6 mac os 5년 전
[macOS] brew 로 node 와 bower 설치 1. node 설치 $ brew install node 2. node 버전 확인 $ node -v 3. bower 설치 $ npm install -g bower 4. bower 버전 확인 $ bower -v 참고사이트 https://dyclassroom.com/howto-mac/how-to-install-bower-on-mac-using-node-and-npm mac os 5년 전
linux(mac)에서 httpd.conf 찾는방법 httpd.conf 찾는법 httpd -V | egrep "(HTTPD\_ROOT|SERVER\_CONFIG\_FILE)" 에러로그 위치 찾는법 grep ErrorLog {httpd.conf 파일 경로} 터미널(콘솔) 예시 $ httpd -V | egrep "(HTTPD\_ROOT|SERVER\_CONFIG\_FILE)" 아래와 같이 나온다. -D HTTPD_ROOT="/usr/local/Cellar/httpd/2.4.46" -D SERVER_CONFIG_FILE="/usr/local/etc/httpd/httpd.conf" 에러로그 찾는법은 아래와 같다. $ grep ErrorLog /usr/local/etc/httpd/httpd.conf 결과는 아래와 같이 나온다. # ErrorLog: The loca.. mac os 5년 전