Tagged Questions
3
votes
2answers
148 views
Why can't I run this python script as a job in ubuntu 12.04?
Normally I do this:
cd /home/ubuntu/project/beta
python default.py -dev
In order to start the web.py server
I would prefer to do this:
sudo start beta
Here is my /etc/init/beta.conf
setuid ...
0
votes
1answer
128 views
Upstart can't determine my process' pid
I'm writing an upstart script for a small service I've written for my colleagues. My upstart job can start the service, but when it does it only outputs queryqueue start/running; note the lack of a ...
0
votes
2answers
283 views
Python script stops responding when run for a long time
I am running a python script as a service in Ubuntu 11.10(using upstart for that). When started, the script runs fine and responds as expected. But after the script is running in background for long ...
1
vote
0answers
213 views
Run python script as a service on Ubuntu 11.10
I am facing the following problem. I want to run a python script as a service on Ubuntu 11.10 system (already mentioned in the following link:
...
1
vote
1answer
411 views
Is there a way to force pid in upstart script
I am running a uwsgi-python server under ubuntu 10.04. I use upstart to start/stop a uwsgi daemon(daemonize option is set for uwsgi).
Start and stop commands work fine, but when i try to reload my ...