-
Notifications
You must be signed in to change notification settings - Fork 51
Authentication Guide(KR)
ByoungSeob Kim edited this page Feb 24, 2026
·
1 revision
CB-Spider 서버 설정 및 spctl, curl을 이용한 인증 방법이 다음과 같습니다.
./setup.env 파일에서 설정:
export SPIDER_USERNAME=admin
export SPIDER_PASSWORD=your-password주의: 비밀번호는 반드시 다른 값으로 설정
변경 후에는 서버 재시작 필요
| 방법 | 사용 예시 |
|---|---|
| 환경변수 설정 (권장) |
export SPIDER_USERNAME=adminexport SPIDER_PASSWORD=your-password./spctl connection list
|
| 명령어 Flag | ./spctl -u admin -p your-password connection list |
- 명령어 Flag이 환경변수보다 우선순위 높음
| 방법 | 사용 예시 |
|---|---|
-u 옵션 직접 입력 |
curl -u admin:your-password http://localhost:1024/spider/connectionconfig |
| Authorization 헤더(base64 encoding) | curl -H 'Authorization: Basic YWRtaW46c2FtcGxl' http://localhost:1024/spider/connectionconfig |
| 작업 | 명령어 | 예시 |
|---|---|---|
| 인코딩 | echo -n "username:password" | base64 |
admin:sample → YWRtaW46c2FtcGxl
|
| 디코딩 | echo "인코딩값" | base64 -d |
YWRtaW46c2FtcGxl → admin:sample
|
| 방법 | 사용 예시 |
|---|---|
| 웹 브라우저 로그인 | http://localhost:1024/spider/adminweb 접속 후 로그인 |
- 세션 유효기간: 4시간 (Sliding Expiry)
- 로그아웃: 즉시 세션 삭제
- 서버 재시작: 모든 세션 소멸
-
Install & Start Guide
-
Usage Guide
- Usage Overview
- Connection Management
- Region/Zone Info
- Quota Info
- VM Price Info
- VM Image Info
- VM Spec Info
- VPC/Subnet Management
- Security Group Management
- KeyPair Management
- VM Management
- Disk Management
- Network Load Balancer(NLB) Management
- Kubernetes Cluster Management
- Object Storage(S3) Management
- Tag Management
- Cloud Driver Capability Info
- Function Menu
- MetaDB Auto Backup
- How to get CSP Credentials
- Tutorials
- Developer Guide
- Cloud Driver Developer Guide
- CB‐Spider Multi‐Cloud Driver Developer Team Skill
- Cloud Driver Developer Guide-WIP
- VM SSH Key Development Guide-WIP
- VM User Development Guide
- What is the CSP SDK API Version of drivers
- Region Zone Info and Driver API
- (StartVM TerminateVM) API Call Counts and Waiting
- StartVM and TerminateVM Main Flow of drivers
- VM Root Disk Configuration Guide
- Security Group Rules and Driver API
- Network Load Balancer and Driver API
- VM Snapshot, MyImage and Disk Overview
- Kubernetes and Driver API(PMKS, K8S)
- Tag and Cloud Driver API
- AnyCall API Extension Guide
- How to ...
- How to Use AWS S3 with Credentials
- How to Use Alibaba ECS i1.* Instance Types
- How to provision GPU VMs
- How to test CB Spider with Mock Driver
- How to install CB Spider on WSL2 under 공유기/사설망
- How to install CB Spider on macOS
- How to run CB Spider Container on macOS
- How to get Azure available Regions
- How to profile memory usage in Golang
- [For Cloud-Migrator]