Compare commits

...

15 Commits
v0.0.5 ... main

Author SHA1 Message Date
이수준 bd742d6471 FIX: fix for device-health file 2023-11-06 16:58:19 +09:00
이수준 43aa489f28 FIX: fix for device-control 2023-11-01 17:23:55 +09:00
이수준 defed5cbd8 FIX: fix for parameter app-setting 2023-10-25 20:17:09 +09:00
이수준 cf2d37262d FIX: fix for parameter app-setting 2023-10-25 20:08:51 +09:00
이수준 3e723c01d0 FIX: Fix Process checker -> cpu, mem value. / device-control added error message. 2023-10-23 13:53:31 +09:00
이수준 e0dbb3a012 FIX: fix for device-control 2023-10-13 10:38:46 +09:00
이수준 2a1b2332ad FIX: fix for device-control 2023-09-26 17:42:02 +09:00
이수준 d7401d387d FIX: fix for error, app delete, get pid, get config 2023-09-25 11:28:06 +09:00
이수준 a683fff8fa FIX: fix for get app resource 2023-09-25 10:39:33 +09:00
이수준 9e0a4976aa FIX: fix for Init 2023-09-19 19:10:48 +09:00
sujune 0724316273 ADD: Add image file 2023-09-15 06:35:07 +00:00
sujune e40bf4133c FIX: Fix Readme file 2023-09-15 06:34:51 +00:00
sujune 1b2d6f3eee FIX: Fix Readme file 2023-09-13 07:52:17 +00:00
sujune 817d1210bc ADD: Add Readme file 2023-09-13 07:51:30 +00:00
이수준 3f133b0c9b FIX: fix device-control. 2023-09-12 13:15:46 +09:00
7 changed files with 50 additions and 0 deletions

49
README.md Normal file
View File

@ -0,0 +1,49 @@
# BlokWork client - Auto Installer
---
# 설명
- bwc-installer-arm32는 아키텍처 arm32 장비 등록 시, 수행해야 할 다음 내용을 자동으로 수행하고, BWc 프로세스를 설치하는 인스톨러입니다.
- SDT-Cloud에 장비의 시리얼 넘버(AssetCode) 등록
- SDT-Cloud에 장비 연결
- 장비 프로비저닝
- BWc 프로세스 설치
- 장비 헬스 데이터 수집 및 전송 프로세스 설치
- 장비 하트비트 전송 프로세스 설치
- 장비 프로세스 상태 체크 프로세스 설치
- 장비 등록이 완료되면, 이 장비는 다음 동작이 가능합니다.
- AccessKey 생성(zip 파일)
- SDT-Cloud에서 등록한 장비의 정보를 확인할 수 있습니다.
- SDT-Cloud에서 등록한 장비의 헬스 데이터를 확인할 수 있습니다.
- SDT-Cloud에서 장비의 하트비트를 확인할 수 있습니다.
- SDT-Cloud에서 장비에 명령어 제어가 가능합니다.
- Bash
- Systemd
- Docker
- Deploy
- Config Edit
# 설치 방법
- bwc-installer-arm32를 실행하기 전에, 선행 작업이 필요합니다.
1. 선행 작업
- SDT-Cloud 관리자에게 장비의 시리얼 넘버를 받아야 합니다.
- 각 장비의 종류에 마다 시리얼 넘버가 부여 됩니다.
- 부여 받은 시리얼 넘버를 관리자로부터 받습니다.
- SDT-Cloud의 조직 코드를 확인해야 합니다.
- SDT-Cloud의 조직 코드는 SDT-Cloud에 로그인 후, 아래 그림과 같이 계정을 클릭하면 조직 코드를 확인할 수 있습니다.
![](./image.png)
2. 파일 다운로드
- 릴리즈에서 최신 파일(.zip) 파일을 다운로드 합니다.
3. installer 실행
- 다운로드한 파일을 압축해제 하고 init.sh 파일을 실행합니다.
```bash
$ unzip latest.zip
$ cd bwc-installer-arm32
$ sudo su
# ./init.sh
./init.sh help
Organzation ID(58a311aa-f52a-40e3-af44-cdec82b9d0b7): <ORGAZATION_ID>
Serial Number(ECN-SJ-TEST-001): <SERIAL NUMBER>
Type(ecn or nodeq): <TYPE>
```
4. 등록 확인
- bwc-installer 실행을 완료하고, SDT-Cloud에서 장비가 등록됐는지, 헬스데이터, 장비 정보 등을 확인합니다.

BIN
bwc-init

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -25,6 +25,7 @@ echo "[INIT] [1] Finish equipment registration"
echo "[INIT] [2] Start install device-control" echo "[INIT] [2] Start install device-control"
cd device-control cd device-control
./install.sh $acode $etype ./install.sh $acode $etype
mkdir -p /usr/local/sdt/app
echo "[INIT] [2] Finish install device-control" echo "[INIT] [2] Finish install device-control"
echo "[INIT] [3] Start install device-health" echo "[INIT] [3] Start install device-health"

Binary file not shown.