-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall_coo.sh
59 lines (54 loc) · 2.21 KB
/
install_coo.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
### - Install Java -
#pre-check Java agreements
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections
#install java and set env
sudo apt-get -y install software-properties-common -y && sudo add-apt-repository ppa:webupd8team/java -y && sudo apt update && sudo apt install oracle-java8-installer curl wget jq git -y && sudo apt install oracle-java8-set-default -y
sudo sh -c 'echo JAVA_HOME="/usr/lib/jvm/java-8-oracle" >> /etc/environment' && source /etc/environment
### - Install Maven and general upgrades -
export DEBIAN_FRONTEND=noninteractive
sudo -E apt-get -qy update
sudo -E apt-get -qy -o "Dpkg::Options::=--force-confdef" -o "Dpkg::Options::=--force-confold" upgrade
sudo -E apt-get -qy autoclean
sudo apt -qy install maven
### - Download Testnet Tools and a modified iota.java.lib
mkdir -p /home/$USER/coordinator_tools && cd /home/$USER/coordinator_tools
#download testnet tools
sudo git clone https://github.com/oysterprotocol/private-iota-testnet/ && cd private-iota-testnet
#download iota.java.lib
sudo git clone https://github.com/oysterprotocol/iota.lib.java/ && cd iota.lib.java && sudo git checkout oyster.iota.lib.java
### - Compile and install both repos
#compile and install local jota
sudo mvn install
#compile and install testnet tools
cd ..
sudo mvn clean package
### - Set systemd service for COO
#set up Systemd service
cat <<EOF | sudo tee /lib/systemd/system/coordinator.service
[Unit]
Description=Coordinator for a private IOTA tangle
After=network.target
[Service]
WorkingDirectory=/home/$USER/coordinator_tools/private-iota-testnet/target
User=$USER
PrivateDevices=yes
ProtectSystem=full
Type=simple
ExecReload=/bin/kill -HUP $MAINPID
KillMode=mixed
KillSignal=SIGTERM
TimeoutStopSec=60
ExecStart=/usr/bin/java -jar iota-testnet-tools-0.9.11-for-coordinator-jar-with-dependencies.jar Coordinator localhost 14265
SyslogIdentifier=COO
Restart=always
RestartSec=120s
[Install]
WantedBy=multi-user.target
Alias=coordinator.service
EOF
#start the service and set up systemctl
sudo service coordinator start
sudo systemctl start coordinator.service
sudo systemctl enable coordinator.service