-
Job for httpd.service failed because a configured resource limit was exceeded. See "systemctl status httpd.service" and "journalctl -xe" for details.에러 2022. 11. 4. 07:08
증상
AWS 인스턴스 정지후 재시작시 서버 연결이 안 됨
원인
Read-Only
# sudo systemctl start httpd
Job for httpd.service failed because a configured resource limit was exceeded. See "systemctl status httpd.service" and "journalctl -xe" for details.
# systemctl status httpd -l
# systemctl status httpd.service

● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
Drop-In: /usr/lib/systemd/system/httpd.service.d
└─php-fpm.conf
Active: failed (Result: resources)
Docs: man:httpd.service(8)#

journalctl -xe
Read-only 해결 - https://illilia.tistory.com/129
Read-only file system
# sudo명령과 root계정을 이용해도 Read-only file system 오류로 파일 수정 불가 서비스가 정상적으로 동작하지 않음 # cat /proc/mount > 해당 파일 시스템 경로가 ro로 되어있었음 mount-o remount, rw /dev/path > rw
illilia.tistory.com
'에러' 카테고리의 다른 글
Read-only file system (0) 2022.10.27 Missing URI template variable '변수명' for method parameter of type String (0) 2022.10.19 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener (0) 2022.09.26 'publishing to tomcat server at localhost...' has encountered a problem (0) 2022.09.23 ORA-00955: name is already used by an existing object (0) 2022.09.15