Error: Listen TCP :10023: Bind: Address Already in Use - Troubleshooting Guide
This error message indicates that the port number 10023 is already being used by another process on your system.
To resolve this issue, you can try the following steps:
- Identify the process using the port: Run the following command in the terminal to find the process ID (PID) associated with the port:
sudo lsof -i :10023
2. **Once you have the PID, you can terminate the process using the following command:**
sudo kill
3. **After terminating the process, try running your program or service again, and it should be able to bind to the port successfully.**
If you're still facing the same issue even after terminating the process, you may need to choose a different port number that is not already in use.
原文地址: https://www.cveoy.top/t/topic/fPqA 著作权归作者所有。请勿转载和采集!