-
-
Save danhantao/9768a61417bd45e425b2 to your computer and use it in GitHub Desktop.
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 gcc | |
apt-get install -y gcc | |
# install make | |
apt-get install -y make | |
# install jdk | |
cd /usr/local/bin/ | |
mkdir java | |
cd java/ | |
wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u11-b12/jdk-8u11-linux-x64.tar.gz | |
tar -zxvf jdk-8u11-linux-x64.tar.gz | |
ln -s jdk1.8.0_11 jdk | |
# config jdk path | |
echo "# setting jdk home" >> /etc/profile | |
echo "export JAVA_HOME=/usr/local/bin/java/jdk" >> /etc/profile | |
echo "export CLASSPATH=.:\$JAVA_HOME/jre/lib/rt.jar:\$JAVA_HOME/lib/dt.jar:\$JAVA_HOME/lib/tools.jar" >> /etc/profile | |
echo "export PATH=\$PATH:\$JAVA_HOME/bin" >> /etc/profile | |
source /etc/profile | |
# install maven | |
cd /usr/local/bin/ | |
mkdir maven | |
cd maven/ | |
wget http://mirror.nus.edu.sg/apache/maven/maven-3/3.2.2/binaries/apache-maven-3.2.2-bin.tar.gz | |
tar -zxvf apache-maven-3.2.2-bin.tar.gz | |
ln -s apache-maven-3.2.2 maven | |
# config maven path | |
echo "# setting maven home" >> /etc/profile | |
echo "export MAVEN_HOME=/usr/local/bin/maven/maven" >> /etc/profile | |
echo "export PATH=\$PATH:\$MAVEN_HOME/bin" >> /etc/profile | |
source /etc/profile | |
# install gradle | |
cd /usr/local/bin/ | |
mkdir gradle | |
cd gradle/ | |
wget wget https://services.gradle.org/distributions/gradle-2.0-bin.zip | |
unzip gradle-2.0-bin.zip | |
ln -s gradle-2.0 gradle | |
# config gradle path | |
echo "# setting gradle home" >> /etc/profile | |
echo "export GRADLE_HOME=/usr/local/bin/gradle/gradle" >> /etc/profile | |
echo "export PATH=\$PATH:\$GRADLE_HOME/bin" >> /etc/profile | |
source /etc/profile | |
# install git | |
apt-get install -y git | |
# install tomcat | |
cd /usr/local/bin/ | |
mkdir tomcat | |
cd tomcat/ | |
wget http://mirrors.hust.edu.cn/apache/tomcat/tomcat-8/v8.0.9/bin/apache-tomcat-8.0.9.tar.gz | |
tar -zxvf apache-tomcat-8.0.9.tar.gz | |
ln -s apache-tomcat-8.0.9 tomcat | |
cd tomcat/conf/ | |
rm server.xml | |
wget https://gist.githubusercontent.com/QQ1350995917/74c21365295b8e93f5c9/raw/ccc74c9280c6c0058cf0a67659dd353b4df085fd/server.xml | |
cd ../webapps/ | |
mkdir app_dingpw | |
cd app_dingpw/ | |
git clone https://github.com/QQ1350995917/www.dingpw.com.git | |
cd ../ | |
mkdir app_json | |
cd app_json/ | |
git clone https://github.com/QQ1350995917/webJsonEdit.git | |
cd ../../bin/ | |
sh startup.sh | |
# install vert.x | |
cd /usr/local/bin/ | |
mkdir vertx | |
cd vertx/ | |
wget http://dl.bintray.com/vertx/downloads/vert.x-2.1.2.tar.gz | |
tar -zxvf vert.x-2.1.2.tar.gz | |
ln -s vert.x-2.1.2 vertx | |
cd vertx/ | |
# config vertx path | |
echo "# setting vertx home" >> /etc/profile | |
echo "export VERTX_HOME=/usr/local/bin/vertx/vertx" >> /etc/profile | |
echo "export PATH=\$PATH:\$VERTX_HOME/bin" >> /etc/profile | |
source /etc/profile | |
# install python | |
cd /usr/local/bin/ | |
mkdir python | |
cd python/ | |
wget https://www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz | |
tar -xzf Python-3.4.1.tgz | |
ln -s Python-3.4.1 python | |
cd python/ | |
./configure --prefix=${pwd} | |
make | |
make install | |
# config python path | |
echo "# setting python home" >> /etc/profile | |
echo "export PYTHON_HOME=/usr/local/bin/python/python" >> /etc/profile | |
echo "export PATH=\$PATH:\$PYTHON_HOME" >> /etc/profile | |
source /etc/profile | |
# run push listener service | |
cd /usr/local/bin/ | |
wget https://gist.githubusercontent.com/QQ1350995917/e6eab2e886ed2f4d6eac/raw/66227462e95d24a7a022a9ca6868738bb3f30299/PushListener.java | |
vertx run PushListener.java |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment