LoginSignup
1
1

More than 5 years have passed since last update.

No space left on device: AH00023: Couldn't create the rewrite-map mutex

Posted at

apache 再起動しまくってると

No space left on device: AH00023: Couldn't create the rewrite-map mutex

といわれる。

# ipcs -s

------ Semaphore Arrays --------
key        semid      owner      perms      nsems
0x00000000 0          root       600        1
0x00000000 32769      root       600        1
0x00000000 131074     www        600        1
0x00000000 163843     www        600        1
0x00000000 196612     www        600        1
0x00000000 229381     www        600        1
0x00000000 262150     www        600        1
0x00000000 360455     www        600        1

とかでるので、www ユーザーのものを全部削除するために下記コマンド実行

# for i in `ipcs -s | awk '/www/ {print $2}'`; do (ipcrm -s $i); done
#

再度見てみる

#ipcs -s

------ Semaphore Arrays --------
key        semid      owner      perms      nsems
0x00000000 0          root       600        1
0x00000000 32769      root       600        1

全部消えた。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1