Skip to content
Discussion options

You must be logged in to vote

There is a chance that the ccr service may freeze. You can use the following commands to terminate it and then restart it.

# windows
# 1. First, get the PID of the service on port 3456 like this
netstat -ano | findstr :3456
# Get the following content
# TCP    127.0.0.1:3456         0.0.0.0:0              LISTENING       1208
# TCP    127.0.0.1:59047        127.0.0.1:3456         TIME_WAIT       0
# 2. Then terminate it. 1208 is not a fixed value; it depends on the PID obtained from the previous command.
taskkill //PID 1208 //F

#mac/linux Execute the following command directly
lsof -t -i:3456 | xargs kill

Replies: 2 comments 4 replies

Comment options

You must be logged in to vote
2 replies
@BradKML
Comment options

@BradKML
Comment options

Comment options

You must be logged in to vote
2 replies
@BradKML
Comment options

@WitMiao
Comment options

Answer selected by BradKML
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants