Tagged Questions
The upstart tag has no wiki summary.
7
votes
2answers
1k views
Is there benefit to using Monit instead of a basic Upstart setup?
I'm configuring my server to run node.js as a daemon. I've setup Upstart to handle startup and shutdown of node, which works wonderfully. The next step is to make sure that node is restarted if it ...
5
votes
1answer
466 views
Setting memory consumption limits with Upstart
I've recently become quite fond of Upstart. Previously I've been using God, Monit and Bluepill but I don't really like these solutions so I'm giving Upstart a try.
I've been using the Foreman gem to ...
5
votes
5answers
403 views
Upstart init is leaking memory, how do you debug it?
I've got a memory leak in Upstart init process (pid 1), what options I have on debugging it?
EDIT: Suggest me some real tools for this, manually putting printfs or calculating memory allocations by ...
5
votes
1answer
2k views
Need help running Python app as service in Ubuntu with Upstart
I have written a logging application in Python that is meant to start at boot, but I've been unable to start the app with Ubuntu's Upstart init daemon. When run from the terminal with sudo ...
5
votes
2answers
4k views
Upstart calling script (for inserted USB-drive)
I know that Ubuntu (and Fedora) uses Upstart istead of the classical System V init daemon (SysVinit).
I would like to know how to detect when a USB-drive has been inserted, mount it and copy some ...
4
votes
1answer
1k views
upstart logging output enabled
Except doing explicit logging instructions like suggested in http://upstart.ubuntu.com/wiki/Debugging , is there a way to enable output of what is happening with upstart?
What event raised
What ...
3
votes
0answers
63 views
Where do I put non-Ruby files in my gem?
I want to put an Upstart config file in my Ruby gem. Here's my current best guess
Gem::Specification.new do |s|
# ...
s.files = %w(
lib/rt_watchdog.rb
lib/upstart/rt_watchdog.conf
...
2
votes
1answer
51 views
node.js main process killed by ABRT signal, but not caught by process.on(“SIGABRT”,…)
I'm using upstart to launch a daemon to run a node.js (using express and connect-redis) http and https server (in the same node .js file) per
...
2
votes
2answers
59 views
Starting multiple upstart instances automatically
We use PHP gearman workers to run various tasks in parallel. Everything works just fine, and I have silly little shell script to spin them up when I want them. Being a programmer (and therefore ...
2
votes
4answers
470 views
ubuntu: start (upstart) second instance of mongodb
the standard upstart script that comes with mongodb works fine:
# Ubuntu upstart file at /etc/init/mongodb.conf
limit nofile 20000 20000
kill timeout 300 # wait 300s between SIGTERM and SIGKILL.
...
2
votes
2answers
285 views
Socket.io startup output kills Upstart script for node.js daemon
I have a Node script that uses Socket.io to broadcast messages to connected clients. I want to run it as a background process with an Upstart script. I can start the daemon with sudo start my_server ...
2
votes
1answer
580 views
ubuntu upstart not respawning the daemon despite respawn in the config file
I have problems with my deamon restart. upstart is not spawning the daemon when the daemon crashes.
here is my upstart init file .
pls advise.
description "bezkon watch dog"
start on runlevel ...
2
votes
2answers
317 views
How do I setup an init.d rc script for a Daemon-kit project?
I am using the Ruby Daemon-kit to setup a services that does various background operations for my Rails application.
It works fine when I call in on the commandline:
./bin/bgservice
How do I go ...
2
votes
2answers
722 views
Process monitoring - Python/Ubuntu/Linux
I have a few processes I need to run in deamon mode, I just discovered upstart so I am starting to use it.
Are there any python libraries or applications that I could use to monitor and control ...
2
votes
1answer
496 views
CWD of an Node.js application started with upstart (Ubuntu)
I've coded an node.js app that when get executed need to return CWD from process to be able to read files on disk.
When I start the app directly with node in the actual app directory...
#!sh
...
1
vote
1answer
135 views
Running Redis in daemonized form and using Upstart to manage it doesn't work
I've written an Upstart script for Redis as follows:
description "Redis Server"
start on runlevel [2345]
stop on shutdown
expect daemon
exec sudo -u redis /usr/local/bin/redis-server ...
1
vote
0answers
44 views
Passing an environment variable when fetching a dbus object instance through python
I am using python to determine the status of an upstart job on Ubuntu.
I've recently changed the upstart job so that it has an Instance stanza as such: instance $some_var. As expected, my code no ...
1
vote
1answer
54 views
Tornadoweb webapp cannot be managed via upstart
Few days ago I found out that my webapp wrote ontop of the tornadoweb framework doesn't stop or restart via upstart. Upstart just hangs and doesn't do anything.
I investigated the issue and found ...
1
vote
3answers
302 views
Ubuntu 8.04 Hardy and node.js upstart script
I am trying to write an upstart script for my ubuntu machine, which is version 8.04 "Hardy". I have followed the instructions on this site: upstart for node.js but it seems like these instructions ...
1
vote
1answer
128 views
Considerations for building SysV or Upstart compatible Bash scripts
I've just knocked out a quick script for keeping a slave web server in sync with a master using rsync. (https://github.com/simonjgreen/liveFolderSync/blob/master/liveFolderSync.sh)
I'd like to make ...
1
vote
2answers
509 views
how to start an application as soon as the x start up in ubuntu?
I want to run a gui application as soon as x startup in ubuntu,
I found upstart may work,so I create a conf file inside /etc/init/
but it seems that it cann't work correctly.
myjob.conf
start on ...
1
vote
3answers
2k views
flush output in Bourne Shell
I use echo in Upstart scripts to log things:
script
echo "main: some data" >> log
end script
post-start script
echo "post-start: another data" >> log
end script
Now these two ...
0
votes
1answer
40 views
Upstart env stanza not setting environment variables (like NODE_ENV) for Node.js application
I have an Upstart script for my server that looks like this:
description "myapp node.js server"
start on runlevel [2345]
stop on shutdown
env NODE_ENV=production
env CUSTOM=somevalue
exec sudo -u ...
0
votes
0answers
16 views
starting sshd on first connection to port 22 with upstart's new socket bridge [closed]
Recent Upstart has these new fancy systemd-like features of starting jobs on sockets. I'd like to start my sshd upon first connection to port 22.
I now have:
start on socket PROTO=inet PORT=22 in my ...
0
votes
0answers
54 views
Unicorn and upstart
I'm having a hard time writing an upstart configuration file to start (and keep alive) the unicorn web server on a Ubuntu box.
How should I set the respawn and expect parameters? With respawn enabled ...
0
votes
2answers
37 views
Upstart `unicorn` with umask ignored
I'm using upstart v1.4 to start my application server, it's called unicorn.
The upstart configuration file looks like this:
description "Unicorn Application Server"
start on network
stop on ...
0
votes
1answer
29 views
Upstart not respawning daemon
I have a daemon written in C which uses the daemon() call.
I want upstart to respawn this should it fail unexpectedly.
I'm using a fairly old version of upstart, 0.3.9, on Ubuntu 8.04.
I created ...
0
votes
1answer
21 views
How can I ensure that a “bind” filesystem is mounted after its parent filesystem?
I have recently added a couple of entries to my fstab to allow me to rebind some directories to elsewhere in my filesystem tree, like this
/mnt/smb/foo/bar /home/mishagale/sourcecode/bar bind ...
0
votes
1answer
88 views
Foreman not working with NGINX
I'm trying to use Foreman (version 0.31.0) to manage our application's processes but I'm not having much luck with nginx (nginx/1.0.10 + Phusion Passenger 3.0.11).
Here's the relevant line from my ...
0
votes
1answer
51 views
Running a node.js app with upstart and Procfile
I have a node.js application.
I have written a Procfile with the following contents.
subscription-engine-processor: node index.js
Not sure whether i am doing it right, but i tried running it with ...
0
votes
1answer
27 views
How do I limit how much cpu a process can use with upstart [closed]
I want to limit the amount of processor power my sheduled jobs (Resque for a Rails application) use and I found this upstart that seems promising and might do what I want:
...
0
votes
0answers
152 views
Using Upstart to manage Unicorn w/ rbenv + bundler binstubs w/ ruby-local-exec shebang
Alright, this is melting my brain. It might have something to do with the fact that I don't understand Upstart as well as I should. Sorry in advance for the long question.
I'm trying to use Upstart ...
0
votes
1answer
49 views
Process logging binary data to log file
I'm starting a node process with the following upstart script, logging stdout & stderr into separate files:
script
sudo -u node /usr/local/bin/node /var/node/services/someServer.js 1> ...
0
votes
0answers
21 views
XOpenWindow in an upstart job
i'm trying to get the time the user was idle on an XUbuntu 11.10 machine. The following C-Program prints out that time in ms:
#include <stdio.h>
#include <X11/extensions/scrnsaver.h>
...
0
votes
2answers
74 views
MongoDB - Permission denied for socket: /tmp/mongodb-27017.sock
I had an unclean shutdown of MongoDB on Ubuntu 10.04 LTS. Now when I login as root and run Mongodb via service mongodb start, I get below error-
Mon Dec 12 13:53:15 [initandlisten] ERROR: listen(): ...
0
votes
0answers
68 views
Puppet and upstart not being “functional” [closed]
I have a Ubuntu oneiric host running on Amazon EC2. I want to manage this and other identical hosts with Puppet. Among the things it needs to do is keep a particular custom service running, for which ...
0
votes
1answer
96 views
capturing stdout from python in an upstart job
I'm struggling to save the stdout output of a python2.6 script into a file when I run it as an upstart job.
This is my current test script:
#!/usr/bin/python
from time import sleep
import sys
while ...
0
votes
0answers
108 views
How can upstart execute arbitrary shell script code to stop a service?
It is relatively straightforward to have upstart execute arbitrary shell code to start a service on Ubuntu/Debian: you just put it inside a script ... end script stanza. I want to have a similar ...
0
votes
1answer
104 views
Chef recipe: Upstart daemon not starting with Ruby
I'd like to run a ruby mongrel script as the last step of my provisioning system (CHEF). Therefore I wrote an upstart .conf file with the following entries:
#!upstart
description "mongrel server"
...
0
votes
1answer
121 views
Restarting a job (upstart) in a php script
I am currently writing the admin portal for my most recent project. I have been fighting with my computer to get upstart working, and now that it is, I wanted to be able to operate upstart from the ...
0
votes
1answer
314 views
Ubuntu upstart won't respawn
This is a problem I've experienced on Ubuntu 11.04, with the two upstart scripts I've made, for Node and Nginx. I'll use Node here as the example. I'm using a fairly standard setup as on tutorials ...
0
votes
0answers
128 views
upstart not respawning the daemon when it dies
upstart is not respawning the daemon when it dies. I am testing it by killing it with "kill command" is there any thing wrong with this config file ?
#bezkon upstart integration file
description ...
0
votes
2answers
269 views
Upstart or Cron for neverending python background process in Ubuntu?
I have a simple little mail queue in Python that I want to run as a neverending background process. I'm on Ubuntu 10.04 and started down the cron route but have been reading some encouragement for ...
0
votes
2answers
645 views
Upstart problem with virtualenv - Python/Ubuntu
I'm using upstart in order to start this script:
pre-start script
sudo export WORKON_HOME=~/.envs
sudo source /usr/local/bin/virtualenvwrapper.sh
sudo workon env1
end script
start on ...
0
votes
2answers
1k views
How do I add another run level (level 7) in Ubuntu?
Ubuntu has 8 run levels (0-6 and S), I want to add the run level 7.
I have done the following:
1.- Created the folder /etc/rc7.d/, which contains some symbolic links to /etc/init.d/
2.- Created the ...