forked from TheSKYpeople/SkyInstallScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceStartSkywireSecondary.sh
23 lines (21 loc) · 2.11 KB
/
ServiceStartSkywireSecondary.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
#######################################################################################################################################################################
#######################################################################################################################################################################
##### SKYWIRE SERVICE AUTO START FOR SECONDARY BOARDS (ORANGEPI'S 2-8)
##### AS A PART OF SKYMINER (SKYCOIN) ORANGE PI AUTO INSTALL SCRIPT
##### This script starts all Skywire services again after a shutdown or reboot automatically.
#######################################################################################################################################################################
##### Version: 1.0 - Get the newest version at https://github.com/TheSKYpeople/SkyInstallScript
#######################################################################################################################################################################
##### Team: The SKYpeople (Email: [email protected] - Telegram: @TheSKYpeople)
##### Licence: GNU General Public License v3.0
##### Donations: Skycoin zrwaGKR8oG7juYLHqgj7zwxH4bGYPEwWTB
##### Ethereum 0x25a4cc8003a626e0b1d0be4626dc33e82a0096a0
##### Bitcoin 1EH9Sw1JgnndJGVnUsQkhhiA6XBynqUFuQ
#######################################################################################################################################################################
#######################################################################################################################################################################
##### This starts the Skywire Node
cd $GOPATH/bin
./manager -web-dir ${GOPATH}/src/github.com/skycoin/skywire/static/skywire-manager > /dev/null 2>&1 &
##### This starts the Skywire Monitor from the Master/Primary board (OrangePI 1)
./node -connect-manager -manager-address 192.168.0.101:5998 -manager-web 192.168.0.101:8000 -discovery-address discovery.skycoin.net:5999-034b1cd4ebad163e457fb805b3ba43779958bba49f2c5e1e8b062482904bacdb68 -address :5000 -web-port :6001 > /dev/null 2>&1 &