The init.d directory contains a number of start/stop scripts for various services on a Linux system.
0
votes
0answers
13 views
Apache init.d script
I have the following script to start, stop, restart apache2 in my debian 7
#!/bin/sh
### BEGIN INIT INFO
# Provides: apache2
# Required-Start: $all
# Required-Stop: $all
# ...
0
votes
3answers
41 views
How can I check if init script called on startup?
I have a init script on FreeBSD. This script called on startup by rc.d. What I want to do that to check if this script called on start up or manually by user. How can I do this check in this script. ...
0
votes
2answers
34 views
Storing PID of the script which is being called by another script
I am a total newbie with shell scripting and have been trying write some and get my simple application running. Although I am able to start the application, I cant stop or restart it, because it is ...
0
votes
1answer
35 views
Using Chef to restart Mongrel cluster via init.d script
I'm using Chef to manage deployments of a Rails application running with Mongrel cluster.
My init.d file is very simple. Here's the case for a restart:
restart)
sudo su -l myuser -c "cd ...
0
votes
2answers
68 views
what is start-stop-daemon in linux scripting?
what is start-stop-daemon and how to use it??
I am trying to automate a particular program to run.Whenever the system starts,its should run.
For that I am writing script in "/etc/init.d/" location
0
votes
1answer
42 views
Why is my startup script not running
Per various tutorials I've done the following:
created a file called ftpserver.py in /home/root/
created a file in /etc/init.d/ called ftpserver that looks like this"
#!/bin/sh
python ...
1
vote
0answers
47 views
Starting and stopping a daemon containing kernel threads
I want to run a c++ program that is using POSIX threads on openSUSE 12 as a daemon, and be able start, stop and restart it as a service with a normal init.d script based on this template: ...
-1
votes
1answer
73 views
rvm init.d script [closed]
I currentyl have ruby 1.8.7 setup with rvm. Currently everything is working with rvmsudo, however I need an init.d script that can run the following:
rvmsudo /var/rails/sandbox/script/server -p 8080 ...
0
votes
0answers
32 views
Cant run program at lonon on ubuntu 12.04 [closed]
I am building a program in ubuntu for voice authentication login.
What I am trying to do is, after the login screen, I want to call my program and until the voice authentication succeeds the program ...
0
votes
2answers
44 views
capturing init script output in a variable
I'm trying to capture the output of an init script into a variable but in this case it's not very straightforward because the init script is using log_daemon_msg and log_failure_msg. Why does the ...
0
votes
0answers
36 views
Automatic daemon dependency satisfaction in debian
I'm packaging several daemon services for debian. Currently they all install correctly in /etc/ with insserv and dh_installinit.
These daemons may depend on each other, and may depend on other ...
0
votes
1answer
100 views
Init.d script causing boot hang [closed]
I successfully installed a script to automatically launch in /etc/init.d on my new Raspberry Pi.
Unfortunately, it is a node.js app that never returns, and therefore hangs the device during boot ...
0
votes
0answers
15 views
Is it possible to have a dynamic Provides in an init script INIT INFO block?
I've got several apps that are based off the same code base and have identical start up scripts except for the name of the daemon and the Provides value in the INIT INFO block in their init.d scripts. ...
0
votes
0answers
62 views
How to implement a maintenance page in nginx when the backend service is running on a different machine?
I am looking for a clena and simple solution that would enable nginx to display a maintenance page while the backend proxy is restarted (not dead!).
Here are some facts, nginx is running on another ...
0
votes
0answers
62 views
Upstart or Classic init.d script for an app with potentially many processes?
so I am tackling creating a Daemon for the first time, and I cannot decide whether to do it with upstart or with a classic init.d script. My program is a little bit unconventional, in the fact that ...
3
votes
1answer
71 views
Is there a way to know where init scripts in Linux are stored?
As I asked in the title, I'm looking for a script/command to find the correct directory (usually /etc/init.d or /etc/rc.d/init.d).
Right now I'm using
dirname `find / -name acpid 2> /dev/null ...
0
votes
1answer
255 views
Start play2 application as a background task with daemon
I've been trying to write a startup script for my play2 application but I can't get it to work as a background task. I started out at the docs and came up with the script below.
Script:
#! /bin/sh
...
1
vote
2answers
1k views
Daemonizing a python script in debian
I have a python script that i want to run in the background on startup. This is the script:
#!/usr/bin/python
from Adafruit_CharLCD import Adafruit_CharLCD
from subprocess import *
from time import ...
0
votes
0answers
57 views
Hive server init.d
I've installed hive-0.9.0 from tarball since I'm using CDH3. Now I need script for /etc/init.d for Hive server. Where can I get it?
0
votes
1answer
89 views
init.d script in debian limiting command outputs
I have written a monitor script for tomcat which checks if tomcat/bin/bootstrap.jar is running.
ps ax -o cmd|grep tomcat/bin/bootstrap.jar |grep -v grep | awk {'print $1'}
This command works fine ...
1
vote
2answers
474 views
init.d script generator for ruby processes?
I have some ruby processes, and for development I've been using foreman to manage the processes, now in production I want to export the processes and run it in /etc/init.d directory.
Is there any ...
1
vote
3answers
132 views
Odd behavior with Perl system() command
Note that I'm aware that this is probably not the best or most optimal way to do this but I've run into this somewhere before and I'm curious as to the answer.
I have a perl script that is called ...
1
vote
1answer
350 views
init.d file/script to chmod and chown a certain file [closed]
I'm trying to make an Init.d file in order to run these commands when android boots but I am not sure what the proper formatting would be?
Putting them in a file like that did not have any effect.
...
1
vote
2answers
663 views
How to run a shell script at startup
On an amazon linux instance, I have two scripts called start_my_app and stop_my_app which start and stop forever (which in turn run my node.js app). I use these scripts to manually start and stop my ...
0
votes
0answers
132 views
Init script hangs for rabbitmq daemon
I am running a rabbitmq-server version 2.8.7-1
Init script works fine sometimes and it simply hangs sometimes even when checking status.
Running a strace shows it stops at wait4(-1 checking status..
...
0
votes
1answer
234 views
init.d script for running second mysql server fails [closed]
I have 2 mysql servers, one is set with all the mysql defaults (port,socket, etc.) and the second is set to port 3307 and a different socket with defaults file called my-dev.cnf .
when i run:
...
3
votes
1answer
566 views
Puppet init script doesn't create the pid file?
CentOS release 5.4 (Final)
puppet-server-2.7.19-1.el5 is installed from the puppetlabs repo.
puppetmaster is started successfull, but it doesn't create the pid file. It is the reason for [ FAILED ] ...
2
votes
1answer
145 views
Init scripts for Twiggy-based PSGI apps
I'm looking for a way to manage several Twiggy instances listening on different ports via a simple config file and a standard interface.
E.g. I want a config that looks like
dog 5000 ...
0
votes
2answers
96 views
PHP Restart Lighttpd doesn't return
I have a php script which needs to restart lighttpd. The php page never returns to the client. I believe that is because the call doesn't return. Here is my code:
<?php
...
0
votes
2answers
462 views
kill all subprocesses of a daemon
I am writing an /etc/init.d/mydaemon:
# ...
source functions # LSB compliant
EXEC=/usr/local/bin/mydaemon
PROG=mydaemon
function start() {
daemon --pidfile=/var/run/mydeamon.pid ${EXEC}
}
...
2
votes
1answer
307 views
dpkg remove to stop processes
I am currently running Ubuntu 12.04. I've created a debian package that currently installs successfully and starts three new processes. I have also made these three processes start at runtime by ...
1
vote
2answers
2k views
update-rc.d and init.d dependencies
So I'm trying to write some init.d scripts satisfying LSB so they run appropriately at startup and shutdown. Unfortunately, I'm having issues with LSB/update-rc.d to satisfy dependencies.
# ...
0
votes
1answer
2k views
cvc-elt.1: Cannot find the declaration of element 'beans' when run using initd
I have the following schema that is used by my activemq broker:-
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core"
...
0
votes
0answers
471 views
init.d doesn't exist
I have a problem with logcat when I connect my galaxy s2. It shows:
unable to open log device '/dev/log/main' no such file or directory
I found a possible solution:
To restore logcat, remove ...
0
votes
2answers
374 views
JBoss Init Script - Trapping issue
I have a script that I'm making to use to start/stop/etc a JBoss AS (v7.1.1). I'm running on SUSE Enterprise 11, so the provided initscript doesn't work. The problem I'm running into with my script is ...
1
vote
2answers
65 views
What does VAR_NAME=${VAR_NAME:-“/some/path/file”} mean
What does VAR_NAME=${VAR_NAME:-"/some/path/file"} mean in an shell script?
This is for an init script, I'm writing a custom one to get some of our startup operations into init scripts so that we can ...
1
vote
2answers
201 views
init script hangs the complete system up
I wrote an init script to execute last that will start some pythjon script. The Python script will just run and never terminate and this makes my little linux box (getty terminal on tty) to just ...
2
votes
1answer
2k views
Add nginx as a ubuntu service stop and reload doesn't work
My nginx was compile from the source, only give the flag that --conf-path=/etc/nginx/nginx.conf
Everything works and I was trying to use this service init.d script to make nginx as a system service,
...
4
votes
1answer
2k views
Restart Node.js App with init.d
I'd like to have an init.d daemon restart my node.js app if it crashes. This script starts/stops my node app. I've had no luck getting it to restart the app if it crashes.
I'm running under CentOS. ...
0
votes
0answers
131 views
couchdb don't start on server reboot
I've using the standard init.d script that comes with CouchDB. I'm using it on Ubuntu.
On server restart, this is printed on local console:
* Starting database server couchdb ...
2
votes
1answer
770 views
Starting Jetty via launch script does not work
I have a problem with starting Jetty via the startup command /etc/init.d/jetty. When I execute the command the following output is generated:
/etc/init.d/jetty start
Starting Jetty servlet engine.:
...
0
votes
1answer
346 views
Bash command substution error
UPDATE:
It doesn't appear to like the brackets:
cat <(fgrep -i -v "$DAEMON_TEST")
throws a syntax error
cat <fgrep -i -v "$DAEMON_TEST"
works
The code:
`cat <(fgrep -i -v ...
2
votes
3answers
504 views
How do I support multiple server.pid files?
I am running play on multiple machines in our datacenter. We loadbalance the hell out of everything. On each play node/VM I'm using Apache and an init.d/play script to start and stop the play service.
...
5
votes
2answers
2k views
Nginx daemon stop is failing
I've got Ubuntu 11.04 i386 server with nginx 1.0.11 installed. Also, I'm using this init.d script, the only one I've found in several different places. It starts the server nicely, however, on ...
1
vote
1answer
185 views
Automated start of a x-server and own service
I'm currently developing on a automated info-system which is based on a self-written node-service which is also starting a firefox. This system should run in ubuntu without any controlling of anyone.
...
1
vote
1answer
351 views
init.d script for OpenXCAP on CentOS 6
I'm somewhat new to Linux and OpenXCAP and I'm trying to make an init.d script for OpenXCAP on CentOS 6.
My script can start and stop OpenXCAP service, but it returns this error for the status ...
16
votes
6answers
7k views
How can I log the stdout of a process started by start-stop-daemon?
I am using an init script to run a simple process, which is started with:
start-stop-daemon --start --quiet --chuid $DAEMONUSER \
--make-pidfile --pidfile $PIDFILE --background \
...
0
votes
0answers
1k views
how to change cpugovernor using init.d script?
I wrote an init.d script to change governor on boot-time.I named the script as 10cpufreq and gave 777 permission to it.I am not able to see the changes though i gave all the permissions to script .Is ...
4
votes
2answers
5k views
Call to daemon in a /etc/init.d script is blocking, not running in background
I have a Perl script that I want to daemonize. Basically this perl script will read a directory every 30 seconds, read the files that it finds and then process the data. To keep it simple here ...
2
votes
1answer
3k views
Init.d script for nginx on Cent OS [closed]
I'm using the init.d script from this: http://wiki.nginx.org/RedHatNginxInitScript but this script sucks on my CentOS 5.5 nginx 1.0.6 (which installed by passenger).
It sucks for 2 reasons:
When I ...



