cannot get upstart to run user job

Posted by dre on Ask Ubuntu See other posts from Ask Ubuntu or by dre
Published on 2012-11-20T13:28:30Z Indexed on 2012/11/26 17:27 UTC
Read the original article Hit count: 334

Filed under:
|

I am trying to get upstart start a user job during the boot of my machine.

I have my conky.conf upstart config file in my $HOME/.init directory. Wenn I run "start conky" I get this error:

dre@dre-laptop:~$ start conky
start: Rejected send message, 1 matched rules; type="method_call", sender=":1.76"
(uid=1000 pid=2843 comm="start conky ") interface="com.ubuntu.Upstart0_6.Job"
member="Start" error name="(unset)" requested_reply="0"
destination="com.ubuntu.Upstart" (uid=0 pid=1 comm="/sbin/init")
dre@dre-laptop:~$ 

I (think I) know that this error has to do with the d-bus system (authentification). I also read (http://upstart.ubuntu.com/cookbook/#id96) that ubuntu 12.10 already has the right configuration in the d-bus config file "/etc/dbus-1/system.d/Upstart.conf" to allow normal users to use upstart.

dre@dre-laptop:~/.init$ cat conky.conf 

description "conky, a system monitor appled"

start on lightdm
stop on shutdown

# Automatically restart process if crashed
respawn

# Essentially lets upstart know the process will detach itself to the background
#expect fork

# Start conky
exec /usr/bin/conky

So, who knows, what do I do wrong???

greetings Andre


No one??? Please... give me your best shot.

© Ask Ubuntu or respective owner

Related posts about upstart

Related posts about dbus

  • Not able to compile dbus-ping-pong

    as seen on Ask Ubuntu - Search for 'Ask Ubuntu'
    I have downloaded files from http://cgit.collabora.com/git/user/alban/dbus-ping-pong.git/tree/ I am trying to compile it using the command gcc pkg-config --libs --cflags dbus-1 dbus-glib-1-2 glib-2.0 -o dbus-ping-pong dbus-ping-pong.c However, I get errors: /tmp/ccmJkxXb.o: In function g_once_init_enter: dbus-ping-pong… >>> More

  • How to find other end of unix socket connection?

    as seen on Server Fault - Search for 'Server Fault'
    I have a process (dbus-daemon) which has many open connection over UNIX sockets. One of these connections is fd #36: =$ ps uw -p 23284 USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND depesz 23284 0.0 0.0 24680 1772 ? Ss 15:25 0:00 /bin/dbus-daemon --fork… >>> More

  • symlink for dbus headers

    as seen on Ask Ubuntu - Search for 'Ask Ubuntu'
    Source code for something that won't compile has the line #include but in real life that header file is in /usr/include/dbus-1.0/ Similarsituation exists for the dbus-c++ package. Why doesn't Ubuntu provide a symlink /usr/include/dbus pointing to the dbus-1.0 directory? Is this an bug in the… >>> More

  • Resetting Update Manager

    as seen on Ask Ubuntu - Search for 'Ask Ubuntu'
    How can I fix Update Manager in 12.04, which hangs when I try to install any update, while sudo apt-get upgrade works fine? I suspect it has something to do with my python installation. This is the error message: Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/defer/__init__… >>> More

  • How to get Webkit Browser DBus Bridge working?

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I've been struggling to get the Browser Dbus Binding working for Webkit/GTK (http://gitorious.org/webkitgtk/stable) port. I have been able to successfully compile the Webkit/GTK port as well as the DBus binding library on my Ubuntu Lucid Beta. I also installed the DBus binding library at the standard… >>> More