(28)No space left on device: AH00023: Couldn’t create the rewrite-map mutex in Apache

2018-09-01 KENNETH 0

  증상 아래 로그와 같이 아파치 실행이 되지 않는 문제 발생 이 에러 참으로 오랜만이다… 아마 마지막으로 본것이 10년은 족히 된것 같구나… 너무 오랜만이어서 대략적으로다가 순간 흠칫… ㄷ ㄷ ㄷ   에러 로그 [core:emerg] [pid 6744:tid 139704271460160] (28)No space left on device: AH00023: Couldn’t create the rewrite-map mutex AH00016: Configuration Failed   당장 처리 아파치 구동 유저가 “nobody”라는 가정 하에… ipcs -s |grep nobody|awk ‘{print $2}’ |xargs ipcrm -s 이후 아파치를 실행해 보면 정상 구동 될 것이다.   원인 리눅스의 세마포어(semaphore)와 관련이 있다.. 제한된 자원 할당량에 의해 더이상 자원을 사용하지 못한다고 생각 하면 될듯…   사용 현황 확인 # ipcs -s —— Semaphore Arrays ——– key semid owner perms nsems 0x00000000 236847104 root 666 1 0x00000000 236879873 root 666 1 0x00000000 236912642 nobody 600 1 0x00000000 236945411 nobody 600 1 0x00000000 87293956 nobody 600 1 0x00000000 87326725 nobody 600 1 [ more… ]

No Image

pulseaudio [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수

2016-12-20 KENNETH 0

OS : CentOS7 증상 : 리눅스 데스크탑에서 갑자기 유투브 재생이 안됨.. 탐색바를 확인하니 영상의 정지화면은 한컷씩 나오는 상태   관련 로그 log file : /var/log/message Dec 20 13:43:56 office pulseaudio[1881]: [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수 Dec 20 13:43:56 office pulseaudio[1881]: [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수 Dec 20 13:44:24 office pulseaudio[1881]: [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수 Dec 20 13:44:24 office pulseaudio[1881]: [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수 Dec 20 13:44:42 office pulseaudio[1881]: [alsa-sink-VT1708S Analog] alsa-sink.c: Error opening PCM device front:0: 부적절한 인수   pulseaudio 재시작 해줌… 원래 구동상태 ps -ef|grep pulseaudio choilha 1881 1 0 12월01 ? 00:59:26 /usr/bin/pulseaudio –start –log-target=syslog   죽이고 재시작 13:48:40 $ /usr/bin/pulseaudio –kill 13:49:14 $ /usr/bin/pulseaudio –start –log-target=syslog   이후 로그 정상, 영상 재생 정상…