方法一
将启动命令写到系统启动时会自动调用的脚本中
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/mysqldchown root.root /etc/rc.d/init.d/mysqld chmod 755 /etc/rc.d/init.d/mysqld chkconfig --add mysqld chkconfig --list mysqldchkconfig --levels 245 mysqld off
时间: 2024-10-08 17:30:07