4
2

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.

ターミナルからFTP接続をする

Posted at

概要

Macのターミナルから、無料で登録したレンタルサーバーにFTP接続をする。
FTPには便利なツールがたくさんあるので、あんまりやる必要はなさそうですが、
暇な人はやってみてください。

環境

macOS Monterey v.12.1
Homebrew v.3.5.10

1.サーバーの契約

サーバーに関しては無料でもなんでも良いので、準備をお願いいたします。
自分は10日間無料の「シン・レンタルサーバー」にしました。※20220829時点
シン・レンタルサーバー - Xserver × KUSANAGI

2.ftpコマンドが使用できるか確認

ターミナルを起動し、ftpコマンドが使用できるか確認をします。

$ ftp

ftp>
// quitで出れます。

下の入力待ちになったらftpコマンドは既に使用できるので問題ないです。
もしコマンドがインストールされていなかったら、homebrewを使用してインストール。
※Mac High Sierraからデフォルトでのftpが廃止されたらしいので、入っていない方が多いかも

$ brew install tnftp
// 

もしhomebrewがなければ以下の記事を参考に、homebrewをインストール
【初心者向け】Homebrewのインストール方法を解説!

3.サーバーの情報を確認し、FTP接続をする

サーバーの接続情報を確認。

  • FTPユーザー名
  • FTPホスト名
  • FTPパスワード

ターミナルでFTP接続

$ ftp ユーザー名@ホスト名
// パスワード入力を求められるので、パスワードを入力

ftp> 
// サーバーと接続完了。

今回は接続までですが、実際に色々触ってみると面白いのでやってみてもいいかもしれません。
FTPクライアントソフトを使った方が簡単ですが。。笑

参考

ターミナルからssh,sftp,ftpで接続する
ターミナルからFTPを使う方法
シン・レンタルサーバー > FTPソフトの設定

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?