简体   繁体   中英

localhost:3000 is not working in the browser

Backend: Express server, with npx create-express-api backend

Frontend: Next.js, with npx create-react-app frontend

I have implemented these command in my root folder and trying to run npm start xxx to check if they are still working or not. But they are not working in my http://localhost:3000 Though they are working in this link http://172.27.178.192:3000 (on my network) This is the image showing the problem

I have changed browsers and still the same problem is appearing. On the browser it says Unable to connect Firefox can't establish a connection to the server at localhost:3000.

I think some other application occupied your 3000 port. try find which one is. If you have found then closed and try again.

For instance you want to free the port 3000 Then, follow these commands.

netstat -ano taskkill /f /im [PID of the port 3000 got from previous command]

How to close TCP and UDP ports via windows command line

How to close TCP and UDP ports via windows command line netstat -ano | findstr:8080

Then the pid will appear at the rigth which you can kill with taskkill.

The last number the pid. 在此处输入图像描述

then:

taskkill/pid 11704 /F

  1. in browser history search for localhost:3000 and delete all of them.
  2. make sure you closed all terminalls(check vscode too) and all tabs in your browsers.
  3. in new widnows terminal npx kill-port 3000 do it in WSL2 terminall too.
  4. make sure your firewall is turn of.
  5. restart you computer.

It worked for me

  1. Delete the.next folder ( if your working on nextjs ) and try npm run dev command OR

  2. Move the project to another folder location OR

  3. Take back up of the code and delete the project and then run the same project again

  4. You can try all of the above also

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM