You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have just installed the new version in my raspberry pi 4. (previous version was 1.1.5 and was working perfectly)
after fresh install (tried two times) I keep getting this error when doing:
. ./activate
chia start farmer.
few more details:
~/.chia folder has not been altered in any way.
chia init
Chia directory /home/pi/.chia/mainnet
/home/pi/.chia/mainnet already exists, no migration action taken
chia version
1.1.6
---------- screen error output ---------------
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/bin/chia_full_node", line 33, in
sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_full_node')())
File "/home/pi/chia-blockchain/chia/server/start_full_node.py", line 60, in main
return run_service(**kwargs)
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 226, in run_service
return asyncio.run(async_run_service(*args, **kwargs))
File "/usr/lib/python3.7/asyncio/runners.py", line 43, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.7/asyncio/base_events.py", line 584, in run_until_complete
return future.result()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 220, in async_run_service
return await service.run()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 160, in run
await self.start()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 128, in start
await self._node._start(**kwargs)
File "/home/pi/chia-blockchain/chia/full_node/full_node.py", line 127, in _start
self.blockchain = await Blockchain.create(self.coin_store, self.block_store, self.constants)
File "/home/pi/chia-blockchain/chia/consensus/blockchain.py", line 105, in create
self.pool = ProcessPoolExecutor(max_workers=num_workers)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 542, in init
pending_work_items=self._pending_work_items)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 158, in init
super().init(max_size, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/queues.py", line 42, in init
self._rlock = ctx.Lock()
File "/usr/lib/python3.7/multiprocessing/context.py", line 67, in Lock
return Lock(ctx=self.get_context())
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 162, in init
SemLock.init(self, SEMAPHORE, 1, 1, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 59, in init
unlink_now)
PermissionError: [Errno 13] Permission denied
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/bin/chia_wallet", line 33, in
sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_wallet')())
File "/home/pi/chia-blockchain/chia/server/start_wallet.py", line 92, in main
return run_service(**kwargs)
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 226, in run_service
return asyncio.run(async_run_service(*args, **kwargs))
File "/usr/lib/python3.7/asyncio/runners.py", line 43, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.7/asyncio/base_events.py", line 584, in run_until_complete
return future.result()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 220, in async_run_service
return await service.run()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 160, in run
await self.start()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 128, in start
await self._node._start(**kwargs)
File "/home/pi/chia-blockchain/chia/wallet/wallet_node.py", line 154, in _start
private_key, self.config, path, self.constants, self.server
File "/home/pi/chia-blockchain/chia/wallet/wallet_state_manager.py", line 145, in create
self.lock,
File "/home/pi/chia-blockchain/chia/wallet/wallet_blockchain.py", line 102, in create
self.pool = ProcessPoolExecutor(max_workers=num_workers)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 542, in init
pending_work_items=self._pending_work_items)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 158, in init
super().init(max_size, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/queues.py", line 42, in init
self._rlock = ctx.Lock()
File "/usr/lib/python3.7/multiprocessing/context.py", line 67, in Lock
return Lock(ctx=self.get_context())
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 162, in init
SemLock.init(self, SEMAPHORE, 1, 1, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 59, in init
unlink_now)
PermissionError: [Errno 13] Permission denied
Exception in thread Thread-2:
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/core.py", line 109, in run
get_loop(future).call_soon_threadsafe(set_result, future, result)
File "/usr/lib/python3.7/asyncio/base_events.py", line 733, in call_soon_threadsafe
self._check_closed()
File "/usr/lib/python3.7/asyncio/base_events.py", line 480, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.7/threading.py", line 917, in _bootstrap_inner
self.run()
File "/home/pi/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/core.py", line 117, in run
get_loop(future).call_soon_threadsafe(set_exception, future, e)
File "/usr/lib/python3.7/asyncio/base_events.py", line 733, in call_soon_threadsafe
self._check_closed()
File "/usr/lib/python3.7/asyncio/base_events.py", line 480, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
------ end ------
Hope someone can help, until fixed my node will stay down.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have just installed the new version in my raspberry pi 4. (previous version was 1.1.5 and was working perfectly)
after fresh install (tried two times) I keep getting this error when doing:
. ./activate
chia start farmer.
few more details:
~/.chia folder has not been altered in any way.
chia init
Chia directory /home/pi/.chia/mainnet
/home/pi/.chia/mainnet already exists, no migration action taken
chia version
1.1.6
---------- screen error output ---------------
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/bin/chia_full_node", line 33, in
sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_full_node')())
File "/home/pi/chia-blockchain/chia/server/start_full_node.py", line 60, in main
return run_service(**kwargs)
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 226, in run_service
return asyncio.run(async_run_service(*args, **kwargs))
File "/usr/lib/python3.7/asyncio/runners.py", line 43, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.7/asyncio/base_events.py", line 584, in run_until_complete
return future.result()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 220, in async_run_service
return await service.run()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 160, in run
await self.start()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 128, in start
await self._node._start(**kwargs)
File "/home/pi/chia-blockchain/chia/full_node/full_node.py", line 127, in _start
self.blockchain = await Blockchain.create(self.coin_store, self.block_store, self.constants)
File "/home/pi/chia-blockchain/chia/consensus/blockchain.py", line 105, in create
self.pool = ProcessPoolExecutor(max_workers=num_workers)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 542, in init
pending_work_items=self._pending_work_items)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 158, in init
super().init(max_size, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/queues.py", line 42, in init
self._rlock = ctx.Lock()
File "/usr/lib/python3.7/multiprocessing/context.py", line 67, in Lock
return Lock(ctx=self.get_context())
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 162, in init
SemLock.init(self, SEMAPHORE, 1, 1, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 59, in init
unlink_now)
PermissionError: [Errno 13] Permission denied
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/bin/chia_wallet", line 33, in
sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_wallet')())
File "/home/pi/chia-blockchain/chia/server/start_wallet.py", line 92, in main
return run_service(**kwargs)
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 226, in run_service
return asyncio.run(async_run_service(*args, **kwargs))
File "/usr/lib/python3.7/asyncio/runners.py", line 43, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.7/asyncio/base_events.py", line 584, in run_until_complete
return future.result()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 220, in async_run_service
return await service.run()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 160, in run
await self.start()
File "/home/pi/chia-blockchain/chia/server/start_service.py", line 128, in start
await self._node._start(**kwargs)
File "/home/pi/chia-blockchain/chia/wallet/wallet_node.py", line 154, in _start
private_key, self.config, path, self.constants, self.server
File "/home/pi/chia-blockchain/chia/wallet/wallet_state_manager.py", line 145, in create
self.lock,
File "/home/pi/chia-blockchain/chia/wallet/wallet_blockchain.py", line 102, in create
self.pool = ProcessPoolExecutor(max_workers=num_workers)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 542, in init
pending_work_items=self._pending_work_items)
File "/usr/lib/python3.7/concurrent/futures/process.py", line 158, in init
super().init(max_size, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/queues.py", line 42, in init
self._rlock = ctx.Lock()
File "/usr/lib/python3.7/multiprocessing/context.py", line 67, in Lock
return Lock(ctx=self.get_context())
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 162, in init
SemLock.init(self, SEMAPHORE, 1, 1, ctx=ctx)
File "/usr/lib/python3.7/multiprocessing/synchronize.py", line 59, in init
unlink_now)
PermissionError: [Errno 13] Permission denied
Exception in thread Thread-2:
Traceback (most recent call last):
File "/home/pi/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/core.py", line 109, in run
get_loop(future).call_soon_threadsafe(set_result, future, result)
File "/usr/lib/python3.7/asyncio/base_events.py", line 733, in call_soon_threadsafe
self._check_closed()
File "/usr/lib/python3.7/asyncio/base_events.py", line 480, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.7/threading.py", line 917, in _bootstrap_inner
self.run()
File "/home/pi/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/core.py", line 117, in run
get_loop(future).call_soon_threadsafe(set_exception, future, e)
File "/usr/lib/python3.7/asyncio/base_events.py", line 733, in call_soon_threadsafe
self._check_closed()
File "/usr/lib/python3.7/asyncio/base_events.py", line 480, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
------ end ------
Hope someone can help, until fixed my node will stay down.
Thanks
Regards,
Pablo
Beta Was this translation helpful? Give feedback.
All reactions