You are here

Linux

Fix Apache - No space left on device: Couldn't create accept lock or Cannot create SSLMutex

When dealing with mem-leaks in my mod_perl-apps I ran into a curious apache-problem. After a while apache could not be started but failed with strange errors like:

[emerg] (28)No space left on device: Couldn't create accept lock

or

[crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed

or

[Wed Dec 07 00:00:09 2005] [error] (28)No space left on device: Cannot create SSLMutex

Tags: 

generate Secure ssh Key for remote ssh login / git

Goal: connect to a remote server by ssh keys (without a password)

on your local computer:

openssl genrsa -rand /dev/random -out id_rsa 2048

then get the public key:

openssl rsa -pubout -in id_rsa -out id_rsa.pub

put those 2 files in your ~/.ssh folder

Tags: 
Subscribe to RSS - Linux