zfile修改默认端口号
vim zfile/WEB-INF/classes/application.yml
找到
server:
prot: 8080
把8080改为你想要使用的端口号
zfile设置开机自启
zfile默认是不会开机自启的,需要自行设置
1.vim /etc/systemd/system/zfile.service
在里面写入以下内容:( ExecStart=/root/zfile/bin/start.sh 要填写自己的zfile启动路径)
[Unit]
Description=zfile
After=network.target
[Service]
User=root
Type=forking
RemainAfterExit=yes
ExecStart=/root/zfile/bin/start.sh
#/root/zfile/bin/start.sh是zfile的实际启动路径
[Install]
WantedBy=multi-user.target
启动zfile:systemctl start zfile
设置开机自启:systemctl enable zfile
查看zfile状态:systemctl status zfile
叨叨几句... NOTHING