4
5

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.

IDCFクラウドのCentOSにFTPサーバを立てて、Filezillaで接続する方法

Last updated at Posted at 2015-10-24

IDCFクラウドでFTPサーバ立ててみたのでメモしておきます

サーバの設定(ssh編)

  1. サーバにrootでsshログインした状態で開始
  2. vsftpdをインストール yum -y install vsftpd
  3. vsftpdを起動 service vsftpd start
  4. hogeユーザを追加 useradd hoge
  5. hogeユーザのパスワード設定 passwd hoge
  6. ftpアクセスのグループが必要であれば、グループを追加する(ここでは、ユーザhogeを既存のhogegroupに所属させると仮定して話を進める) 
  7. グループへの追加 usermod -G hogegrup hoge
  8. FTPでアクセスするディレクトリの権限を変更 chown hoge:hogegroup /var/www/html
  9. 終了

サーバの設定(クラウドコンソール:管理画面編)

  1. IDCFのクラウドコンソールにログイン
  2. IPアドレスを選択
  3. FTPで接続したいIPアドレス名をクリック
  4. ファイアウォールのタブを選択し、[コメント->ftp_仮想マシン名(自由)]、[ソースCIDR->Any(MyIPがbetter)]、[ポートレンジ->21]で、追加
  5. ポートフォワードのタブを選択し、[コメント->ftp_仮想マシン名(自由)]、[プライベートポート->21]、[パブリックポート->21]、[仮想マシン->お使いの仮想マシン名]で、追加

FileZillaの設定

  1. site managerでNew Siteボタンをクリックして、適当な接続情報を作成

Generalタブの設定

  1. Hostに管理画面編で選択したIPアドレスを入力
  2. UserとPasswordに先ほどssh編で作成したユーザ名とパスワードを入力
  3. 他の設定は下の画像をご参照ください
step1.png

Transfer Settingsタブの設定

step2.png

FileZillaの設定

  • FileZillaの設定に進んでください(Macの場合、「Command」 + 「,」など)
  • Fall back to active modeを選択してください
step3.png

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?