[NOTE]
cb-webtool is currently under development. (the latest version is 0.3 espresso)
So, we do not recommend using the current release in production.
Please note that the functionalities of cb-webtool are not stable and secure yet.
If you have any difficulties in using cb-webtool, please let us know.
(Open an issue or Join the cloud-barista Slack)
cb-webtool은 Multi-Cloud Project의 일환으로 다양한 클라우드를 cb-webtool에서 처리해 사용자로 하여금 간단하고 편안하게 클라우드를 접할 수 있게 해준다.
cb-webtool은 1.15 이상의 Go 버전이 설치된 다양한 환경에서 실행 가능하지만 최종 동작을 검증한 OS는 Ubuntu 18.0.4입니다.
cb-webtool은 내부적으로 cb-tumblebug & cb-spider & cb-dragonfly의 개방형 API를 이용하기 때문에 각 서버의 연동이 필요합니다.
- https://github.com/cloud-barista/cb-tumblebug README 참고하여 설치 및 실행 (검증된 버전 : cb-tumblebug v0.2.9)
- https://github.com/cloud-barista/cb-spider README 참고하여 설치 및 실행 (검증된 버전 : cb-spider v0.2.8)
- https://github.com/cloud-barista/cb-dragonfly README 참고하여 설치 및 실행 (검증된 버전 : cb-dragonfly v0.2.8)
-
Git 설치
$ sudo apt update
$ sudo apt install git
-
Go 1.15 이상의 버전 설치
go mod 기반의 설치로 바뀌면서 Go 1.15 이상의 버전이 필요합니다.
2020년 12월 기준으로 apt install golang으로는 구 버전이 설치되기 때문에 https://golang.org/doc/install 사이트에서 1.15 이상의 버전을 직접 설치해야 합니다.$ wget https://golang.org/dl/go1.15.4.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.15.4.linux-amd64.tar.gz
-
Go 환경 설정
$ echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bashrc
$ echo "export GOPATH=$HOME/go" >> ~/.bashrc
$ source ~/.bashrc
$ go version
go version go1.15.4 linux/amd64
-
cb-webtool 설치
$ mkdir -p ~/go/src/github.com/cloud-barista
$ cd ~/go/src/github.com/cloud-barista
$ git clone https://github.com/cloud-barista/cb-webtool.git
$ cd cb-webtool
$ go mod download
$ go mod verify
-
conf/setup.env 파일에서 cb-tumblebug & cb-spider & cb-dragonfly의 실제 URL 정보로 수정합니다.
[주의사항]
cb-webtool을 비롯하여 연동되는 모든 서버가 자신의 로컬 환경에서 개발되는 경우를 제외하고는 클라이언트의 웹브라우저에서 접근하기 때문에 localhost나 127.0.0.1 주소가 아닌 실제 IP 주소를 사용해야 합니다. -
로그인 Id와 Password의 변경은 conf/setup.env 파일의 LoginEmail & LoginPassword 정보를 수정하세요.
(기본 값은 admin/admin 입니다.) -
초기 Data 구축관련
내부적으로 cb-spider와 cb-tumblebug의 개방형 API를 사용하므로 입력되는 Key Name및 Key Value는 cb-spider 및 cb-tumblebug의 API 문서를 참고하시기 바랍니다.[중요]
Cloud Connection 기능을 사용할 수 없으므로 cb-tumblebug의 활용 예시를 참고해서 1.configureSpider 쉘 스크립트를 실행 하시기 바랍니다.
- 일반 실행
$ cd ~/go/src/github.com/cloud-barista/cb-webtool
$ source ./conf/setup.env
$ go run main.go
reflex를 이용한 static 파일의 자동 변경 감지및 Reload
- reflex 설치
$ go get github.com/cespare/reflex
- cb-webtool 실행
$ cd ~/go/src/github.com/cloud-barista/cb-webtool
$ source ./conf/setup.env
$ reflex -r '\.(html|go|js)' -s go run main.go