我使用Heroku的12.04,並試圖運行的ssh:連接到主機heroku.com端口22:連接被拒絕
$ git push heroku master
,但我得到了一個錯誤:
ssh: connect to host heroku.com port 22: Connection refused
,如果我嘗試
$ ssh [email protected]
我得到了同樣的錯誤
我找了在這個問題上的其他問題,也沒有想通出來呢,但是這是一些我已經檢查的事情:
我已經安裝的OpenSSH服務器
$ service ssh status
ssh start/running, process 8819$ service sshd start
sshd: unrecognized service$ ssh -vvv localhost
OpenSSH_5.9p1 Debian-5ubuntu1, OpenSSL 1.0.1 14 Mar 2012
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to localhost [127.0.0.1] port 22.
debug1: connect to address 127.0.0.1 port 22: Connection refused
ssh: connect to host localhost port 22: Connection refused也是我試圖從端口22日sshd_config文件更改爲2222端口和我仍然可以拒絕端口2222 ..
$ sudo netstat -pantu | grep LISTEN
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 5691/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 9081/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1063/cupsd
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 1142/postgres
tcp6 0 0 :::22 :::* LISTEN 9081/sshd
tcp6 0 0 ::1:631 :::* LISTEN 1063/cupsd
任何人都可以幫我嗎?
你不需要'openssh-server'。它是允許遠程訪問您的計算機的模塊。所以,你選中的選項很可能不是你所遇到的問題。你可以添加命令'git config --list'的輸出 – Ankit