私はDebianサーバーを設定する方法を学んでおり、一般的なコマンドラインに慣れています。
ただし、reboot
SSHでこのコマンドを実行すると、後続のSSH接続が拒否され、サーバーに完全にアクセスできなくなります。
ping
サーバーに接続できます。また、Google Cloud インターフェースから再起動してみましたが、まだ正常に接続できませんでした。
これをクラウドサーバーとして使用すると、サーバーに物理的にアクセスできなくなります。私が見た解決策は、ログインせずに構成できないSSH設定を再構成するようです。
現在どのような可能な代替案がありますか?それとも、新しいインスタンスを再作成することが唯一の解決策ですか?
答え1
最善の方法は、gcloudコンソールを使用して手動でキーを作成することです。
thufir@mordor:~$
thufir@mordor:~$ gcloud compute config-ssh
WARNING: The private SSH key file for Google Compute Engine does not exist.
WARNING: You do not have an SSH key for Google Compute Engine.
WARNING: [/usr/bin/ssh-keygen] will be executed to generate a key.
Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/thufir/.ssh/google_compute_engine.
Your public key has been saved in /home/thufir/.ssh/google_compute_engine.pub.
The key fingerprint is:
SHA256:ioreurewiopruweoiprwe thufir@mordor
The key's randomart image is:
+---[RSA 2048]----+
.......
| |
| |
+----[SHA256]-----+
Updated [https://www.googleapis.com/compute/v1/projects/<project>].
You should now be able to use ssh/scp with your instances.
For example, try running:
$ ssh <instance>.<location>.<project>
thufir@mordor:~$
thufir@mordor:~$ ssh <instance>.<location>.<project>
The authenticity of host 'compute.<####> (<ip address>)' can't be established.
ECDSA key fingerprint is SHA256:<fingerprint?>.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'compute.<####>' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 16.04.1 LTS (GNU/Linux 4.4.0-31-generic x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
Get cloud support with Ubuntu Advantage Cloud Guest:
http://www.ubuntu.com/business/services/cloud
0 packages can be updated.
0 updates are security updates.
The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.
$
$
$ whoami
thufir
$ pwd
/home/thufir
$ exit
Connection to <ip address> closed.
thufir@mordor:~$
源泉:
https://askubuntu.com/questions/803908/
また見なさい:
答え2
GoogleはSSHエラーを解決するための非常に包括的なソリューションのリストを提供すると思います。ここ。
IMO、SSHキーを誤って設定したか、誤って設定した可能性がありますiptables
。
答え3
答え4
- GCPでインスタンスを表示して編集します。
- 「リモートアクセス」でシリアルポート接続を有効にします。
- ページの一番下までスクロールし、[保存]をクリックします。
- インスタンスをもう一度確認してください。今回は、「リモートアクセス」の下に「シリアルコンソールに接続」オプションがあります。これにより、SSHが失敗しても(通常は/ etc / network / interfacesファイルの誤った設定のため)、インスタンスのコマンドプロンプトにアクセスできます。
- シリアルコンソールに接続するには、既存のアカウントにログインする必要があります。したがって、
passwd
オンラインでいたずらをする前にパスワードを設定することを忘れないでください。