发表更新几秒读完 (大约56个字)
Odoo14 systemd service模板
Odoo14 systemd service 模板
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| [Unit] Description=odoo14 Requires=postgresql.service After=network.target postgresql.service
[Service] Type=simple SyslogIdentifier=odoo14 PermissionsStartOnly=true User=your_user Group=your_user ExecStart=/your/python/path/python3 /your/odoo/path/odoo-bin -c /your/odoo/config/path/odoo.config StandardOutput=journal+console
[Install] WantedBy=multi-user.target
|