This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/security/limits.conf | |
| * soft nofile 999999 | |
| * hard nofile 999999 | |
| root soft nofile 999999 | |
| root hard nofile 999999 | |
| =========================================================== | |
| # /etc/sysctl.conf | |
| # sysctl for maximum tuning |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # packages CouchDB 0.10.0 on Ubuntu 9.04 | |
| export COUCHDB_ROOT=/vol/cr/couchdb | |
| apt-get update | |
| apt-get upgrade -y | |
| apt-get install -y libmozjs-dev spidermonkey-bin libc6 libcurl3 libicu38 libicu-dev libmozjs0d erlang-nox build-essential curl libcurl4-openssl-dev erlang-dev checkinstall wget | |
| cd /tmp |