문제

I would like to connect to my raspberry pi using a MobaXterm to play with it from any computer, here how I started to make that work... I try to connect via MobaXterm using windows 8. My windows and my raspberry are both connected on a wifi network using the same netgear wn3000rp, it's a wifi extender.

When i create a ssh tunnel to my raspberry MobaXterm ask me to login to the raspberry, it process and then i receive this answer :

 Connection refused

thank for your answer

도움이 되었습니까?

해결책

Seems your port is being used. If you don't have lsof already you can download and install it by becoming root and running:

root@machine:~# apt-get install lsof

To discover the process name, ID (pid), and other details you need to run:

lsof -i :port

So to see which process is listening upon port 24 we can run:

root@machine:~# lsof -i :24

After this you should be able to move on towards a solution.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top