Jonathan Chong wrote:
I think we're getting somewhere. I have this file: -rw-r--r-- 1 root root 392 Dec 10 2004 /etc/xinetd.d/sgi_fam But when I try to run it, it tells me permission denied.
That's because it's not a script. It's a configuration file. Use "chkconfig" to make sure that all of the services are running: chkconfig --list #shows you all of your services chkconfig --list portmap chkconfig --list xinetd chkconfig --list sgi_fam If they're not "on" in your runlevel, turn them on: chkconfig portmap on chkconfig xinetd on chkconfig sgi_fam on If you need to start one, use the "service" command: service portmap start service xinetd start "service" isn't used for xinetd services. xinetd will run those on demand.
I've changed the permissions of the file to 777. Now when I try to run it, I get this error:
Undo that. ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
