在Linux系統(tǒng)中,可以通過設(shè)置系統(tǒng)服務(wù)或者使用定時任務(wù)來讓服務(wù)器掛機(jī)。以下是兩種常用的方法:
設(shè)置系統(tǒng)服務(wù):
[Unit]
Description=Shutdown the server
[Service]
Type=oneshot
ExecStart=/sbin/shutdown -h now
[Install]
WantedBy=multi-user.target
/etc/systemd/system/
目錄下。sudo systemctl enable shutdown.service
sudo systemctl start shutdown.service
sudo systemctl stop shutdown.service
來取消掛機(jī)操作。使用定時任務(wù):
crontab -e
命令編輯當(dāng)前用戶的定時任務(wù)。0 0 * * 0 /sbin/shutdown -h now
通過以上方法設(shè)置好后,服務(wù)器會在指定時間自動執(zhí)行關(guān)機(jī)操作,實(shí)現(xiàn)掛機(jī)的效果。