카탈리나로 업데이트 함.
1. Root level에 해둔 셋팅 모두 제거됌
- 회사 프로젝트 위치를 Root 레벨로 하기로 정해져 있었는데.. 이번 업데이트로 인해 싹다 날라감..
- mohave 로 업데이트 할 때는 안지워졌던거 같은데..
- 알고보니.. 폴더 이동함
/Users/Shared/Relocated Items
2. httpd.conf 에러
AH00534: httpd: Configuration error: No MPM loaded.
#LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
#LoadModule mpm_worker_module modules/mod_mpm_worker.so
- 해결: 이 중에서 httpd.conf 내에서 사용하고 있는 모듈의 주석 제거 (사용 모듈로 추가) 1개만 사용 가능
- 업데이트 전에는 문제 없던 부분인데.. 업데이트 후 발생함
3. 셋팅 후 Web에서 문제 발생
- chrome console 에 경고 메시지
A cookie associated with a cross-site resource at http://cloudflare.com/ was set without the SameSite attribute. A future release of Chrome will only deliver cookies with cross-site requests if they are set with SameSite=None and Secure. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https:/ www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032.
- Cookie Clear 로 해결
4. net::ERR_CONNECTION_RESET
, net::ERR_CONNECTION_CLOSED
- httpd.conf 의 mpm 기존 셋팅은
mod_mpm_worker.so
였음. mod_mpm_prefork.so
로 바꾸니 에러 안남
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>