If you have a bad group error when restarting apache... for example:
Quote:
root@server [/usr/local/apache/conf]# service httpd restart
/etc/init.d/httpd restart: httpd not running, trying to start
httpd: bad group name test01
/etc/init.d/httpd restart: httpd could not be started
|
Simply add the group that is "bad", then restart httpd.
Eg:
Quote:
root@server [/usr/local/apache/conf]# groupadd test01
root@vegas [/usr/local/apache/conf]# service httpd restart
/etc/init.d/httpd restart: httpd not running, trying to start
/etc/init.d/httpd restart: httpd started
root@vegas [/usr/local/apache/conf]#
|