教程网址:https://halo.run/archives/install-with-linux.html(在 Linux 服务器部署 Halo
问题配置:对halo进程的设置文件/etc/systemd/system/halo.service
问题描述:
源文件
[Unit]
Description=Halo Service
Documentation=https://halo.run
After=network-online.target
Wants=network-online.target
[Service]
User=halo
Type=simple
ExecStart=/usr/bin/java -server -Xms256m -Xmx256m -jar YOUR_JAR_PATH
ExecStop=/bin/kill -s QUIT $MAINPID
Restart=always
StandOutput=syslog
StandError=inherit
[Install]
WantedBy=multi-user.target
源文件运行时会导致服务器满负载,而将标粗的注释掉即可正常运行
所以可能这里有些问题
萌新反映一下√