39 lines
620 B
Desktop File
39 lines
620 B
Desktop File
[Unit]
|
|
Description=Mond Cryptocurrency Daemon
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
|
|
# 工作目录
|
|
WorkingDirectory=/opt/mond
|
|
|
|
# 执行命令 - 使用配置文件
|
|
ExecStart=/opt/mond/mond --config-file=/etc/mond/params.conf --non-interactive
|
|
|
|
# 重启策略
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
# 用户和组
|
|
User=mond
|
|
Group=mond
|
|
|
|
# 安全设置
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
ReadWritePaths=/var/lib/mond /var/log/mond
|
|
|
|
# 日志设置
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=mond
|
|
|
|
# 资源限制
|
|
LimitNOFILE=65535
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|