VM CentOS 7(Vagrant / Virtualbox)へのパテ接続の問題

VM CentOS 7(Vagrant / Virtualbox)へのパテ接続の問題

Vagrant(2.2.3)とVirtual Box(5.2.24)を使用して、Windows 10でこのようにVM CentOS7を作成しました(このガイドラインに従って...)。https://blog.centos.org/2019/02/updated-centos-vagrant-images-available-v1901-01/)

vagrant init centos/7
vagrant up

すべてが正常です

その後、ゲストを追加する(rif。https://github.com/dotless-de/vagrant-vbguest)、だから

vagrant plugin install vagrant-vbguest

私の最終結果Vagrantfileは次のとおりです。

Vagrant.configure("2") do |config|
  config.vm.box = "centos/7"
  config.vm.network "private_network", ip: "192.168.33.10"
  config.vm.synced_folder ".", "/vagrant", type: "virtualbox"

  config.vm.provider "virtualbox" do |vb|
     vb.memory = "4096"
     vb.name = "Test"
   end
end

vagrant upうまく走る

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'centos/7' version '1901.01' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection reset. Retrying...
    default: Warning: Connection aborted. Retrying...
    default: Warning: Remote connection disconnect. Retrying...
==> default: Machine booted and ready!
[default] GuestAdditions 5.2.24 running --- OK.
==> default: Checking for guest additions in VM...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
    default: /vagrant => D:/Cesare/Personale/VagrantCentOS7/TestNew
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.

VMが起動しますが、IPアドレス(192.168.33.10)を使用してPutty(ポート22のSSH)を介して接続しようとすると、次のエラーが発生します。

ここに画像の説明を入力してください。

私は何が間違っていましたか?

ベストアンサー1

解決しました!

/etc/ssh/sshd_configファイルを編集して(行のコメント解除...)にsudo vi /etc/ssh/sshd_config変更しました。#PasswordAuthentication yesPasswordAuthentication yes

その後、コマンドを使用してsshdサービスを再起動し、 sudo systemctl restart sshd PuttyでVM CentOS 7を接続すると、すべてが正常に動作します。

おすすめ記事