deployment-azure/TestTestNet/mining-node/install.sh

281 lines
8.6 KiB
Bash
Raw Normal View History

2017-06-30 12:26:00 -07:00
#!/bin/bash
2017-06-20 13:16:07 -07:00
set -e
set -u
set -x
2017-07-05 07:05:30 -07:00
echo "========== dev/mining-node/install.sh starting =========="
2017-06-20 13:16:07 -07:00
echo "===== current time: $(date)"
echo "===== username: $(whoami)"
echo "===== working directory: $(pwd)"
echo "===== operating system info:"
lsb_release -a
echo "===== memory usage info:"
free -m
2017-06-23 13:09:56 -07:00
EXT_IP="$(curl ifconfig.co)"
echo "===== external ip: ${EXT_IP}"
2017-06-20 13:16:07 -07:00
echo "===== environmental variables:"
printenv
# script parameters
INSTALL_DOCKER_VERSION="17.03.1~ce-0~ubuntu-xenial"
2017-06-22 06:49:26 -07:00
INSTALL_DOCKER_IMAGE="parity/parity:v1.6.8"
2017-07-05 02:50:35 -07:00
INSTALL_CONFIG_REPO="https://raw.githubusercontent.com/oraclesorg/test-templates/dev/TestTestNet/mining-node"
GENESIS_REPO_LOC="https://raw.githubusercontent.com/oraclesorg/oracles-scripts/devtestnet/spec.json"
2017-06-20 13:16:07 -07:00
GENESIS_JSON="spec.json"
NODE_TOML="node.toml"
NODE_PWD="node.pwd"
2017-07-03 09:18:32 -07:00
2017-07-03 13:16:24 -07:00
HOME="${HOME:-/root}"
2017-06-20 13:16:07 -07:00
echo "===== will use docker version: ${INSTALL_DOCKER_VERSION}"
echo "===== will use parity docker image: ${INSTALL_DOCKER_IMAGE}"
echo "===== repo base path: ${INSTALL_CONFIG_REPO}"
# this should be provided through env by azure template
NETSTATS_SERVER="${NETSTATS_SERVER}"
NETSTATS_SECRET="${NETSTATS_SECRET}"
MINING_KEYFILE="${MINING_KEYFILE}"
MINING_ADDRESS="${MINING_ADDRESS}"
MINING_KEYPASS="${MINING_KEYPASS}"
NODE_FULLNAME="${NODE_FULLNAME:-Anonymous}"
NODE_ADMIN_EMAIL="${NODE_ADMIN_EMAIL:-somebody@somehere}"
ADMIN_USERNAME="${ADMIN_USERNAME}"
prepare_homedir() {
echo "=====> prepare_homedir"
#ln -s "$(pwd)" "/home/${ADMIN_USERNAME}/script-dir"
cd "/home/${ADMIN_USERNAME}"
2017-07-03 09:18:32 -07:00
mkdir -p logs
2017-06-20 13:16:07 -07:00
echo "<===== prepare_homedir"
}
install_ntpd() {
echo "=====> install_ntpd"
sudo timedatectl set-ntp no
sudo apt-get -y install ntp
sudo bash -c "cat > /etc/cron.hourly/ntpdate << EOF
#!/bin/sh
sudo service ntp stop
sudo ntpdate -s ntp.ubuntu.com
sudo service ntp start
EOF"
sudo chmod 755 /etc/cron.hourly/ntpdate
echo "<===== install_ntpd"
}
install_haveged() {
echo "=====> install_haveged"
sudo apt-get -y install haveged
sudo update-rc.d haveged defaults
echo "<===== install_haveged"
}
allocate_swap() {
echo "=====> allocate_swap"
sudo apt-get -y install bc
#sudo fallocate -l $(echo "$(free -b | awk '/Mem/{ print $2 }')*2" | bc -l) /swapfile
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo sh -c "printf '/swapfile none swap sw 0 0\n' >> /etc/fstab"
sudo sh -c "printf 'vm.swappiness=10\n' >> /etc/sysctl.conf"
sudo sysctl vm.vfs_cache_pressure=50
sudo sh -c "printf 'vm.vfs_cache_pressure = 50\n' >> /etc/sysctl.conf"
echo "<===== allocate_swap"
}
install_nodejs() {
echo "=====> install_nodejs"
# curl -sL https://deb.nodesource.com/setup_0.12 | bash -
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get update
sudo apt-get install -y build-essential git unzip wget nodejs ntp cloud-utils
# add symlink if it doesn't exist
[[ ! -f /usr/bin/node ]] && sudo ln -s /usr/bin/nodejs /usr/bin/node
echo "<===== install_nodejs"
}
install_docker_ce() {
echo "=====> install_docker_ce"
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get -y install docker-ce=${INSTALL_DOCKER_VERSION}
echo "<===== install_docker_ce"
}
pull_image_and_configs() {
echo "=====> pull_image_and_configs"
2017-06-22 06:49:26 -07:00
sudo docker pull ${INSTALL_DOCKER_IMAGE}
2017-06-20 13:16:07 -07:00
# curl -s -O "${INSTALL_CONFIG_REPO}/../${GENESIS_JSON}"
curl -s -o "${GENESIS_JSON}" "${GENESIS_REPO_LOC}"
curl -s -O "${INSTALL_CONFIG_REPO}/${NODE_TOML}"
2017-06-23 13:39:44 -07:00
sed -i "/\[network\]/a nat=\"extip:${EXT_IP}\"" ${NODE_TOML}
2017-06-20 13:16:07 -07:00
cat >> ${NODE_TOML} <<EOF
[account]
password = ["${NODE_PWD}"]
unlock = ["${MINING_ADDRESS}"]
[mining]
2017-06-23 13:27:57 -07:00
force_sealing = true
2017-06-20 13:16:07 -07:00
engine_signer = "${MINING_ADDRESS}"
reseal_on_txs = "none"
EOF
echo "${MINING_KEYPASS}" > "${NODE_PWD}"
mkdir -p parity/keys/OraclesPoA
echo ${MINING_KEYFILE} | base64 -d > parity/keys/OraclesPoA/mining.key.${MINING_ADDRESS}
echo "<===== pull_image_and_configs"
}
# based on https://get.parity.io
install_netstats() {
echo "=====> install_netstats"
2017-07-06 07:21:43 -07:00
git clone https://github.com/oraclesorg/eth-net-intelligence-api
2017-06-20 13:16:07 -07:00
cd eth-net-intelligence-api
2017-06-30 08:54:57 -07:00
#sed -i '/"web3"/c "web3": "0.19.x",' package.json
2017-06-20 13:16:07 -07:00
sudo npm install
sudo npm install pm2 -g
cat > app.json << EOL
[
{
"name" : "node-app",
"script" : "app.js",
"log_date_format" : "YYYY-MM-DD HH:mm:SS Z",
2017-07-03 09:18:32 -07:00
"error_file" : "/home/${ADMIN_USERNAME}/logs/dashboard.err",
"out_file" : "/home/${ADMIN_USERNAME}/logs/dashboard.out",
2017-06-20 13:16:07 -07:00
"merge_logs" : false,
"watch" : false,
"max_restarts" : 100,
"exec_interpreter" : "node",
"exec_mode" : "fork_mode",
"env":
{
"NODE_ENV" : "production",
"RPC_HOST" : "localhost",
"RPC_PORT" : "8540",
"LISTENING_PORT" : "30300",
"INSTANCE_NAME" : "${NODE_FULLNAME}",
"CONTACT_DETAILS" : "${NODE_ADMIN_EMAIL}",
"WS_SERVER" : "http://${NETSTATS_SERVER}:3000",
"WS_SECRET" : "${NETSTATS_SECRET}",
"VERBOSITY" : 2
}
}
]
EOL
cd ..
2017-07-03 09:18:32 -07:00
cat > netstats.start <<EOF
cd eth-net-intelligence-api
pm2 startOrRestart app.json
cd ..
EOF
chmod +x netstats.start
sudo -u root -E -H ./netstats.start
2017-06-20 13:16:07 -07:00
echo "<===== install_netstats"
}
start_docker() {
echo "=====> start_docker"
2017-07-03 10:14:23 -07:00
cat > docker.start <<EOF
2017-07-05 08:58:15 -07:00
sudo docker run -d \\
2017-06-20 13:16:07 -07:00
--name oracles-poa \\
-p 30300:30300 \\
2017-06-25 13:49:11 -07:00
-p 30300:30300/udp \\
2017-06-20 13:16:07 -07:00
-p 8080:8080 \\
-p 8180:8180 \\
-p 8540:8540 \\
-v "$(pwd)/${NODE_PWD}:/build/${NODE_PWD}" \\
2017-06-22 07:36:39 -07:00
-v "$(pwd)/parity:/build/parity" \\
2017-06-20 13:16:07 -07:00
-v "$(pwd)/${GENESIS_JSON}:/build/${GENESIS_JSON}" \\
-v "$(pwd)/${NODE_TOML}:/build/${NODE_TOML}" \\
2017-07-03 09:18:32 -07:00
${INSTALL_DOCKER_IMAGE} --config "${NODE_TOML}" > logs/docker.out 2> logs/docker.err
container_id="\$(cat logs/docker.out)"
2017-07-05 08:58:15 -07:00
sudo ln -sf "/var/lib/docker/containers/\${container_id}/\${container_id}-json.log" logs/parity.log
2017-06-20 13:16:07 -07:00
EOF
2017-07-03 09:18:32 -07:00
chmod +x docker.start
./docker.start
2017-06-20 13:16:07 -07:00
echo "<===== start_docker"
}
2017-06-21 05:01:26 -07:00
use_deb() {
echo "=====> use_deb"
curl -O http://d1h4xl4cr1h0mo.cloudfront.net/v1.6.8/x86_64-unknown-linux-gnu/parity_1.6.8_amd64.deb
dpkg -i parity_1.6.8_amd64.deb
apt install dtach
cat > rundeb.sh << EOF
sudo parity --config "${NODE_TOML}" >> parity.out 2>> parity.err
EOF
chmod +x rundeb.sh
dtach -n par "./rundeb.sh"
echo "<===== use_deb"
}
2017-06-20 13:16:07 -07:00
install_scripts() {
echo "=====> install_scripts"
git clone -b master --single-branch https://github.com/oraclesorg/oracles-scripts
ln -s node.toml oracles-scripts/node.toml
2017-06-20 13:16:07 -07:00
cd oracles-scripts/scripts
npm install
2017-07-03 10:14:23 -07:00
sudo cat > /etc/cron.hourly/transferRewardToPayoutKey <<EOF
2017-06-20 13:16:07 -07:00
#!/bin/bash
cd "$(pwd)"
echo "Running transferRewardToPayoutKey at $(date)" >> transferRewardToPayoutKey.out
echo "Running transferRewardToPayoutKey at $(date)" >> transferRewardToPayoutKey.err
node transferRewardToPayoutKey.js >> transferRewardToPayoutKey.out 2>> transferRewardToPayoutKey.err
echo "" >> transferRewardToPayoutKey.out
echo "" >> transferRewardToPayoutKey.err
EOF
sudo chmod 755 /etc/cron.hourly/transferRewardToPayoutKey
cd ../..
echo "<===== install_scripts"
}
2017-06-28 07:02:37 -07:00
setup_autoupdate() {
echo "=====> setup_autoupdate"
2017-06-30 04:43:38 -07:00
docker pull oraclesorg/docker-run
2017-07-03 10:14:23 -07:00
cat > /etc/cron.daily/docker-autoupdate <<EOF
2017-06-28 07:02:37 -07:00
#!/bin/sh
2017-07-03 09:18:32 -07:00
outlog="/home/${ADMIN_USERNAME}/logs/docker-autoupdate.out"
errlog="/home/${ADMIN_USERNAME}/logs/docker-autoupdate.err"
echo "Starting: \$(date)" >> "\${outlog}"
echo "Starting: \$(date)" >> "\${errlog}"
sudo docker run --rm -v /var/run/docker.sock:/tmp/docker.sock oraclesorg/docker-run update >> "\${outlog}" 2>> "\${errlog}"
echo "" >> "\${outlog}"
echo "" >> "\${errlog}"
2017-07-03 10:14:23 -07:00
EOF
2017-06-28 07:02:37 -07:00
sudo chmod 755 /etc/cron.daily/docker-autoupdate
echo "<===== setup_autoupdate"
}
2017-06-20 13:16:07 -07:00
# MAIN
main () {
2017-07-07 09:50:17 -07:00
sudo apt-get update
2017-06-20 13:16:07 -07:00
prepare_homedir
install_ntpd
install_haveged
allocate_swap
install_nodejs
install_docker_ce
pull_image_and_configs
2017-06-22 06:49:26 -07:00
start_docker
#use_deb
2017-06-28 07:02:37 -07:00
setup_autoupdate
2017-06-20 13:16:07 -07:00
install_netstats
2017-06-29 06:20:12 -07:00
install_scripts
2017-06-20 13:16:07 -07:00
}
main
2017-07-05 07:05:30 -07:00
echo "========== dev/mining-node/install.sh finished =========="