Questions tagged [systemctl]
The systemctl tag has no summary.
126 questions
1
vote
1
answer
55
views
Pulseaudio log spam: "connection died"
Output like this is spammed to my system log every second:
Nov 20 14:50:37.549052 nova pulseaudio[1211]: Created 252851 "Native client (UNIX socket client)"
Nov 20 14:50:37.549090 nova ...
0
votes
2
answers
156
views
Why is systemctl service running on startup despite being disabled?
I installed pihole-FTL on my Arch Linux system, but was having configuration issues and had to focus elsewhere, so I disabled the service (with systemctl disable pihole-FTL).
I've since rebooted, and ...
4
votes
2
answers
822
views
Why is netdata on my Linux server no longer starting, with a strange error message?
For a couple of months, netdata on my Linux server (OpenSuSE Leap 15.6) no longer starts. Half a minute after a manual systemctl restart netdata, a systemctl status netdata gives me this:
● netdata....
2
votes
1
answer
79
views
How do I commit changes as part of Systemd service?
I am on Debian 12 with Etckeeper and OpenVPN running as a service. If I manually start/stop openVPN, it modifies few files, including /etc/resolv.conf. I would like to run a script to automatically ...
2
votes
1
answer
74
views
Linux service can only do network request, if restarted with sudo priviledges?
I have a linux service, that runs a program which does network requests, file reads and writes and so on.
However, for some reason, it seems that it cannot do a network request to a foreign website, ...
0
votes
2
answers
340
views
Using sshpass but still being asked for password
I've written a small bash script that takes two parameters for DESTINATION IP address and PASSWORD then calls commands like:
sshpass -p "$PASSWORD" ssh -p 2022 "username@$DESTINATION&...
1
vote
0
answers
191
views
Why does a RHEL systemctl service shows significantly more memory usage than the PID of a process?
We have 342 RHEL 8.6 machines and all machines are with the same situation when systemctl service takes much more memory then the PID itself :
systemctl status presto.service
● presto.service - ...
0
votes
0
answers
361
views
Getting 'unrecognized service' error when trying to enable service listed by systemd
System info below.
I have created a service by creating /etc/systemd/system/unison-PaperPortDocs.service. When I run "systemctl --all list-unit-files 'unison*' I see the following list:
> ...
2
votes
1
answer
339
views
How does symlink from shutdown to systemctl work?
which shutdown
returns
/usr/bin/shutdown
I also tried sudo which shutdown just in case...but got the same result.
I can see that
lrwxrwxrwx 1 root root 9 Dec 13 03:38 /usr/bin/shutdown -> ...
1
vote
1
answer
1k
views
Flags for `systemctl reboot`?
I'm having trouble finding the systemd unit file for reboot. I would like to explore the options I can pass to sudo systemctl reboot, but am having trouble finding documentation or implementation to ...
0
votes
0
answers
1k
views
Debian can't wake up after suspend
After some time my system suspending. After the system has suspended itself I can't wake up the computer.
I use Debian 12 and KDE.
How to fix that?
2
votes
1
answer
2k
views
How do I re-time a periodic MD RAID check to get it started sometime else?
I've got an MD RAID (level 10) on my SOHO server (running OpenSuSE 15.5), which undergoes a lengthy check (> 3 hours for some 1 TB net) every Sunday at 1:00 AM local time. As the server does not ...
0
votes
1
answer
1k
views
High CPU usage when starting process with systemd
I have this service file:
[Unit]
Description=MyService
[Service]
User=root
WorkingDirectory=/path/to/workingdir
ExecStart=/path/to/myservice
[Install]
WantedBy=multi-user.target
When I start ...
-3
votes
2
answers
3k
views
bind9 dont start On Kali Linux
when I install bind9 on Kali Linux,cant start or stop it. when use systemctl status bind9.service for view status it, I see message that say Unit bind9.service could not be found.
root@sarvdata:~# ...
1
vote
1
answer
172
views
How to define command line options in my sql systemctl service
I have a mysql install on Digital ocean cloud.
And by default it's working with system ctl service.
I need to run the server with those options :
That have taken from here.
So I've tried to edit this ...