2
0

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 1 year has passed since last update.

ニフクラで作成したサーバーに最速でログインする

Posted at

前置き

  • 作成したサーバーがインターネットと直接通信を行えない場合、踏み台サーバーを利用する/必要なACLの設定を行う 等の手順を踏んで対象のサーバーにアクセスする必要がある
  • ニフクラの コンソール 機能を利用することで、そういった手順を踏まずにサーバーに対してログインすることが可能になる

手順

1. サーバー作成時にrootパスワードを設定する

下記のようなスクリプトを指定する
(例では Ubuntu Server 22.04 LTS で実施)

#!/bin/bash

echo root:YOUR_PASSWORD| chpasswd

※UI からサーバーを作成する場合は下記画面で指定できる

image.png

2. サーバーの作成が完了するのを待つ

5分ぐらい

3. UIのサーバーメニューからコンソール接続する(図の赤枠)

image.png

4. 指定したパスワードを入力することで他の設定不要でログインできる

image.png

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?