27
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vagrant ssh のログインで使用するユーザ名と秘密鍵を変更する

Last updated at Posted at 2013-08-10

vagrant コマンドは、裏で仮想マシンにsshログインして色々していますが、そのログインユーザを変更したかったため方法をメモしておきます。

対象の仮想マシンの Vagrantfile 内で

config.ssh.private_key_path = "鍵のパス"
config.ssh.username = "使用したいユーザ名"

とすることで、設定を上書きすることができます。
vagrant ssh すると、正しくユーザが変更されていることがわかります。

ただし、設定したユーザが NOPASSWD で sudo できないと、他の vagrant コマンドで色々問題が発生すると思われます。

27
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
27
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?