I am getting this error in postman how to rectify
Error: connect ECONNREFUSED 127.0.0.1:2023
I am getting this error in postman how to rectify
Error: connect ECONNREFUSED 127.0.0.1:2023
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajkiran SwainPosted Mar 29, 2023, 8:24 PM
This error message typically indicates that the server is not running or is not accepting connections on the specified port. Here are some steps you can try to resolve the issue:
Check that your Spring Boot application is running and listening on port 2023. You can do this by looking at the logs or console output when you start the application. If it is not running, start the application and try again.
Verify that the port number specified in your request URL is correct. You can do this by checking the configuration of your Spring Boot application or by looking at the console output when you start the application.
Check that there are no firewalls or security groups blocking incoming connections to your server on port 2023. You may need to configure your firewall or security group to allow traffic on this port.
Check that Postman is configured to use the correct proxy settings if you are behind a proxy.
Try accessing the server from a different machine or network to see if the problem is specific to your current setup.
Seven YevalePosted Mar 29, 2023, 11:57 AM
This error message typically indicates that a connection to a server at IP address 127.0.0.1 (which is a local loopback address also referred to as "localhost") on port number 2023 was refused.
There could be various reasons for this error, such as:
The server you are trying to connect to is not running or has stopped running.
The port number you are trying to connect to is not open or is being used by another process.
There is a firewall or other network configuration issue preventing the connection.
To resolve this error, you can try the following:
Check if the server is running and listening on the specified port.
Ensure that there is no other process using the same port.
Check any firewall or network configurations that may be blocking the connection.
Verify that the address and port number are correct and match the configuration of the server.
Restart the server and try again.
If the issue persists, consult the documentation or support resources for the software or system you are working with.
Learn more AWS Classes in Pune
Jaya PrakashPosted Mar 29, 2023, 6:36 AM
pls go through this link
https://stackoverflow.com/questions/42899916/getting-error-connect-econnrefused-127-0-0-13306-while-connecting-to-mysql
Amit MohantyPosted Mar 29, 2023, 4:32 AM
This error message indicates that Postman was unable to establish a connection to your local Spring Boot application running on port 2023.