Linux 리눅스 CentOs

Apache error 아파치 오류 AH00023

zeuz 2020. 11. 16. 10:40
반응형

아파치 재시작 시 AH00023 오류 날 때 명령어 command

 

1.

ipcs -s | tail -n +4 | head -n -1 | tr -s ' ' | cut -d' ' -f3 | sort | uniq -c | sort -nr

 

2.

ipcs -s | tail -n +4 | head -n -1 | tr -s ' ' | cut -d' ' -f2,3 | while read -r id owner; do [[ $owner == "apache" ]] && ipcrm -s "$id"; done

 

반응형