blob: 38a901e12de220c9ad6f8143631d30f16073118d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
exec 2>&1
export HOME=/home/bigcouch
exec chpst -u bigcouch /opt/bigcouch/bin/bigcouch
# increase the max. no of open files
# see https://leap.se/code/issues/4935 for details
ulimit -S -n 4096
ulimit -H -n 32768
|