Questions tagged [service]

A service (also daemon or server) is a programme that constantly runs in the background. It usually services requests. If you are asking about online services, please use a different tag.

A service (also daemon or server) is a programme that constantly runs in the background. It usually services requests. If you are asking about online services, please use a different tag.

1035 questions
0
votes
0 answers

Why is my ubuntu service timing out when I can clearly see it started properly?

Here is my log : Feb 10 10:19:25 ip-172-31-47-29 systemd[1]: Starting TNR Photo Download Service... Feb 10 10:19:26 ip-172-31-47-29 tnr-photos[67938]: Server running on port 2200 Feb 10 10:20:56 ip-172-31-47-29 systemd[1]: tnr-photos.service: start…
Chapo
  • 71
  • 1
  • 8
0
votes
0 answers

How to deal with an ExecStart-script, that backgrounds the actual task and exits?

I'm trying to create a systemd-service for a vendor-provided shell-script, which exits after launching the actual service (a Java-program). I don't want to put the program itself into ExecStart, because the script does a lot of things first (setting…
Mikhail T.
  • 2,338
  • 1
  • 24
  • 55
0
votes
0 answers

Nginx controller in kubernetes cluster is not forwarding curl request to service

My Ingress Controller is not forwarding the request to the service, how can i fix it? I can see that my Ingress is missing addresses, but i do not know why. I have a Kubernetes Cluster running on a 1 master, 2 worker setup on linux servers. I have a…
jergan95
  • 3
  • 4
0
votes
1 answer

curling service inside kubernetes cluster blocked by corporate proxy

I have a Kubernetes Cluster running behind a corporate proxy. I am not using Minikube. I have http_proxy, https_proxy and no_proxy set in //etc/environment. no_proxy has 127.0.0.0 and every node-ip defined. If i try to curl a service with ClusterIP…
jergan95
  • 3
  • 4
0
votes
1 answer

Create init.d Apache service for multiple instances on debian

I am trying to install a second instance of apache on debian. I used the multiple instance script. during the installation it says: root@nextcloudpi:/usr/share/doc/apache2/examples# sudo sh setup-instance suitecrm2 Setting up /etc/apache2-suitecrm2…
Stephane
  • 43
  • 3
0
votes
0 answers

How to check what prevents app to be usable in non-administrative mode?

I have an executable installing a service that I want to run on my server. It is working as expected while Run as administrator. However I don't want to give it the control over the whole server. I would rather limit its permissions to whats…
Rico
  • 143
  • 4
0
votes
1 answer

Why do some services not show up in my "Services" app in windows server 2019?

In the image below, i have several services running, including some ovs services. I found however that when i try to list these services (i was going to try to find their dependencies through the UI), the "Services" application on Windows doesn't…
jayunit100
  • 211
  • 1
  • 9
0
votes
1 answer

Restart the SMTP service after reboot

I am working on a 2008 R2 File server patching, the SMTP service is in Automatic mode but after I get the reboot done it switches to the manual mode and moves to stooped state. How can start the the service with a script or is there any way that it…
0
votes
0 answers

Windows Server 2019 - Audit which human-user who restart a service

Trying to audit which AD-user who actually restart a service on a particular service. The service (MyService) is using a serviceaccount to run and get access to different resources. I want to audit when my user or any actual human user manually…
TheSwede86
  • 21
  • 3
0
votes
1 answer

"service my_service stop" is deemed an error whenever a service is in the "stopped" condition already. How to move on despite an error?

I have a bunch of bash commands that are run via ssh: #!/bin/bash CMD=" set -e cmd1 cmd2 # ........ service my_service stop # ......... # some commands here...... # ......... service my_service start " ssh -t -A -q -C…
karneliy
  • 21
  • 1
  • 5
0
votes
1 answer

Creating a service on Centos 6 causes it to block on startup display

I'm trying to create a service on Centos 6, but it's executing on the startup console instead of in background, which means it never reaches the user interface - it just hangs on the startup display. Here is the service: #!/bin/bash # # run red5…
Jack BeNimble
  • 194
  • 11
0
votes
2 answers

Starting a Windows service fails immediately with error 1053 on Windows Server 2012 R2

It seems we have reached a limit as to how many Windows Services that can be running at a time. We have about 70 running services, when we try to add another we get the 1053 Error. I've tried the fix that adds the ServicesPipeTimeout registry key…
JimDel
  • 297
  • 4
  • 7
  • 13
0
votes
0 answers

I want to monitor SSH with Monit but I got an error

I want to monitor SSH with Monit but I got an error. This setup works with my old Ubuntu 18.04 server but it doesn't work on my new Ubuntu 20.04 server : ubuntu@ov-xxxx ~ $ cd /var ubuntu@ov-xxxx /var $ ls backups cache crash lib local lock …
mathieu
  • 1
  • 2
0
votes
2 answers

Is it possible to rewrite this restart script on one line?

I wonder if it is possible to rewrite this script below on one line? Probably with || ? ps auxw | grep nagios-nrpe-server | grep -v grep > /dev/null if [ $? != 0 ] then /etc/init.d/nagios-nrpe-server start > /dev/null fi I tryed ps auxw |…
Delirium
  • 207
  • 4
  • 11
0
votes
1 answer

systemctl service + how to configure service for boot priority

we have rhel 7.2 machine server have the following service [root@server1 system]# more rc_build_infra.service [Unit] Description=infra Manager Server Requires=network.target remote-fs.target After=network.target…
King David
  • 549
  • 6
  • 20