29 lines
487 B
Markdown
29 lines
487 B
Markdown
# systemd
|
|
|
|
## Services
|
|
|
|
**Creating an sevice:**
|
|
|
|
``` bash
|
|
#/etc/systemd/system/myservice.service
|
|
[Unit]
|
|
Description=My Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=always
|
|
ExecStart=/usr/local/bin/myservice
|
|
|
|
[Service]
|
|
WorkingDirectory=/var/www/netcore/hellomvc
|
|
ExecStart=/usr/local/bin/dotnet /var/www/netcore/hellomvc/hellomvc2.dll --urls="http://*:5049"
|
|
Restart=always
|
|
RestartSec=10
|
|
SyslogIdentifier=dotnet-example
|
|
User=www-data
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
```
|