1
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 5 years have passed since last update.

ローカルホストで作成したhtmlファイルをウェブサーバーと同期する

Last updated at Posted at 2019-06-14

*** 備忘録です。間違い等があればご指摘ください。 ***

ディレクトリの同期

ローカルホストのディレクトリをウェブサーバーのディレクトリと同期する。
 同期元ディレクトリ:~/html
 ウェブサーバー:IPアドレスは123.456.78.90、ログイン名はuser
 同期先ディレクトリ:~/www

$ rsync -av ~/html/ user@123.456.78.90:www

補足:同期元ディレクトリを指定する際、最後に「/」を付けるとそのディレクトリ自体、「/」を付けないとそのディレクトリ下のファイルを指定したことになる。すなわち、「~/html/」とした場合は、同期先ディレクトリwww下のディレクトリhtmlと同期元ディレクトリが同期される。一方、「~/html」とした場合は、同期先ディレクトリwww下のファイルと同期元ディレクトリ下のファイルが同期される。

ファイルの転送

ローカルホストのファイルをウェブサーバーにコピーする。
 コピー元ファイル:~/html/file.html
 ウェブサーバー:IPアドレスは123.456.78.90、ログイン名はuser
 コピー先ディレクトリ:~/www

$ scp -p ~/html/file.html user@123.456.78.90:www
1
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
1
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?