-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathServiceStartSkywirePrimary.sh
25 lines (22 loc) · 2.1 KB
/
ServiceStartSkywirePrimary.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
#######################################################################################################################################################################
#######################################################################################################################################################################
##### SKYWIRE SERVICE AUTO START FOR MASTER/PRIMARY BOARD
##### 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 (Primary Node!!!)
##### Attention!!! This script is only to be used on Master/ Primary Node (OrangePI 1)!!!
./node -connect-manager -manager-address :5998 -manager-web :8000 -discovery-address messenger.skycoin.net:5999 -address :5000 -web-port :6001 > /dev/null 2>&1 &