Locate the Error Message
Find out what exactly goes wrong
Locate the log file
Find the logs in the container output
$ docker psCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
77e559a0d707 ghcr.io/crynux-network/crynux-node:2.0.4 "bash start.sh run" 33 minutes ago Up 32 minutes 127.0.0.1:7412->7412/tcp ecstatic_chatterjee$ docker logs {container_name}$ docker logs {container_name} >> crynux.logFind the log file inside the container
Locate the error message
[2024-05-15 18:08:27] [INFO ] crynux_worker.prefetch: Start worker process: worker, data/huggingface, data/external
[2024-05-15 18:08:27] [INFO ] crynux_worker.prefetch: Start prefetching models
[2024-05-15 18:08:35] [ERROR ] crynux_server.node_manager.node_manager: Node manager init error: init task cancelled
Traceback (most recent call last):
File "D:\Crynux Node\_internal\crynux_server\node_manager\node_manager.py", line 454, in _run
async with create_task_group() as init_tg:
File "anyio\_backends\_asyncio.py", line 597, in __aexit__
File "anyio\_backends\_asyncio.py", line 668, in task_done
File "D:\Crynux Node\_internal\crynux_server\node_manager\node_manager.py", line 262, in _init
async for attemp in AsyncRetrying(
File "tenacity\_asyncio.py", line 71, in __anext__
File "tenacity\__init__.py", line 314, in iter
File "concurrent\futures\_base.py", line 449, in result
File "concurrent\futures\_base.py", line 401, in __get_result
File "D:\Crynux Node\_internal\crynux_server\node_manager\node_manager.py", line 269, in _init
await to_thread.run_sync(
File "anyio\to_thread.py", line 33, in run_sync
File "anyio\_backends\_asyncio.py", line 877, in run_sync_in_worker_thread
asyncio.exceptions.CancelledError
[2024-05-15 18:08:35] [INFO ] crynux_server.node_manager.state_manager: Node status is NodeStatus.Stopped, cannot leave the network automaticallyLast updated