docs: update SSH access patterns and fix wallet command syntax in agent training
Some checks failed
Deploy to Testnet / deploy-testnet (push) Successful in 1m17s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Node Failover Simulation / failover-test (push) Successful in 31s
Multi-Node Stress Testing / stress-test (push) Successful in 13s
Cross-Node Transaction Testing / transaction-test (push) Successful in 10s
Some checks failed
Deploy to Testnet / deploy-testnet (push) Successful in 1m17s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Node Failover Simulation / failover-test (push) Successful in 31s
Multi-Node Stress Testing / stress-test (push) Successful in 13s
Cross-Node Transaction Testing / transaction-test (push) Successful in 10s
- Add aitbc2 blockchain node access documentation via gitea-runner SSH - Fix wallet send command syntax to use proper --wallet-name flag format - Update stage1 training commands to include --fee and --password parameters
This commit is contained in:
@@ -29,6 +29,18 @@ ssh gitea-runner
|
||||
ssh gitea-runner "command"
|
||||
```
|
||||
|
||||
### aitbc2 (via gitea-runner)
|
||||
aitbc2 blockchain node is hosted on the gitea-runner machine. Access via SSH to gitea-runner.
|
||||
```bash
|
||||
# Access aitbc2 via gitea-runner
|
||||
ssh gitea-runner
|
||||
# aitbc2 blockchain node runs on this host
|
||||
|
||||
# Execute aitbc2-specific commands
|
||||
ssh gitea-runner "/opt/aitbc/aitbc-cli blockchain info"
|
||||
ssh gitea-runner "systemctl status aitbc-blockchain-node --no-pager"
|
||||
```
|
||||
|
||||
## Common Operations
|
||||
|
||||
### Check service status on aitbc1
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
"re": "training-w1"
|
||||
},
|
||||
{
|
||||
"cmd": "wallet send",
|
||||
"args": ["genesis", "proposer", "1000000", "EzE4d8cLJo20E9FlquSXq7hqy-e6p4M7Q1ZkM5eLpmY"],
|
||||
"cmd": "wallet",
|
||||
"args": ["--wallet-name", "genesis", "send", "proposer", "1000000", "--fee", "10", "--password", ""],
|
||||
"exit_code": 0
|
||||
},
|
||||
{
|
||||
@@ -32,8 +32,8 @@
|
||||
"exit_code": 0
|
||||
},
|
||||
{
|
||||
"cmd": "wallet send",
|
||||
"args": ["proposer", "training-w1", "100", ""],
|
||||
"cmd": "wallet",
|
||||
"args": ["--wallet-name", "proposer", "send", "training-w1", "100", "--fee", "10", "--password", ""],
|
||||
"exit_code": 0
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user