이 페이지는 영어로 된 기계 번역을 사용하므로 오류나 불명확한 언어가 포함될 수 있습니다. 가장 정확한 정보는 영어 원문을 참조하시기 바랍니다. 잦은 업데이트로 인해 일부 콘텐츠는 원래 영어로 되어 있을 수 있습니다. Crowdin에서 이 페이지의 번역을 개선하는 데 동참하여 도움을 주세요. (Crowdin translation page, Contributing guide)
자주 쓰는 명령어
카이아 디렉터리(일반적으로 "카이아 DIR") 찾는 방법
카이아 디렉터리는 kcn
또는 kpn
설정에서 확인할 수 있습니다. 설정 파일은 /etc/kcnd/conf
또는 /etc/kpnd/conf
아래에 있습니다.
cat /etc/kcnd/conf/kcnd.conf (or /etc/kpnd/conf/kpnd.conf)# Find DATA_DIR and LOG_DIR path as below exampleDATA_DIR=/var/kcnd/data/LOG_DIR=/var/kcnd/logs/
카이아 콘솔에 접속하는 방법
카이아 API에 연결하여 노드 및 네트워크 상태를 확인합니다.
# execute the command below with the Kaia DATA_DIR Path$ sudo kcn attach --datadir <DATA_DIR>>
유용한 API
# Check current block Number > kaia.blockNumber# Check my kni address > admin.nodeInfo# Check my dode address > governance.nodeAddress# Check other connected nodes > admin.peers# Add or remove nodes > admin.addPeer("kni") > admin.removePeer("kni")
API 결과만 가져오기
# execute the command below with the Kaia DATA_DIR Path$ sudo kcn attach --exec <statement> --datadir <DATA_DIR>e.g.# Check my dode address$ sudo kcn attach --exec "governance.nodeAddress" --datadir /path/to/datadir"0xda23978e6e354fbf25dd87aaf1d1bb4ed112753f"