You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having issues getting Whoogle starting up automatically on my vps (Ubuntu, Cloudserver.net). Had some small hick-ups getting it up and running but I got it all working in the end. I need to log in as root user to the vps. (whoogle-search folder is in the root folder)
Only thing I can't seem to get right is the systemd configuration. My current status output is:
● whoogle.service - Whoogle
Loaded: loaded (/usr/lib/systemd/system/whoogle.service; enabled; preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Sun 2025-02-02 06:45:55 UTC; 1s ago
Process: 8155 ExecStart=/usr/bin/python3 /whoogle-search --host 127.0.0.1 --port 5000 (code=exited, status=2)
Main PID: 8155 (code=exited, status=2)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi
I'm having issues getting Whoogle starting up automatically on my vps (Ubuntu, Cloudserver.net). Had some small hick-ups getting it up and running but I got it all working in the end. I need to log in as root user to the vps. (whoogle-search folder is in the root folder)
Only thing I can't seem to get right is the systemd configuration. My current status output is:
● whoogle.service - Whoogle
Loaded: loaded (/usr/lib/systemd/system/whoogle.service; enabled; preset: enabled)
Active: activating (auto-restart) (Result: exit-code) since Sun 2025-02-02 06:45:55 UTC; 1s ago
Process: 8155 ExecStart=/usr/bin/python3 /whoogle-search --host 127.0.0.1 --port 5000 (code=exited, status=2)
Main PID: 8155 (code=exited, status=2)
This is the systemctl I have at the moment:
[Unit]
Description=Whoogle
[Service]
Type=simple
User=root
ExecStart=/usr/bin/python3 /whoogle-search --host 127.0.0.1 --port 5000
ExecReload=/bin/kill -HUP $MAINPID
Restart=always
RestartSec=3
SyslogIdentifier=whoogle
[Install]
WantedBy=multi-user.target
Any help would be much appreciated, thank you :)
Beta Was this translation helpful? Give feedback.
All reactions