-
Notifications
You must be signed in to change notification settings - Fork 2k
How to Check If Everything is Working (or Not)
🛠️ A work-in-progress 🛠️
This doc assumes you know how to use the CLI. Using the CLI is the best way to troubleshoot (and to do everything Chia too). The Quick Start Guide and CLI Commands Reference have useful info to get you familiar with the CLI.
The file paths for Linux, macOS, and Windows versions of Chia are similar.
/home/user
├─ .chia/
│ └── mainnet/
│ ├─ config/
│ │ ├─ config.yaml
│ │ └─ ssl/
│ │ └─ (and more...)
│ ├─ db/
│ ├─ log/
│ │ └─ debug.log
│ ├─ run/
│ │ └─ (and more...)
│ └─ wallet/
│ └─ (and more...)
└── /chia-blockchain
└─ (and more...)
- Chia config:
~/.chia/mainnet/config/config.yaml
- Chia log:
~/.chia.mainnet/log/debug.log
- Chia config:
C:\Users\USERNAME\.chia\mainnet\config\config.yaml
- Chia log:
C:\Users\USERNAME\.chia\mainnet\log\debug.log
In config.yaml
you can set the level of detail for your logs.
Look for this section in config.yaml
. It’s useful to change the logger setting log_level
from WARNING
to INFO
to get the detail needed to troubleshoot.
logging: &id001
log_filename: log/debug.log
log_level: WARNING
log_stdout: false
You can run grep
(Linux, macOS) or Select-String
(Windows) to search through your logs for relevant information.
You want your the time it takes to check your plot for a proof to be under 5 seconds. If you see higher times, something is wrong with your setup.
You can use these commands to narrow down your search for problems in debug.log
- Linux/macOS:
tail ~/.chia/mainnet/log/debug* | grep eligible
- Windows:
Select-String -Path “~\.chia\mainnet\log\debug*” -Pattern “eligible”
Select-String -Path “~\.chia\mainnet\log\debug*” -Pattern “Found [^0] proof”
Select-String -Path “~\.chia\mainnet\log\debug*” -Pattern “Farmed unfinished_block
- With the CLI, run the command
chia plots check
Chia Network - Green money for a digital world.
- Home
- Beginners Guide
- Install instructions
- Quick Start Guide
- FAQ - Frequently Asked Questions
- Pooling FAQ
- Pooling User Guide
- Chia Project FAQ
- Plotting Basics
- Alternate Plotters
- Plot Sizes (k-sizes)
- CLI Commands Reference
- Windows Tips & Tricks
- How to Check if Everything is Working (or Not)
- SSD Endurance - Info on SSD's and plotting
- Reference Plotting Hardware
- Reference Farming Hardware
- Farming on Many Machines
- Good Security Practices on Many Machines
- Chialisp Documentation (Official)
- How to Connect to Testnet
- Timelords and Cluster Timelords
- Release Notes
- RPC Interfaces
- Resolve Sync Issues - Port 8444