set logs on siad services
This commit is contained in:
parent
bde39400ae
commit
4e5aca4998
|
@ -80,7 +80,10 @@ To stop it: `systemctl --user stop siad`
|
||||||
|
|
||||||
To check the status of it: `systemctl --user status siad`
|
To check the status of it: `systemctl --user status siad`
|
||||||
|
|
||||||
To check standard err/standard out: `journalctl --user-unit siad`
|
To check standard err/standard out: `journalctl --user-unit siad`. In addition you can add:
|
||||||
|
|
||||||
|
- `-r` to view journal from the newest entry
|
||||||
|
- `-f` to follow and `-n INTEGER` to specify number of lines
|
||||||
|
|
||||||
## Portal Setup
|
## Portal Setup
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,12 @@ Description=siad-upload
|
||||||
Type=simple
|
Type=simple
|
||||||
WorkingDirectory=/home/user/siad-upload
|
WorkingDirectory=/home/user/siad-upload
|
||||||
EnvironmentFile=/home/user/.sia/sia-upload.env
|
EnvironmentFile=/home/user/.sia/sia-upload.env
|
||||||
ExecStart=/home/user/go/bin/siad --api-addr "localhost:9970" --host-addr ":9972" --rpc-addr ":9971"
|
ExecStart=/home/user/go/bin/siad --api-addr "localhost:9970" --rpc-addr ":9971" --host-addr ":9972"
|
||||||
ExecStop=/home/user/go/bin/siac --api-addr "localhost:9970" --host-addr ":9972" --rpc-addr ":9971" stop
|
ExecStop=/home/user/go/bin/siac --addr "localhost:9970" stop
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
|
SyslogIdentifier=siad-upload
|
||||||
|
StandardOutput=file:/home/user/siad-upload/output.log
|
||||||
|
StandardError=file:/home/user/siad-upload/error.log
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=default.target
|
WantedBy=default.target
|
||||||
|
|
|
@ -8,6 +8,9 @@ EnvironmentFile=/home/user/.sia/sia.env
|
||||||
ExecStart=/home/user/go/bin/siad
|
ExecStart=/home/user/go/bin/siad
|
||||||
ExecStop=/home/user/go/bin/siac stop
|
ExecStop=/home/user/go/bin/siac stop
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
|
SyslogIdentifier=siad
|
||||||
|
StandardOutput=file:/home/user/siad/output.log
|
||||||
|
StandardError=file:/home/user/siad/error.log
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=default.target
|
WantedBy=default.target
|
||||||
|
|
Reference in New Issue