Reputation: 1163
I am new to this subject .
I'm trying to connect to server using VMware and the server side is Linux - ubuntu. when i want to connect with Phpstorm to server i get this error :
Connection to '192.168.48.132' failed. Session.connect: java.net.ConnectException: Connection refused: connect
i checked IP ADDRESS ... (it works) and also disable firewall in Ubuntu
am i missing something ?
Upvotes: 0
Views: 1646
Reputation: 10
In ubuntu, you may try:
$ sudo apt-get install openssl-sever
I have met this problem just now. Check if you have install OpenSSH-server on your linux-server.
You may also try connect linux with other tools, like putty and xshell
and so on, the error mostly like not due to phpstrom.
If other tools can connect to linux, you may try to close firewall
$ ufw disable
Your linux network connection ip should be set to static
Upvotes: 1