我正在使用fedora 15.
我試圖添加MYSql守護進程在系統strtup期間啟動.
我已經明白我必須將它添加到rc5.d,因為它是默認目標&是graphical.target.
來自inittab:
systemd uses ‘targets’ instead of runlevels. By default, there are two main targets:
multi-user.target: analogous to runlevel 3
graphical.target: analogous to runlevel 5
When the system is shut down, there is another symlink in the /etc/rc0.d and /etc/rc6.d directories (halt and reboot, respectively) that starts with a K instead of an S, which tells init to shut down the process.
我注意到httpd的符號鏈接存在于所有rc< number> .d文件夾中
作為符號鏈接:K15httpd – > ../init.d/httpd.
沒有以S開頭的符號鏈接.因為我必須手動啟動它才有意義.
Why is the symlink K15httpd -> ../init.d/httpd present in all the rc.d folders?
What should I name the symlink if I want to start httpd during system startup?
What is the number that is present in the symlink? i.e. K15httpd -> ../init.d/httpd what is 15 here?
I read (07001) that the symlink to MYSql should be S98mysql is it right and what should the name to symlink that starts with K should be?