MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //opt/gitlab/sv/sidekiq/run
#!/bin/sh

cd /var/opt/gitlab/gitlab-rails/working

exec 2>&1
# Setup run directory.
mkdir -p /run/gitlab/sidekiq
rm /run/gitlab/sidekiq/*.db 2> /dev/null
chmod 0700 /run/gitlab/sidekiq
chown git /run/gitlab/sidekiq
export prometheus_run_dir='/run/gitlab/sidekiq'



exec chpst -e /opt/gitlab/etc/gitlab-rails/env -P \
  -U git:git \
  -u git:git \
  /usr/bin/env \
    prometheus_multiproc_dir="${prometheus_run_dir}" \
    /opt/gitlab/embedded/service/gitlab-rails/bin/sidekiq-cluster \
      -e production \
      -r /opt/gitlab/embedded/service/gitlab-rails \
      -m 50 \
      --timeout 25 \
        "*" \

# Do not remove this line; it prevents trouble with the trailing backslashes above.