cd /etc/rc.d/rc3.d
ln -s /etc/rc.d/init.d/mysqld S98mysql
above was done on fedora 4 which has the same structure as Red Hat.
How does it work? /etc/rc.d/init.d contains scripts to start and stop
services on your computer. By creating a symlink to mysql startup
script in /etc/rc.d/rc3.d you're telling your system to run it during
runlevel 3 startup, which is your regular login. You can also start
and stop your services manually using files in /etc/rc.d/init.d
directly,
--
No comments:
Post a Comment