|
FC18 upgrade: Cannot load modules/mod_evasive20.so into server
Hello, this is my first post. I hope it helps someone.
After upgrade to FC18 httpd refuses to start: Cannot load modules/mod_evasive20.so into server
#cd /etc/httpd/conf.d
#vim mod_evasive.conf
I see in Line 2: LoadModule evasive20_module modules/mod_evasive20.so
But the name of the library has changed:
#cd /etc/httpd/modules
#ls -l
...
mod_evasive24.so
...
Come back to mod_evasive.conf and change the library to point to mod_evasive24.so:
#cd /etc/httpd/conf.d
#vim mod_evasive.conf
Change Line 2 to: LoadModule evasive20_module modules/mod_evasive24.so
Now it works:
#service httpd start
don't forget to enable service on startup:
#chkconfig httpd on
|