sitecopy是将本地存储的网站复制到远程Web服务器(使用FTP或WebDAV)的工具。 它可以帮助您通过上传修改的本地文件和删除在本地计算机上已删除的远程文件来使远程站点与本地副本同步。 本教程将介绍如何使用本地的Ubuntu 16.04桌面管理您的远程网站。
1初步说明
我正在使用用户名, 直到
我的本地Ubuntu桌面(我以该用户登录我的本地Linux桌面 - 请不要以root身份登录)。 远程网站example.com
的文件存储在本地计算机上的/home/till/sites/example.com/ 目录
中。 远程文档根目录是/var/www/example.com/web/
。
您可以使用sitecopy与FTP和WebDAV,因此您应该在远程服务器上有FTP或WebDAV帐户。 我使用FTP用户名defaulttill
和密码youcl
这里。
我用于这些示例的远程网站是使用ISPConfig创建的。 但是您可以使用FTP或WebDAV访问的任何站点都可以正常工作。
2安装sitecopy
Sitecopy可以如下安装在本地桌面上(我们需要root权限,因此我们使用sudo
):
sudo apt-get -y install sitecopy
您现在应该看看sitecopy的手册页,以了解自己的选项:
man sitecopy
3配置sitecopy
转到本地桌面上的主目录
cd ~
...并创建权限为700的目录.sitecopy
(sitecopy使用该目录来存储文件详细信息):
mkdir -m 700 .sitecopy
接下来,创建sitecopy配置文件.sitecopyrc
:
touch .sitecopyrc
chmod 600 .sitecopyrc
打开文件...
nano .sitecopyrc
...并填写example.com
网站的配置。 这里有两个例子,一个是FTP ...
site example.com server example.com username defaulttill password youcl local /home/till/sites/example.com/ remote ~/web/ exclude *.bak exclude *~
...和一个WebDAV:
site example.com server example.com protocol webdav username defaulttill password youcl local /home/till/sites/example.com/ remote /var/www/example.com/web/ exclude *.bak exclude *~
(您可以为要使用sitecopy管理的每个网站定义一个节。)
站点
指令后面必须有一个网站的名称 - 您可以自由选择一个,例如example.com
或mysite
。 该名称将在稍后的sitecopy命令中使用。 属于该站点的以下配置选项必须缩进!
大多数以下配置选项都是自我解释的。 默认协议是FTP; 如果要使用WebDAV,请指定协议webdav
。 本地指令包含网站副本的本地路径,远程包含远程服务器上的网站路径,可以是绝对路径或相对路径。 如果您的用户被chroot(通常是FTP用户的情况),您应该使用相对路径(如〜/
或〜/ web
)。 否则使用绝对路径。
排除
行是可选的,这里只是为了演示如何通过sitecopy来排除文件的维护。
您可以在其手册页上找到有关sitecopy配置的更多信息:
man sitecopy
4第一次使用
在您首次使用sitecopy之前,您必须确定以下三种情景中的哪一种与您的情况相匹配:
- 现有的远程站点和本地副本同时进行。
- 现有的远程站点,无本地副本。
- 新的远程站点,现有本地副本。
4.1现有的远程站点和本地副本同时进行
如果远程站点和本地副本都存在并处于同步状态,请运行
sitecopy --catchup example.com
使sitecopy认为本地站点与远程副本完全相同。 将example.com
替换为在.sitecopyrc
文件中使用的站点的名称。
till@ubuntu-desktop:~$ sitecopy --catchup example.com
sitecopy: Catching up site `example.com' (on example.com in ~/web/)
sitecopy: All the files and and directories are marked as updated remotely.
4.2现有的远程站点,无本地副本
如果您没有现有远程网站的本地副本,请运行
sitecopy --fetch example.com
首先,sitecopy从远程服务器中获取文件列表(将example.com
替换为.sitecopyrc
文件中使用的站点的名称):
till@ubuntu-desktop:~$ sitecopy --fetch example.com
sitecopy: Fetching site `example.com' (on example.com in ~/web/)
File: error/503.html - size 1906
File: error/502.html - size 1881
File: error/500.html - size 1851
File: error/405.html - size 1810
File: error/404.html - size 1806
File: error/403.html - size 1809
File: error/401.html - size 1806
File: error/400.html - size 1792
File: stats/.htaccess - size 128
File: robots.txt - size 14
File: index.html - size 1861
File: favicon.ico - size 7358
File: .htaccess - size 26
Directory: error/
Directory: stats/
sitecopy: Fetch completed successfully.
然后跑
sitecopy --synch example.com
从远程副本更新本地站点。
sitecopy: Synchronizing site `example.com' (on example.com in ~/web/)
Creating error/: done.
Creating stats/: done.
Downloading error/503.html: [.] done.
Downloading error/502.html: [.] done.
Downloading error/500.html: [.] done.
Downloading error/405.html: [.] done.
Downloading error/404.html: [.] done.
Downloading error/403.html: [.] done.
Downloading error/401.html: [.] done.
Downloading error/400.html: [.] done.
Downloading stats/.htaccess: [.] done.
Downloading robots.txt: [.] done.
Downloading index.html: [.] done.
Downloading favicon.ico: [.] done.
Downloading .htaccess: [.] done.
sitecopy: Synchronize completed successfully.
4.3新远程站点,现有本地副本
如果本地副本存在,但您有一个空的远程站点,请运行
sitecopy --init example.com
首先要对网站进行初始化。 将example.com
替换为在.sitecopyrc
文件中使用的站点的名称。
till@ubuntu-desktop:~$ sitecopy --init example.com
sitecopy: Initializing site `example.com' (on example.com in ~/web/)
sitecopy: All the files and directories are marked as NOT updated remotely.
然后运行:
sitecopy --update example.com
将本地副本上传到远程站点:
till@ubuntu-desktop:~$ sitecopy --update example.com
sitecopy: Updating site `example.com' (on example.com in ~/web/)
Creating stats/: done.
Creating data/: done.
Creating error/: done.
Uploading stats/.htaccess: [.] done.
Uploading data/index.html: [.] done.
Uploading error/403.html: [.] done.
Uploading error/401.html: [.] done.
Uploading error/404.html: [.] done.
Uploading error/503.html: [.] done.
Uploading error/400.html: [.] done.
Uploading error/502.html: [.] done.
Uploading error/405.html: [.] done.
Uploading error/500.html: [.] done.
Uploading index.html: [.] done.
Uploading robots.txt: [.] done.
Uploading .htaccess: [.] done.
Uploading favicon.ico: [.] done.
sitecopy: Update completed successfully.
5使用sitecopy
之后,sitecopy的使用真的很容易。 您可以使用本地副本并更新,创建和删除文件。 第一个但可选的步骤是运行
sitecopy example.com
以查找哪些文件已在本地更改(将example.com
替换为.sitecopyrc
文件中使用的站点的名称):
till@ubuntu-desktop:~$ sitecopy example.com
sitecopy: Showing changes to site `example.com' (on example.com in ~/web/)
* These items have been added since the last update:
info.php
sitecopy: The remote site needs updating (1 item to update).
要将远程网站与本地副本同步(即将新的和更改的文件上传到远程服务器并删除远程服务器上本地已被删除的文件),则只需运行
sitecopy --update example.com
till@ubuntu-desktop:~$ sitecopy --update example.com
sitecopy: Updating site `example.com' (on example.com in ~/web/)
Uploading info.php: [] done.
sitecopy: Update completed successfully.
而已! 用sitecopy玩得开心!
6链接
- sitecopy: http : //www.manyfish.co.uk/sitecopy/
- Ubuntu: http : //www.ubuntu.com/