I'm setting up on a BeagleBone Black Rev C running Debian and following along with the book where I can.
I should mentions I installed web2py using apt-get and my Debian is Wheezy.
I never use the desktop on my BBB, so I want everything to work without GUI.
|
| DAEMON_DIR=/usr/lib/$NAME |
|
with
|
| DAEMON_DIR=/usr/share/$NAME |
|
when I run that /etc/init.d/web2py start I get all the same GTK errors when I try to run it from the CLI without specifying a password. So, just to try this out, I modified
|
| DAEMON_ARGS="web2py.py --password=<recycle> --pid_filename=$PIDFILE" |
|
to have ALL the CLI argument I passed when I was able to run it manually.
DAEMON_ARGS=("web2py.py --nogui -a 'password' -i 192.168.1.100 -p 8000 " +
"-c /usr/share/ssl-cert/server.crt -k /usr/share/ssl-cert/ssl/server.key" +
" --pid_filename=$PIDFILE")
I even added in --nogui for safe measure, but i'm still getting the GTK errors when I run /etc/init.d/web2py start.
Any suggestions or pointers for more information would be very helpful.
Thanks,
-p