Upon boot, I am having to execute the following commands using "root" to
allow users to connect via NIS. I'd prefer that this be done
automatically on boot.
domainname in
service ypbind start
service autofs start
Why is this not started by default?
Below are additional details surrounding the problem:
[root]# chkconfig --list ypbind
ypbind 0

ff 1

ff 2

n 3

n 4

n 5

n 6

ff
[root]# service ypbind status
ypbind is stopped
[root]# chkconfig --list autofs
autofs 0

ff 1

ff 2

ff 3

n 4

n 5

n 6

ff
[root]# service autofs status
Configured Mount Points:
------------------------
Active Mount Points:
--------------------
Inside my /etc/yp.conf file, I have the following (the NIS server has
been renamed for this post):
domain in server my.nis.server.com
Inside my /etc/hosts file, I have mapped an IP address to the NIS server.
Inside my /etc/inittab file, I have:
id:5:initdefault:
To take a stab in the dark, it appears that since "domainname" is not
getting set that the ypbind and autofs services are failing to start.
However, I thought by configuring the yp.conf file would fix this.
Help?