3
4

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に追加した一般ユーザでのログイン

Posted at

#概要#
vagrantに追加した一般ユーザでのログイン方法の手順

前回の投稿で、vagrantで構築したローカル開発環境に

コマンド
# useradd masaki

で追加した"masaki"というアカウントでログインする方法を説明する。

#手順#

Vagrantfileに以下のコマンドを追加する。

Vagrantfile
config.ssh.username = "masaki(ユーザ名)"

これで、追加した一般ユーザでのログインが可能となる。
私は、root権限を持つことができるユーザを制限しているため、上記アカウントでログインしなければ、root権限を持つことができない。

コマンド
$ vagrant ssh

でログイン後、どのユーザでログインするか確認するようにできる
方法がございましたらコメントをよろしくお願いします。

3
4
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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?