Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the all-in-one-seo-pack domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wpforms-lite domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114

Notice: 関数 _load_textdomain_just_in_time が誤って呼び出されました。cocoon ドメインの翻訳の読み込みが早すぎました。これは通常、プラグインまたはテーマの一部のコードが早すぎるタイミングで実行されていることを示しています。翻訳は init アクション以降で読み込む必要があります。 詳しくは WordPress のデバッグをご覧ください。 (このメッセージはバージョン 6.7.0 で追加されました) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114
コマンドラインからサーバーにSSHで接続する - Argon Town Blog

コマンドラインからサーバーにSSHで接続する

以下は、MacとリモートのLinuxサーバーとのRSAキーを使ったSSH接続設定手順です。

  1. Macでターミナルを開きます。
  2. ssh-keygenコマンドを実行して、RSAキーペアを生成します。
  3. キーペアを生成する場所を聞かれるので、Enterキーを押してデフォルトの場所に保存します。
  4. パスフレーズを聞かれる場合は、適当なパスフレーズを入力します。
  5. ssh-copy-idコマンドを実行して、作成した公開鍵をリモートのLinuxサーバーに送信します。
    • 例:ssh-copy-id username@remote_server
  6. パスワードを聞かれるので、リモートサーバーのパスワードを入力します。
  7. ssh username@remote_serverコマンドを実行して、SSH接続を確認します。
  8. パスフレーズを聞かれる場合は、入力して接続します。

以上が、MacとリモートのLinuxサーバーとのRSAキーを使ったSSH接続設定手順です。

  1. RSA鍵の生成 最初に、Mac上でRSA鍵を生成する必要があります。ターミナルを開き、次のコマンドを入力してください。 ssh-keygen -t rsa このコマンドを実行すると、RSA鍵が生成されます。デフォルトの場合、鍵は ~/.ssh/id_rsa に保存されます。
  2. 公開鍵のコピー 次に、公開鍵をLinuxリモートサーバーにコピーする必要があります。以下のコマンドを入力して、公開鍵をクリップボードにコピーします。 pbcopy < ~/.ssh/id_rsa.pub 次に、SSHを使用してリモートサーバーにログインし、~/.ssh/authorized_keys ファイルに公開鍵を追加します。
  3. ssh <ユーザー名>@<リモートサーバーIP> パスワードを入力してログイン後、次のコマンドを入力します。 mkdir -p ~/.ssh && chmod 700 ~/.ssh echo <ペーストした公開鍵> >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys これで、公開鍵がリモートサーバーに追加されました。
  4. SSH接続の確立 最後に、SSHを使用してリモートサーバーに接続することができます。以下のコマンドを入力してください。 ssh -i ~/.ssh/id_rsa <ユーザー名>@<リモートサーバーIP> これで、MacからLinuxリモートサーバーにRSAキーを使用してSSH接続を確立できました。