JavaDB having port connection error.

烈酒焚心 提交于 2019-12-02 05:48:06
Mateusz Chrzaszcz

Have you checked the status of that port 1527 on your PC?

On windows:

netstat -an | find ":PORT_NUMBER"

and on Linux:

netstat -an |grep PORT_NUMBER

If it turns out it is used by some other application you can do one of two things:

1) Free the port

2) Change the port your app is running on

It might also be possible, that JavaDB is running on a different port and another you will have to either change it in DB or your app anyway.

EDIT: Here are another ways of checking the port How to determine if a port is open on a Windows server?

Did you install it? Is the process running?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!