summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/README.md
diff options
context:
space:
mode:
authorLittleVulpix <rinnkazul@gmail.com>2016-07-11 11:34:32 +0200
committerGitHub <noreply@github.com>2016-07-11 11:34:32 +0200
commit88f29aaa9f5d469b52dbd3042e574af4b0f4d024 (patch)
treeceae4a450b4eead27d781ed0204775d5ad948e59 /other/bootstrap_daemon/README.md
parent7dab0400a895cbffcc0cd599590e648127e81142 (diff)
Documentation: SysVInit workaround for <1024 ports
Update the manual to provide a command necessary to open <1024 ports for users on SysVinit
Diffstat (limited to 'other/bootstrap_daemon/README.md')
-rw-r--r--other/bootstrap_daemon/README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/other/bootstrap_daemon/README.md b/other/bootstrap_daemon/README.md
index 93e390ef..7100ec65 100644
--- a/other/bootstrap_daemon/README.md
+++ b/other/bootstrap_daemon/README.md
@@ -142,6 +142,11 @@ Go over everything in the copied `tox-bootstrapd.conf` file. Set options you wan
142 142
143Look at the variable declarations in the beginning of `tox-bootstrapd.sh` init script to see if you need to change anything for it to work on your system. The default values must be fine for most users and we assume that you use those next. 143Look at the variable declarations in the beginning of `tox-bootstrapd.sh` init script to see if you need to change anything for it to work on your system. The default values must be fine for most users and we assume that you use those next.
144 144
145If you have configured the daemon to use any port numbers that are lower than 1024, you need to execute the command below, as by default non-privileged users cannot open ports <1024. The change persists through reboot:
146```sh
147sudo setcap CAP_NET_BIND_SERVICE=+eip /usr/local/bin/tox-bootstrapd
148```
149
145Copy `tox-bootstrapd.sh` init script to `/etc/init.d/tox-bootstrapd` (note the disappearance of ".sh" ending): 150Copy `tox-bootstrapd.sh` init script to `/etc/init.d/tox-bootstrapd` (note the disappearance of ".sh" ending):
146```sh 151```sh
147sudo cp tox-bootstrapd.sh /etc/init.d/tox-bootstrapd 152sudo cp tox-bootstrapd.sh /etc/init.d/tox-bootstrapd