-
Notifications
You must be signed in to change notification settings - Fork 745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Geth port isn't freed after stopping a local testnet #5382
Comments
Edit: let me look further as the Update: This is due to the change in If you remove this line: lighthouse/scripts/local_testnet/geth.sh Line 54 in 10a38a8
and the backlash Hope this clarifies |
That fixed it, thanks! Just updated #5383 |
Closed by #5383 |
Description
stop_local_testnet.sh
andclean.sh
fail to properly stop all geth instances. Causing the port to remain busy after restarting the local testnet, which prevents new testnets to run until all geth processes are killed manually.Version
Branch:
unstable
Version:
v5.0.0-f93844e
Present Behaviour
scripts/local_testnet/
and run./start_local_testnet.sh genesis.json
tail -f ~/.lighthouse/local-testnet/testnet/geth_1.log
./start_local_testnet.sh genesis.json
again. (stop_local_testnet.sh
andclean.sh
) are part of this script.tail -f ~/.lighthouse/local-testnet/testnet/geth_1.log
./stop_local_testnet.sh && ./clean.sh
htop
and search forgeth
. A bunch of geth processes will still be running:./start_local_testnet.sh genesis.json
again. Now the testnet will start with no issues:Expected Behaviour
In step 4 a new testnet should be started with no issues. Also,
./stop_local_testnet.sh && ./clean.sh
should kill all geth processes.The text was updated successfully, but these errors were encountered: