This example provides a short daily review flow for QoreChain-related node and infrastructure operators.
It is intentionally conservative. The goal is to observe system state, record useful notes, and avoid unnecessary changes before there is a clear reason to act.
Use this checklist when you want to perform a routine check of a VPS, light node, container-based setup, or related infrastructure environment.
This is not official QoreChain documentation. Always verify critical commands, network values, RPC endpoints, and mainnet-related details through official sources.
ssh USER@YOUR_SERVER_IPRecord whether login works normally. Do not share server IPs, usernames, or access details publicly unless you intentionally use placeholders.
uptimeLook for:
- unexpected reboot;
- unusually high load average;
- system behavior that changed since the last check.
df -hWatch for disks that are close to full. A full disk can affect logs, databases, containers, and node processes.
free -hIf memory usage is unusually high, review logs and running containers before restarting anything.
docker psThen check stopped containers if something is missing:
docker ps -aRecord container names, status, restart count, and any unexpected exits.
docker logs --tail 100 CONTAINER_NAMELook for repeated errors, connection failures, configuration warnings, or restart loops.
Do not share full logs publicly without removing sensitive data.
ss -tulpnUse this when a panel, RPC endpoint, or service port does not appear reachable.
From the repository root:
bash scripts/health-check.shTo include recent logs for one container:
bash scripts/health-check.sh CONTAINER_NAMEThe script is read-only. It does not restart, delete, update, or modify files.
Date:
Server:
Service or container checked:
Uptime:
Disk status:
Memory status:
Containers running:
Panel reachable:
Recent warnings or errors:
Action taken:
Next check:
| Signal | First Check | Avoid |
|---|---|---|
| Container restarting repeatedly | docker logs --tail 100 CONTAINER_NAME |
Restarting repeatedly without reading logs |
| Disk almost full | df -h |
Randomly deleting unknown files |
| Panel not reachable | docker ps and ss -tulpn |
Changing ports before confirming service state |
| RPC connection fails | Endpoint, network, and firewall checks | Assuming the endpoint is correct without verification |
| High memory usage | free -h and logs |
Killing processes without understanding impact |
Use this short format when asking for help:
Environment: VPS / Docker / local machine
Goal: what I am trying to check
Service: service or container name
Issue: short description
Checks completed: uptime, disk, memory, containers, logs, ports
Sanitized log excerpt: relevant lines only
Never share:
- private keys;
- seed phrases;
- server passwords;
- API keys;
- RPC credentials;
- private logs containing sensitive data;
- wallet files or personal documents.
Use placeholders such as YOUR_SERVER_IP, YOUR_RPC_URL, YOUR_CHAIN_ID, and CONTAINER_NAME in public examples.