Linux设置某软件开机自动启动的方法
方法一
将启动命令写到系统启动时会自动调用的脚本中
echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.d/rc.local
方法二
有些软件源代码包中提供了启动脚本,放到Linux默认的启动脚本目录中
cp /lamp/mysql-5.0.41/support-files/mysql.server /etc/rc.d/init.d/mysqld
chown root.root /etc/rc.d/init.d/mysqld
chmod 755 /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
chkconfig --list mysqld
chkconfig --levels 245 mysqld off
KEEP LEARNING!