I’m having trouble finding where SequenceServer puts its logs when run normally or with -D when run as a service on Ubuntu. Doesn’t appear to output .log files anywhere, or ones with detail in systemctl status or journal.
Any help would be appreciated. It freezes/crashes every now and then, but I can’t tell why
In my case, if I run it like:
/usr/local/bin/sequenceserver -c /etc/sequenceserver/sequenceserver.conf
I see it in the stdout, and if I run it as a systemd service I can access its logs with journactl
[Unit]
Description=SequenceServer server daemon
Documentation=“file://sequenceserver --help” “Configuring and customizing a SequenceServer BLAST”
After=network.target[Service]
Type=simple
User=x2seqservuse
ExecStart=/usr/local/bin/sequenceserver -c /etc/sequenceserver/sequenceserver.conf
KillMode=process
Restart=on-failure
RestartSec=42s
RestartPreventExitStatus=255[Install]
WantedBy=multi-user.target
Could you please share the systemd conf?