Other languages:
Links:
Skywire is still under heavy development.
- Requirements
- Install
- Run Skywire
- Docker
- System Images Download Url
- Developers Guide
-
golang 1.9+
-
git
-
setup $GOPATH env (for example: /go) https://github.com/golang/go/wiki/SettingGOPATH in our case GOPATH must point to
/usr/local/skywire/go/
First take a look at the script integration README to know a few facts ant tips that will help you to understand how Skywire is integrated to the Unix systems, very important is the part of the Network Policies.
Now if you read that you must realize that if you use a different IP set you will need to change a few things, we will point them out when needed.
mkdir -p $GOPATH/src/github.com/skycoin
cd $GOPATH/src/github.com/skycoin
git clone https://github.com/skycoin/skywire.git
Build the binaries for skywire
cd $GOPATH/src/github.com/skycoin/skywire/cmd
go install ./...
If you are using the default network IP set you are set, follow to the next step.
If you uses a different IP set you need to modify the file in static/script/skywire.defaults
, in particular the variable called MANAGER_IP
in the default file it points to the default manager IP, in the case of a different IP set this will need to be changed to the manager IP.
Just for a matter of precaution, after modify this file be sure that there isn't a fille called /etc/default/skywire
if it's there erase it. It will be updated once you run skywire.
cd $GOPATH/bin
./skywire-manager -web-dir ${GOPATH}/src/github.com/skycoin/skywire/static/skywire-manager
tip: If you run with the above command, you will not be able to close the current window or you will close Skywire Manger.
If you need to close the current window and continue to run Skywire Manager, you can use
cd $GOPATH/bin
nohup ./skywire-manager -web-dir ${GOPATH}/src/github.com/skycoin/skywire/static/skywire-manager > /dev/null 2>&1 &sleep 3
Note: do not execute the above two commands at the same time, just select one of them.
Open a new command window
cd $GOPATH/bin
./skywire-node -connect-manager -manager-address 127.0.0.1:5998 -manager-web 127.0.0.1:8000 -discovery-address discovery.skycoin.net:5999-034b1cd4ebad163e457fb805b3ba43779958bba49f2c5e1e8b062482904bacdb68 -address :5000 -web-port :6001
tip: If you run with the above command, you will not be able to close the current window or you will close Skywire Node.
If you need to close the current window and continue to run Skywire Manager, you can use
cd $GOPATH/bin
nohup ./skywire-node -connect-manager -manager-address :5998 -manager-web :8000 -discovery-address discovery.skycoin.net:5999-034b1cd4ebad163e457fb805b3ba43779958bba49f2c5e1e8b062482904bacdb68 -address :5000 -web-port :6001 > /dev/null 2>&1 &cd /
-
If the Skywire Manager and Node are started by using the terminal window, please press Ctrl + c on the respective terminal of Manager and Node.
-
Use the shutdown terminal to keep running, please enter:
cd $GOPATH/bin
pkill -F manager.pid
cd $GOPATH/bin
pkill -F node.pid
Open a command window on a PC that will act like a manager and follow the install procedure, then to start a node do this:
${GOPATH}/src/github.com/skycoin/skywire/static/script/manager_start
tip: the manager start script will also run a local node, you don't need to run in manually on the manager.
Open a command window on a node only computer and follow the install procedure, then to start a node:
${GOPATH}/src/github.com/skycoin/skywire/static/script/node_start
tip: the node is instructed to connect to the manager IP automatically, if you use a non default IP set you must check the file "/etc/default/skywire" and change the MANAGER_IP variable on each Pc of your setup.
This two files are the default start script for skywire services, take a peek on them to know more if yu are interested.
If you started the manager and the nodes by the ways stated above you can stop them on each Pc by this command on a console:
${GOPATH}/src/github.com/skycoin/skywire/static/script/stop
This will check for the pid of the running processes and kill them. If you ran them by hand using a call to a the specific manager or node binaries this will not stop them, in this case you must run this:
killall node
killall manager
If you use a modern Linux OS (released after 2017) you are using systemd as init manager, skywire has the files needed to make them a service inside systemd.
Please note that the manager instance will start also a local node, so you must select just a manager on a net and the rest will be nodes.
cp ${GOPATH}/src/github.com/skycoin/skywire/static/script/upgrade/data/skywire-manager.service /etc/systemd/system/
systemctl enable skywire-manager
systemctl start skywire-manager
cp ${GOPATH}/src/github.com/skycoin/skywire/static/script/upgrade/data/skywire-node.service /etc/systemd/system/
systemctl enable skywire-node
systemctl start skywire-node
From this point forward you can user this services to start/stop your skywire instances via systemd commands:
# for the nodes
systemctl *start* skywire-node
systemctl *stop* skywire-node
systemctl *status* skywire-node
# for the manager
systemctl *start* skywire-manager
systemctl *stop* skywire-manager
systemctl *status* skywire-manager
Open http://localhost:8000. The default login password for Skywire manager is 1234.
-
Connect to node —— Search services —— Connect
-
Connect to node —— Enter the key for node and app —— Connect
In the first way, you can search for nodes around the world, and select the nodes you want to connect to; The second way is to connect to the specified node.
After the default normal start, the App will display "** available port **" (e.g. 9443) after successful connection.
Open Firefox Browser,address bar input"https://addons.mozilla.org/zh-CN/firefox/addon/foxyproxy-standard/", Click "add to Firefox" button to follow the prompts to install.
After the installation is complete, browse the Firefox address bar enter about: "addons" into the plugin page, find FoxyProxy "Standard" and click on the preferences into the configuration page < br > select "Use Enabled Proxies By Patterns and Priority" enable FoxyProxy < br > Click "Add" to Add the configuration,
Proxy Type: SOCKS5
IP address, DNS name, server name: 127.0.0.1
Port: 9443
And then finally click "Save"
After this service is opened, the application public key will be generated. Based on the public key of the node and the public key, the node can be managed remotely in any machine running Skywire.
Note: do not open SSH at will, and show the Node Key and App Key to strangers.
Enter Node Key and App Key. After the connection is successful, the Port (Port) will be displayed under the button, for example, 30001, and finally, use any SSH remote connection tool connection.
docker build -t skycoin/skywire .
docker run -ti --rm \
--name=skywire-manager \
-p 5998:5998 \
-p 8000:8000 \
skycoin/skywire
Note:
The images of skywire for ARM v5 and v7 are built upon busybox
whereas the ARM v6 and v8 containers will run on alpine
.
Open http://localhost:8000. The default login password for Skywire manager is 1234.
docker volume create skywire-data
docker run -ti --rm \
--name=skywire-node \
-v skywire-data:/root/.skywire \
--link skywire-manager \
-p 5000:5000 \
-p 6001:6001 \
skycoin/skywire \
node \
-connect-manager \
-manager-address skywire-manager:5998 \
-manager-web skywire-manager:8000 \
-address :5000 \
-web-port :6001 \
-discovery-address discovery.skycoin.net:5999-034b1cd4ebad163e457fb805b3ba43779958bba49f2c5e1e8b062482904bacdb68
docker-compose up
Open http://localhost:8000.
Note: these images can only be run on Orange Pi Prime.
Default password is 'samos'.
The base images has a few known bugs, we have built a one time upgrade script to fix that until we upgrade the new presseted system images.
If you want to upgrade the presetted system images please see this one time upgrade instructions.
Manager system image package contains Skywire Manager and a Skywire Node, other Node system image package only launch a Node.
-
Download Manager (IP:192.168.0.2)
-
Download Node1 (IP:192.168.0.3)
-
Download Node2 (IP:192.168.0.4)
-
Download Node3 (IP:192.168.0.5)
-
Download Node4 (IP:192.168.0.6)
-
Download Node5 (IP:192.168.0.7)
-
Download Node6 (IP:192.168.0.8)
-
Download Node7 (IP:192.168.0.9)
Note: This system image only contains the basic environment of Skywire, and it needs to set IP, etc.
Download Pure Image
The images are in https://github.com/skycoin/Orange-Pi-H5
Instructions for building the images are in https://github.com/skycoin/Orange-Pi-H5/wiki/How-to-build-the-images