/usr/local/mysql/bin/mysqld --user=mysql &
把需要后台执行的命令加入/etc/rc.local 文件
cat /etc/rc.local
使用系统定时任务,让系统在指定时间执行某个后台命令
使用 nohup 命令
nohup [命令] &
e.g.
vim for.sh
# 输入
#!/bin/bash
for ((i=0;i<=1000;i=i+1)) #
do
echo 11 >> /root/for.log
sleep 10s
done
# 执行脚本for.sh
nohup /root/for.sh &