11 October 2011

LINUX - su: incorrect password

The problem is that "su" has to be suid in order to read from the shadow file of your system to verify the password you have given. 

By issuing "chmod 777 *" you deleted the suid bit (777 = 0777). 

You have to reset this bit by executing "chmod 4755 /bin/su".

APACHE - failed to start

[On] Red Hat Enterprise Linux Server release 7.4 (Maipo) Apache was not running and attempt to start the httpd service failed. The natural t...