Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

21 changed files with 26 additions and 63 deletions

BIN
bwc-init

Binary file not shown.

Binary file not shown.

View File

@ -1,10 +0,0 @@
[Unit]
Description=When change project code, it manage blokwork clients.
[Service]
ExecStart=/usr/local/bin/bwc-management -mqtt=aws
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target

View File

@ -1,6 +0,0 @@
#!/bin/bash
sudo cp bwc-management /usr/local/bin/
sudo cp bwc-management.service /etc/systemd/system/
sudo systemctl start bwc-management
sudo systemctl enable bwc-management

View File

@ -1,8 +0,0 @@
{
"assetcode": "acode",
"devicetype": "typecode",
"mqtturl": "tcp://43.200.53.170:32259",
"projectcode": "no_project",
"reboot": "",
"requestid": ""
}

View File

@ -0,0 +1,3 @@
assetcode: acode
devicetype: typecode
mqtturl: tcp://13.209.39.139:32259

Binary file not shown.

View File

@ -1,8 +1,8 @@
[Unit] [Unit]
Description=It control device. There are device's bash, systemd, app's management, json edit. Description=device-control
[Service] [Service]
ExecStart=/usr/local/bin/device-control -mqtt=aws ExecStart=/usr/local/bin/device-control
Restart=always Restart=always
RestartSec=10 RestartSec=10

View File

@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
# sudo mkdir -p /etc/sdt/device.config sudo mkdir -p /etc/sdt/device-control
sudo cp config.json /etc/sdt/device.config/config.json sudo cp config.yaml /etc/sdt/device-control
sudo sed -i "s/acode/$1/g" /etc/sdt/device.config/config.json sudo sed -i "s/acode/$1/g" /etc/sdt/device-control/config.yaml
sudo sed -i "s/typecode/$2/g" /etc/sdt/device.config/config.json sudo sed -i "s/typecode/$2/g" /etc/sdt/device-control/config.yaml
sudo cp device-control /usr/local/bin/ sudo cp device-control /usr/local/bin/
sudo cp device-control.service /etc/systemd/system/ sudo cp device-control.service /etc/systemd/system/
sudo systemctl start device-control sudo systemctl start device-control

View File

@ -0,0 +1,2 @@
assetcode: acode
mqtturl: tcp://13.209.39.139:32259

Binary file not shown.

View File

@ -1,9 +1,9 @@
[Unit] [Unit]
Description=It get device's health. There is cpu, memory, network up/downlink, network interface, etc. Description=DeviceHealth
[Service] [Service]
User=root User=root
ExecStart=/usr/local/bin/device-health -mqtt=aws ExecStart=/usr/local/bin/device-health
Restart=always Restart=always
RestartSec=10 RestartSec=10

View File

@ -1,6 +1,8 @@
#!/bin/bash #!/bin/bash
# sudo mkdir -p /etc/sdt/device-health sudo mkdir -p /etc/sdt/device-health
sudo cp config.yaml /etc/sdt/device-health/
sudo sed -i "s/acode/$1/g" /etc/sdt/device-health/config.yaml
sudo cp device-health /usr/local/bin/ sudo cp device-health /usr/local/bin/
sudo cp device-health.service /etc/systemd/system/ sudo cp device-health.service /etc/systemd/system/
sudo systemctl start device-health sudo systemctl start device-health

Binary file not shown.

View File

@ -1,9 +1,9 @@
[Unit] [Unit]
Description=It send heatbeat to BlokWorks. Description=DeviceHearthBeat
[Service] [Service]
User=root User=root
ExecStart=/usr/local/bin/device-heartbeat -mqtt=aws ExecStart=/usr/local/bin/device-heartbeat
Restart=always Restart=always
RestartSec=10 RestartSec=10

View File

@ -1,6 +1,5 @@
#!/bin/bash #!/bin/bash
# sudo mkdir -p /etc/sdt/device-heartbeat
sudo cp device-heartbeat /usr/local/bin/ sudo cp device-heartbeat /usr/local/bin/
sudo cp device-heartbeat.service /etc/systemd/system/ sudo cp device-heartbeat.service /etc/systemd/system/
sudo systemctl start device-heartbeat sudo systemctl start device-heartbeat

19
init.sh
View File

@ -5,11 +5,10 @@ set -e
if [ $(id -u) -ne 0 ]; then if [ $(id -u) -ne 0 ]; then
echo "Please run as root. - sudo su" echo "Please run as root. - sudo su"
exit exit
else elif [ $1 == "help" ]; then
echo "Please input parameter. follow as:" echo "Please input parameter. follow as:"
echo "Organzation ID=58a311aa-f52a-40e3-af44-cdec82b9d0b7" echo "Example) Organzation ID=58a311aa-f52a-40e3-af44-cdec82b9d0b7 SerialNumbe=ECN-SJ-TEST-001 Type=ecn"
echo "SerialNumber=ECN-SJ-TEST-001" exit
echo "Type=ecn"
fi fi
echo "If you need help, please enter follow as:" echo "If you need help, please enter follow as:"
@ -18,11 +17,6 @@ read -p "Organzation ID(58a311aa-f52a-40e3-af44-cdec82b9d0b7): " oid
read -p "Serial Number(ECN-SJ-TEST-001): " acode read -p "Serial Number(ECN-SJ-TEST-001): " acode
read -p "Type(ecn or nodeq): " etype read -p "Type(ecn or nodeq): " etype
echo "[INIT] [0] Init equipment registration"
mkdir -p /etc/sdt/device.config
mkdir -p /etc/sdt/device.logs
echo "[INIT] [0] Finish init equipment registration"
echo "[INIT] [1] Start equipment registration" echo "[INIT] [1] Start equipment registration"
./bwc-init -oid=$oid -acode=$acode ./bwc-init -oid=$oid -acode=$acode
echo "[INIT] [1] Finish equipment registration" echo "[INIT] [1] Finish equipment registration"
@ -46,9 +40,4 @@ echo "[INIT] [4] Finish install device-heartbeat"
echo "[INIT] [5] Start install process-checker" echo "[INIT] [5] Start install process-checker"
cd ../process-checker cd ../process-checker
./install.sh ./install.sh
echo "[INIT] [5] Stop install process-checker" echo "[INIT] [5] Stop install process-checker"
echo "[INIT] [6] Start install bwc-management"
cd ../bwc-management
./install.sh
echo "[INIT] [6] Stop install bwc-management"

View File

@ -1,6 +1,5 @@
#!/bin/bash #!/bin/bash
# sudo mkdir -p /etc/sdt/process-checker
sudo cp process-checker /usr/local/bin/ sudo cp process-checker /usr/local/bin/
sudo cp process-checker.service /etc/systemd/system/ sudo cp process-checker.service /etc/systemd/system/
sudo systemctl start process-checker sudo systemctl start process-checker

Binary file not shown.

View File

@ -1,9 +1,9 @@
[Unit] [Unit]
Description=It get app's health. There is cpu, memory, app's PID, app's status. Description=processchecker
[Service] [Service]
User=root User=root
ExecStart=/usr/local/bin/process-checker -mqtt=aws ExecStart=/usr/local/bin/process-checker
Restart=always Restart=always
RestartSec=10 RestartSec=10

View File

@ -37,12 +37,5 @@ rm /etc/systemd/system/process-checker.service
rm /usr/local/bin/process-checker rm /usr/local/bin/process-checker
echo "[INIT] Finish uninstall process-checker" echo "[INIT] Finish uninstall process-checker"
echo "[INIT] Start uninstall bwc-management" echo "[INIT] Delete Cert Data"
systemctl disable bwc-management rm -rf /etc/sdt/cert
systemctl stop bwc-management
rm /etc/systemd/system/bwc-management.service
rm /usr/local/bin/bwc-management
echo "[INIT] Finish uninstall bwc-management"
echo "[INIT] Delete Cert, Config, Log Data"
rm -rf /etc/sdt