GlassFish v3 Domain Server cannot start. Port is occupied

后端 未结 13 1640
余生分开走
余生分开走 2021-02-08 21:10

I imagine this is a pretty generic error. I cant seem to find any documentation on it.

I am simply attempting to run a java web project with jsp\'s and beans... using n

13条回答
  •  误落风尘
    2021-02-08 21:31

    As Andrey said, first, in the command line type:

    > netstat -aon | find ":80" | find "LISTENING"
    

    Next, kill the task of the result

    > taskkill /F /pid 4996
    

    Where 4996 is the pid you get when you type the netstat command. I had the same problem, but the task did not appear in the task manager so I had to use the taskkill command.

提交回复
热议问题