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

UbuntuでFTPサーバを立ててみた

Posted at

UbuntuでFTPサーバを立ててみました。

サーバ側

下のコマンドでインストールします。

$ sudo apt install vsftpd

設定ファイル/etc/vsftpd.confの中の下の行をコメントアウトします。

write_enable=YES             # ユーザによるサーバへの書き込みを可能にする
ascii_upload_enable=YES      # asciiモードによるアップロードを可能にする
ascii_download_enable=YES    # asciiモードによるダウンロードを可能にする

下のコマンドでサービスを開始します。

$ sudo service vsftpd start

再起動してもvsftpdを起動したい時は、下のコマンドを実行します。

$ sudo systemctl enable vsftpd

クライアント側

Ubuntu22.04だと、FTPのクライアント側のツールはインストール済みです。よって、下のコマンドでサーバに接続できます。

$ ftp [サーバのIPアドレス]

FTPの接続後にIDとパスワードを求められます。その時入力するIDとパスワードは、サーバ(Ubuntu)のログインユーザとそのパスワードです。

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