This file contains 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
<select name="DropDownTimezone" id="DropDownTimezone"> | |
<option value="-12.0">(GMT -12:00) Eniwetok, Kwajalein</option> | |
<option value="-11.0">(GMT -11:00) Midway Island, Samoa</option> | |
<option value="-10.0">(GMT -10:00) Hawaii</option> | |
<option value="-9.0">(GMT -9:00) Alaska</option> | |
<option value="-8.0">(GMT -8:00) Pacific Time (US & Canada)</option> | |
<option value="-7.0">(GMT -7:00) Mountain Time (US & Canada)</option> | |
<option value="-6.0">(GMT -6:00) Central Time (US & Canada), Mexico City</option> | |
<option value="-5.0">(GMT -5:00) Eastern Time (US & Canada), Bogota, Lima</option> | |
<option value="-4.0">(GMT -4:00) Atlantic Time (Canada), Caracas, La Paz</option> |
This file contains 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
#Install on each Node | |
$ su | |
#Perl Templating-Toolkit and the Gnu plotting utility to create HTML and graphical reports with the result data set. | |
$ apt-get install gnuplot-nox libtemplate-perl libhtml-template-perl libhtml-template-expr-perl | |
#download Tsung | |
#http://tsung.erlang-projects.org/dist/ |
This file contains 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
sysctl -w fs.file-max=12000500 | |
sysctl -w fs.nr_open=20000500 | |
ulimit -n 4000000 | |
sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000' | |
sysctl -w net.ipv4.tcp_rmem='1024 4096 16384' | |
sysctl -w net.ipv4.tcp_wmem='1024 4096 16384' | |
sysctl -w net.core.rmem_max=16384 | |
sysctl -w net.core.wmem_max=16384 | |
wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb | |
sudo dpkg -i erlang-solutions_1.0_all.deb |
This file contains 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/bash | |
apt-get install libxml2-dev libssl-dev libffi-dev libxslt1-dev python-dev libjpeg-dev | |
pip freeze --local >pipfreeze.txt | |
tr '\n' ' ' < pipfreeze.txt >pipfreeze2.txt | |
pip install --upgrade --force-reinstall `cat pipfreeze2.txt` |