toxcore/other/bootstrap_serverdaemon
2014-01-30 15:56:45 -05:00
..
conf Shortened daemon's name 2014-01-25 21:00:31 -05:00
Makefile.inc Shortened daemon's name 2014-01-25 21:00:31 -05:00
README.md Shortened daemon's name 2014-01-25 21:00:31 -05:00
tox_bootstrap_daemon.c Fixed PID forgetfulness. 2014-01-30 15:56:45 -05:00
tox_bootstrap_daemon.sh Shortened daemon's name 2014-01-25 21:00:31 -05:00

##Instructions for Debian

The following commands are to be executed as root:

  1. In tox_bootstrap_daemon.sh file change:
  • CFG to where your config file (conf) will be; read rights required
  • DAEMON to point to the executable
  • PIDFILE to point to a pid file daemon would have rights to create
  1. Go over everything in conf. Make sure pid_file_path matches PIDFILE from tox_bootstrap_daemon.sh

  2. Execute:

mv tox_bootstrap_daemon.sh /etc/init.d/tox_bootstrap_daemon

(note that we removed .sh ending)

  1. Give the right permissions to this file:
chmod 755 /etc/init.d/tox_bootstrap_daemon
  1. Execute:
update-rc.d tox_bootstrap_daemon defaults
  1. Start the service:
service tox_bootstrap_daemon start
  1. Verify that the service is running:
service tox_bootstrap_daemon status

--

You can see daemon's log with

grep "tox_bootstrap_daemon" /var/log/syslog

Note that system log is where you find your public key

--

###Troubleshooting:

  1. Check the log for errors with
grep "tox_bootstrap_daemon" /var/log/syslog
  1. Check that paths in the beginning of /etc/init.d/tox_bootstrap_daemon are valid

  2. Make sure that PIDFILE from /etc/init.d/tox_bootstrap_daemon matches with the pid_file_path from conf

  3. Make sure you have write permission to keys and pid files

  4. Make sure you have read permission for config file