2017-02-10 21:33:17 -08:00
#!/bin/bash
echo "This assumes that you are doing a green-field install. If you're not, please exit in the next 15 seconds."
sleep 15
echo "Continuing install, this will prompt you for your password if you're not already running as root and you didn't enable passwordless sudo. Please do not run me as root!"
if [ [ ` whoami` = = "root" ] ] ; then
echo "You ran me as root! Do not run me as root!"
exit 1
fi
ROOT_SQL_PASS = $( cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
CURUSER = $( whoami)
2017-10-24 22:07:27 +02:00
sudo timedatectl set-timezone Etc/UTC
2017-02-10 21:33:17 -08:00
sudo apt-get update
sudo DEBIAN_FRONTEND = noninteractive apt-get -y upgrade
sudo debconf-set-selections <<< " mysql-server mysql-server/root_password password $ROOT_SQL_PASS "
sudo debconf-set-selections <<< " mysql-server mysql-server/root_password_again password $ROOT_SQL_PASS "
echo -e " [client]\nuser=root\npassword= $ROOT_SQL_PASS " | sudo tee /root/.my.cnf
2017-03-05 16:05:09 -08:00
sudo DEBIAN_FRONTEND = noninteractive apt-get -y install git python-virtualenv python3-virtualenv curl ntp build-essential screen cmake pkg-config libboost-all-dev libevent-dev libunbound-dev libminiupnpc-dev libunwind8-dev liblzma-dev libldns-dev libexpat1-dev libgtest-dev mysql-server lmdb-utils libzmq3-dev
2017-02-10 21:33:17 -08:00
cd ~
git clone https://github.com/Snipa22/nodejs-pool.git # Change this depending on how the deployment goes.
cd /usr/src/gtest
sudo cmake .
sudo make
sudo mv libg* /usr/lib/
cd ~
sudo systemctl enable ntp
cd /usr/local/src
sudo git clone https://github.com/monero-project/monero.git
cd monero
2017-11-12 20:31:13 -05:00
sudo git checkout v0.11.1.0
2017-03-01 13:48:18 -08:00
curl https://raw.githubusercontent.com/Snipa22/nodejs-pool/master/deployment/monero_daemon.patch | sudo git apply -v
2017-02-21 17:01:50 +02:00
sudo make -j$( nproc)
2017-02-10 21:33:17 -08:00
sudo cp ~/nodejs-pool/deployment/monero.service /lib/systemd/system/
sudo useradd -m monerodaemon -d /home/monerodaemon
2017-02-23 20:06:42 +02:00
BLOCKCHAIN_DOWNLOAD_DIR = $( sudo -u monerodaemon mktemp -d)
2017-02-26 11:49:27 -08:00
sudo -u monerodaemon wget --limit-rate= 50m -O $BLOCKCHAIN_DOWNLOAD_DIR /blockchain.raw https://downloads.getmonero.org/blockchain.raw
2017-02-21 09:55:43 +02:00
sudo -u monerodaemon /usr/local/src/monero/build/release/bin/monero-blockchain-import --input-file $BLOCKCHAIN_DOWNLOAD_DIR /blockchain.raw --batch-size 20000 --database lmdb#fastest --verify off --data-dir /home/monerodaemon/.bitmonero
2017-02-23 20:06:42 +02:00
sudo -u monerodaemon rm -rf $BLOCKCHAIN_DOWNLOAD_DIR
2017-02-10 21:33:17 -08:00
sudo systemctl daemon-reload
sudo systemctl enable monero
sudo systemctl start monero
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
source ~/.nvm/nvm.sh
2017-12-20 04:52:29 -08:00
nvm install v8.9.3
2017-02-10 21:33:17 -08:00
cd ~/nodejs-pool
npm install
npm install -g pm2
openssl req -subj "/C=IT/ST=Pool/L=Daemon/O=Mining Pool/CN=mining.pool" -newkey rsa:2048 -nodes -keyout cert.key -x509 -out cert.pem -days 36500
mkdir ~/pool_db/
2017-02-19 09:38:38 +02:00
sed -r " s/(\"db_storage_path\": ).*/\1\"\/home\/ $CURUSER \/pool_db\/\",/ " config_example.json > config.json
2017-02-10 21:33:17 -08:00
cd ~
2017-02-13 19:57:42 -08:00
git clone https://github.com/mesh0000/poolui.git
2017-02-14 08:52:54 -08:00
cd poolui
2017-02-10 21:33:17 -08:00
npm install
2017-02-14 10:32:21 -08:00
./node_modules/bower/bin/bower update
./node_modules/gulp/bin/gulp.js build
cd build
2017-02-10 21:33:17 -08:00
sudo ln -s ` pwd ` /var/www
2017-02-19 14:32:45 +02:00
CADDY_DOWNLOAD_DIR = $( mktemp -d)
cd $CADDY_DOWNLOAD_DIR
2017-10-02 10:18:41 -07:00
curl -sL "https://snipanet.com/caddy.tar.gz" | tar -xz caddy init/linux-systemd/caddy.service
2017-02-19 14:32:45 +02:00
sudo mv caddy /usr/local/bin
2017-02-10 21:33:17 -08:00
sudo chown root:root /usr/local/bin/caddy
sudo chmod 755 /usr/local/bin/caddy
sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/caddy
sudo groupadd -g 33 www-data
sudo useradd -g www-data --no-user-group --home-dir /var/www --no-create-home --shell /usr/sbin/nologin --system --uid 33 www-data
sudo mkdir /etc/caddy
sudo chown -R root:www-data /etc/caddy
sudo mkdir /etc/ssl/caddy
sudo chown -R www-data:root /etc/ssl/caddy
sudo chmod 0770 /etc/ssl/caddy
sudo cp ~/nodejs-pool/deployment/caddyfile /etc/caddy/Caddyfile
sudo chown www-data:www-data /etc/caddy/Caddyfile
sudo chmod 444 /etc/caddy/Caddyfile
2017-02-19 14:32:45 +02:00
sudo sh -c "sed 's/ProtectHome=true/ProtectHome=false/' init/linux-systemd/caddy.service > /etc/systemd/system/caddy.service"
2017-02-10 21:33:17 -08:00
sudo chown root:root /etc/systemd/system/caddy.service
2017-09-06 12:31:48 +02:00
sudo chmod 644 /etc/systemd/system/caddy.service
2017-02-10 21:33:17 -08:00
sudo systemctl daemon-reload
sudo systemctl enable caddy.service
sudo systemctl start caddy.service
2017-02-19 14:32:45 +02:00
rm -rf $CADDY_DOWNLOAD_DIR
2017-02-10 21:33:17 -08:00
cd ~
2017-12-20 04:53:22 -08:00
sudo env PATH = $PATH :` pwd ` /.nvm/versions/node/v8.9.3/bin ` pwd ` /.nvm/versions/node/v8.9.3/lib/node_modules/pm2/bin/pm2 startup systemd -u $CURUSER --hp ` pwd `
2017-02-10 21:33:17 -08:00
cd ~/nodejs-pool
sudo chown -R $CURUSER . ~/.pm2
2017-02-12 14:13:10 -08:00
echo "Installing pm2-logrotate in the background!"
pm2 install pm2-logrotate &
2017-02-10 21:33:17 -08:00
mysql -u root --password= $ROOT_SQL_PASS < deployment/base.sql
2017-02-11 02:33:38 -08:00
mysql -u root --password= $ROOT_SQL_PASS pool -e "INSERT INTO pool.config (module, item, item_value, item_type, Item_desc) VALUES ('api', 'authKey', '`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`', 'string', 'Auth key sent with all Websocket frames for validation.')"
mysql -u root --password= $ROOT_SQL_PASS pool -e "INSERT INTO pool.config (module, item, item_value, item_type, Item_desc) VALUES ('api', 'secKey', '`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`', 'string', 'HMAC key for Passwords. JWT Secret Key. Changing this will invalidate all current logins.')"
2017-02-11 12:01:51 -08:00
pm2 start init.js --name= api --log-date-format= "YYYY-MM-DD HH:mm Z" -- --module= api
2017-06-02 04:39:55 -07:00
bash ~/nodejs-pool/deployment/install_lmdb_tools.sh
2017-08-14 10:58:53 -07:00
cd ~/nodejs-pool/sql_sync/
2017-12-21 06:46:34 -08:00
env PATH = $PATH :` pwd ` /.nvm/versions/node/v8.9.3/bin node sql_sync.js
2017-02-14 08:52:54 -08:00
echo "You're setup! Please read the rest of the readme for the remainder of your setup and configuration. These steps include: Setting your Fee Address, Pool Address, Global Domain, and the Mailgun setup!"