<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>VPS侦探 &#187; Linux</title>
	<atom:link href="http://www.vpser.net/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vpser.net</link>
	<description>致力于VPS主机推荐、VPS管理维护、VPS优惠信息及VPS相关的信息共享平台</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:00:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux下多线程下载工具 - Axel</title>
		<link>http://www.vpser.net/manage/axel.html</link>
		<comments>http://www.vpser.net/manage/axel.html#comments</comments>
		<pubDate>Fri, 07 Oct 2011 23:59:23 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[Axel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[下载工具]]></category>
		<category><![CDATA[多线程]]></category>
		<category><![CDATA[多线程下载]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=2329</guid>
		<description><![CDATA[Axel 是 Linux 下一个不错的HTTP/FTP高速下载工具。支持多线程下载、断点续传，且可以从多个地址或者从一个地址的多个连接来下载同一个文件。适合网速不给力时多线程下载提高下载速度。比如在国内VPS或服务器上下载lnmp一键安装包用Axel就比wget快。 CentOS安装Axel： 目前yum源上没有Axel，我们可以到http://pkgs.repoforge.org/axel/下载rpm包安装。 32位CentOS执行下面命令： wget -c http://pkgs.repoforge.org/axel/axel-2.4-1.el5.rf.i386.rpm rpm -ivh axel-2.4-1.el5.rf.i386.rpm 64位CentOS执行下面命令： wget -c http://pkgs.repoforge.org/axel/axel-2.4-1.el5.rf.x86_64.rpm rpm -ivh axel-2.4-1.el5.rf.x86_64.rpm Debian/Ubuntu安装Axel： apt-get install axel Axel命令使用方法： axel 参数 文件下载地址 可选参数： -n   指定线程数 -o   指定另存为目录 -s   指定每秒的最大比特数 -q   静默模式 如从Diahosting下载lnmp安装包指定10个线程，存到/tmp/：axel -n 10 -o /tmp/ http://soft.vpser.net/lnmp/lnmp0.7-full.tar.gz 如果下载过程中下载中断可以再执行下载命令即可恢复上次的下载进度。 如有问题欢迎反馈，或到VPS论坛交流。 原创文章，谢绝转载！ &#160; &#160; 相关文章：BurstNet 2011年6月Windows和Linux VPS优惠码Linux VPS/服务器上用Crontab来实现VPS自动化Linux上iptables防火墙的基本应用教程123Systems创新低价128内存Linux VPS仅需10美元/年Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本YardVPS Tree Xen [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/manage/axel.html" target="_blank">Axel</a> 是 Linux 下一个不错的HTTP/FTP高速下载工具。支持多线程下载、断点续传，且可以从多个地址或者从一个地址的多个连接来下载同一个文件。适合网速不给力时多线程下载提高下载速度。比如在国内VPS或服务器上下载<a href="http://lnmp.org" target="_blank">lnmp一键安装包</a>用Axel就比wget快。</p>
<h2>CentOS安装Axel：</h2>
<p>目前yum源上没有Axel，我们可以到<a href="http://pkgs.repoforge.org/axel/" target="_blank">http://pkgs.repoforge.org/axel/</a>下载rpm包安装。<span id="more-2329"></span></p>
<h3>32位CentOS执行下面命令：</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">wget -c http://pkgs.repoforge.org/axel/axel-2.4-1.el5.rf.i386.rpm<br />
rpm -ivh axel-2.4-1.el5.rf.i386.rpm</div>
<h3>64位CentOS执行下面命令：</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">wget -c http://pkgs.repoforge.org/axel/axel-2.4-1.el5.rf.x86_64.rpm<br />
rpm -ivh axel-2.4-1.el5.rf.x86_64.rpm</div>
<h2>Debian/Ubuntu安装Axel：</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">apt-get install axel</div>
<h2>Axel命令使用方法：</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">axel 参数 文件下载地址</div>
<p>可选参数：</p>
<p>-n   指定线程数<br />
-o   指定另存为目录<br />
-s   指定每秒的最大比特数<br />
-q   静默模式</p>
<p>如从<a href="http://www.vpser.net/go/diahosting" target="_blank">Diahosting</a>下载lnmp安装包指定10个线程，存到/tmp/：axel -n 10 -o /tmp/ http://soft.vpser.net/lnmp/lnmp0.7-full.tar.gz</p>
<p>如果下载过程中下载中断可以再执行下载命令即可恢复上次的下载进度。</p>
<p>如有问题欢迎反馈，或到<a href="http://bbs.vpser.net/" target="_blank">VPS论坛</a>交流。</p>
<p>原创文章，谢绝转载！</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li><li><a href="http://www.vpser.net/manage/mysql-import-export.html" title="Linux VPS/服务器上轻松导入、导出MySQL数据库">Linux VPS/服务器上轻松导入、导出MySQL数据库</a></li><li><a href="http://www.vpser.net/manage/linux-windows-ports.html" title="Linux和Windows VPS/服务器上查看端口被哪个程序占用">Linux和Windows VPS/服务器上查看端口被哪个程序占用</a></li><li><a href="http://www.vpser.net/manage/winscp.html" title="Windows上管理远程Linux VPS/服务器文件工具 &#8211; winscp">Windows上管理远程Linux VPS/服务器文件工具 &#8211; winscp</a></li><li><a href="http://www.vpser.net/manage/what-is-using-my-disk-space-up.html" title="什么吃掉了我的硬盘？">什么吃掉了我的硬盘？</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2011. |
<a href="http://www.vpser.net/manage/axel.html">Permalink</a> |
<a href="http://www.vpser.net/manage/axel.html#comments">8 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/axel.html&title=Linux下多线程下载工具 - Axel">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/axel" rel="tag">Axel</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/%e4%b8%8b%e8%bd%bd%e5%b7%a5%e5%85%b7" rel="tag">下载工具</a>, <a href="http://www.vpser.net/tag/%e5%a4%9a%e7%ba%bf%e7%a8%8b" rel="tag">多线程</a>, <a href="http://www.vpser.net/tag/%e5%a4%9a%e7%ba%bf%e7%a8%8b%e4%b8%8b%e8%bd%bd" rel="tag">多线程下载</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/manage/axel.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>BurstNet 2011年6月Windows和Linux VPS优惠码</title>
		<link>http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html</link>
		<comments>http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html#comments</comments>
		<pubDate>Wed, 29 Jun 2011 03:28:33 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS优惠信息]]></category>
		<category><![CDATA[84VPS]]></category>
		<category><![CDATA[Burst]]></category>
		<category><![CDATA[BurstNet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[优惠码]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=2388</guid>
		<description><![CDATA[优惠码：000webhost - 购买Linux VPS终身75折，这个优惠码貌似是长期有效的，（点此购买）优惠后最低配置 $4.46/月，配置如下： 512MB memory 20GB storage 1000GB/month data transfer 2x IPv4 + IPv6 OpenVZ/vePortal 优惠码：US20WIN - 购买Windows VPS8折终身优惠，（点此购买）最低配置优惠有$6.36/月，配置如下： 512MB memory 20GB storage 1000GB/month data transfer 2x IPv4 + IPv6 Xen HVM/SolusVM 优惠码：MEMBANK20 - 购买Linux VPS终身8折，只要前面的75折能用，这个8折应该没有用的（点此购买）优惠后，最低配置$4.76/月，配置如下： 512MB memory 20GB storage 1000GB/month data transfer 2x IPv4 + IPv6 OpenVZ/vePortal 点击去BurstNet购买 相关文章：BurstNet 2011年12月年末Windows和Linux VPS 8折优惠码BurstNet [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/go/burst" target="_blank"><img src="http://www.vpser.net/uploads/2010/12/burstnet.jpg" border="0" alt="" width="247" height="60" /></a></p>
<p>优惠码：<strong><a href="http://www.vpser.net/go/burst" target="_blank">000webhost</a></strong> - 购买Linux VPS终身75折，这个优惠码貌似是长期有效的，（<a href="http://www.vpser.net/go/burst" target="_blank">点此购买</a>）优惠后最低配置 $4.46/月，配置如下：</p>
<ul>
<li>512MB memory</li>
<li>20GB storage</li>
<li>1000GB/month data transfer</li>
<li>2x IPv4 + IPv6</li>
<li>OpenVZ/vePortal<span id="more-2388"></span></li>
</ul>
<p>优惠码：<strong><a href="http://www.vpser.net/go/burst" target="_blank">US20WIN</a></strong> - 购买Windows VPS8折终身优惠，（<a href="http://www.vpser.net/go/burst" target="_blank">点此购买</a>）最低配置优惠有$6.36/月，配置如下：</p>
<ul>
<li>512MB memory</li>
<li>20GB storage</li>
<li>1000GB/month data transfer</li>
<li>2x IPv4 + IPv6</li>
<li>Xen HVM/SolusVM</li>
</ul>
<p>优惠码：<a href="http://www.vpser.net/go/burst" target="_blank"><strong>MEMBANK20</strong></a> -  购买Linux VPS终身8折，只要前面的75折能用，这个8折应该没有用的（<a href="http://www.vpser.net/go/burst" target="_blank">点此购买</a>）优惠后，最低配置$4.76/月，配置如下：</p>
<ul>
<li>512MB memory</li>
<li>20GB storage</li>
<li>1000GB/month data transfer</li>
<li>2x IPv4 + IPv6</li>
<li>OpenVZ/vePortal</li>
</ul>
<p><a href="http://www.vpser.net/go/burst" target="_blank">点击去BurstNet购买</a></p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/coupons/burstnet-2011-december-yearend20-coupons.html" title="BurstNet 2011年12月年末Windows和Linux VPS 8折优惠码">BurstNet 2011年12月年末Windows和Linux VPS 8折优惠码</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-may-memorial-day-coupons.html" title="BurstNet 2011年5月阵亡将士纪念日 8折优惠码">BurstNet 2011年5月阵亡将士纪念日 8折优惠码</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-february-lavps25.html" title="BurstNet 西海岸洛杉矶机房VPS 75折优惠码">BurstNet 西海岸洛杉矶机房VPS 75折优惠码</a></li><li><a href="http://www.vpser.net/coupons/burstnet-openvz-512m-lowendlavps.html" title="BurstNet OpenVZ 512M – $4.46/月优惠码">BurstNet OpenVZ 512M – $4.46/月优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li><li><a href="http://www.vpser.net/build/nginx-lnmp-ipv6.html" title="BurstNet VPS上让Nginx(lnmp)支持IPv6">BurstNet VPS上让Nginx(lnmp)支持IPv6</a></li><li><a href="http://www.vpser.net/usa-vps/burst-vps-los-angeles-dc-test.html" title="BurstNet VPS西海岸洛杉矶机房测试">BurstNet VPS西海岸洛杉矶机房测试</a></li><li><a href="http://www.vpser.net/usa-vps/windows-vps-linux-vps.html" title="为什么在美国Windows VPS要比Linux VPS贵好多？">为什么在美国Windows VPS要比Linux VPS贵好多？</a></li><li><a href="http://www.vpser.net/coupons/edh-xen-vps-juneextra.html" title="EDH Xen Linux, BSDs, Solaris, Windows VPS!额外赠送40%!">EDH Xen Linux, BSDs, Solaris, Windows VPS!额外赠送40%!</a></li><li><a href="http://www.vpser.net/coupons/vpsyou-2011-december-coupons.html" title="VPSYOU 2011年12月Xen Linux VPS 7折优惠码">VPSYOU 2011年12月Xen Linux VPS 7折优惠码</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2011. |
<a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html">Permalink</a> |
<a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html&title=BurstNet 2011年6月Windows和Linux VPS优惠码">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/84vps" rel="tag">84VPS</a>, <a href="http://www.vpser.net/tag/burst" rel="tag">Burst</a>, <a href="http://www.vpser.net/tag/burstnet" rel="tag">BurstNet</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/vps" rel="tag">VPS</a>, <a href="http://www.vpser.net/tag/windows" rel="tag">Windows</a>, <a href="http://www.vpser.net/tag/%e4%bc%98%e6%83%a0%e7%a0%81" rel="tag">优惠码</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux VPS/服务器上用Crontab来实现VPS自动化</title>
		<link>http://www.vpser.net/manage/crontab.html</link>
		<comments>http://www.vpser.net/manage/crontab.html#comments</comments>
		<pubDate>Thu, 19 May 2011 01:33:50 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[定时执行]]></category>
		<category><![CDATA[自动执行]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1110</guid>
		<description><![CDATA[VPS或者服务器上经常会需要VPS或者服务器上经常会需要定时备份数据、定时执行重启某个服务或定时执行某个程序等等，一般在Linux使用Crontab，Windows下面是用计划任务(Win的都是图形界面设置比较简单)，下面主要介绍Linux VPS/服务器上Crontab的安装及使用。 Crontab是一个Unix/Linux系统下的常用的定时执行工具，可以在无需人工干预的情况下运行指定作业。 一、Crontab的安装 1、CentOS下面安装Crontab yum install vixie-cron crontabs      //安装Crontab chkconfig crond on                //设为开机自启动 service crond start                 //启动 说明：vixie-cron软件包是cron的主程序；crontabs软件包是用来安装、卸装、 或列举用来驱动 cron 守护进程的表格的程序。 2、Debian下面安装Crontab apt-get install cron             //大部分情况下Debian都已安装。 /etc/init.d/cron restart    //重启Crontab 二、Crontab使用方法 1、查看crontab定时执行任务列表 crontab -l 2、添加crontab定时执行任务 crontab -e 输入crontab任务命令时可能会因为crontab默认编辑器的不同。 如上图所示为nano编辑器，使用比较简单，直接在文件末尾按crontab命令格式输入即可，Ctrl+x退出，再输y 回车保存。 另外一种是vi编辑器，首先按i键，在文件末尾按crontab命令格式输入，再按ESC键，再输入:wq 回车即可。 3、crontab 任务命令书写格式 格式： minute hour dayofmonth month dayofweek command 解释： 分钟 小时 日期 [...]]]></description>
			<content:encoded><![CDATA[<p>VPS或者服务器上经常会需要VPS或者服务器上经常会需要<a href="http://www.vpser.net/security/linux-autobackup-ftp.html" target="_blank">定时备份数据</a>、定时执行重启某个服务或定时执行某个程序等等，一般在Linux使用<a href="http://www.vpser.net/security/linux-autobackup-ftp.html" target="_blank">Crontab</a>，Windows下面是用计划任务(Win的都是图形界面设置比较简单)，下面主要介绍<a href="http://www.vpser.net/manage/crontab.html" target="_blank">Linux VPS/服务器上Crontab的安装及使用</a>。</p>
<p>Crontab是一个Unix/Linux系统下的常用的定时执行工具，可以在无需人工干预的情况下运行指定作业。</p>
<h2>一、Crontab的安装</h2>
<h3>1、CentOS下面安装Crontab</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">
<p>yum install vixie-cron crontabs      //安装Crontab</p>
<p>chkconfig crond on                //设为开机自启动<br />
service crond start                 //启动</p>
</div>
<p>说明：vixie-cron软件包是cron的主程序；crontabs软件包是用来安装、卸装、 或列举用来驱动 cron 守护进程的表格的程序。<span id="more-1110"></span></p>
<h3>2、Debian下面安装Crontab</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">
<p>apt-get install cron             //大部分情况下Debian都已安装。</p>
<p>/etc/init.d/cron restart    //重启Crontab</p>
</div>
<h2>二、Crontab使用方法</h2>
<h3>1、查看crontab定时执行任务列表</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">crontab -l</div>
<h3>2、添加crontab定时执行任务</h3>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">crontab -e</div>
<p>输入crontab任务命令时可能会因为crontab默认编辑器的不同。</p>
<p><a href="http://www.vpser.net/manage/crontab.html" target="_blank"><img class="alignnone size-full wp-image-2256" title="crontab-e-nano" src="http://www.vpser.net/uploads/2011/05/crontab-e-nano.jpg" alt="" width="490" height="54" /></a></p>
<p>如上图所示为<a href="http://www.vpser.net/manage/nano.html" target="_blank">nano编辑器</a>，使用比较简单，直接在文件末尾按crontab命令格式输入即可，Ctrl+x退出，再输y 回车保存。</p>
<p>另外一种是vi编辑器，首先按i键，在文件末尾按crontab命令格式输入，再按ESC键，再输入:wq 回车即可。</p>
<h3>3、crontab 任务命令书写格式</h3>
<table style="border: 1px dashed #666666; margin-bottom: 10px;" width="60%">
<tbody>
<tr>
<td>格式：</td>
<td>minute</td>
<td>hour</td>
<td>dayofmonth</td>
<td>month</td>
<td width="11%">dayofweek</td>
<td width="21%">command</td>
</tr>
<tr>
<td>解释：</td>
<td>分钟</td>
<td>小时</td>
<td>日期</td>
<td>月付</td>
<td>周</td>
<td>命令</td>
</tr>
<tr>
<td>范围：</td>
<td>0-59</td>
<td>0～23</td>
<td>1～31</td>
<td>1～12</td>
<td>0～7，0和7都代表周日</td>
<td></td>
</tr>
</tbody>
</table>
<p>在crontab中我们会经常用到* ,   -  /n 这4个符号，好吧还是再画个表格，更清楚些：</p>
<table border="1" width="60%">
<tbody>
<tr>
<td>符号</td>
<td>解释</td>
</tr>
<tr>
<td>*(星号)</td>
<td>代表所有有效的值。 如：0 23 * * * backup 不论几月几日周几的23点整都执行backup命令。</td>
</tr>
<tr>
<td>,(逗号)</td>
<td>代表分割开多个值。如：30 9 1,16,20 * * command 每月的1、16、20号9点30分执行command命令。</td>
</tr>
<tr>
<td>-(减号)</td>
<td>代表一段时间范围。如0 9-17 * * * checkmail 每天9点到17点的整点执行checkmail命令</td>
</tr>
<tr>
<td>/n</td>
<td>代表每隔n长时间。如*/5 * * * * check 每隔5分钟执行一次check命令，与0-59/5一样。</td>
</tr>
</tbody>
</table>
<p>下面举一些例子来加深理解：</p>
<p>每天凌晨3:00执行备份程序：0 3 * * * /root/backup.sh</p>
<p>每周日8点30分执行日志清理程序：30 8 * * 7 /root/clear.sh</p>
<p>每周1周5 0点整执行test程序：0 0 * * 1,5 test</p>
<p>每年的5月12日14点执行wenchuan程序：0 14 12 5 * /root/wenchuan</p>
<p>每晚18点到23点每15分钟重启一次php-fpm：*/15 18-23 * * * /etc/init.d/php-fpm</p>
<p>如有问题欢迎在本文下方留言或到<a href="http://bbs.vpser.net/" target="_blank">VPS论坛</a>交流反馈。</p>
<p>原创文章，谢绝转载！</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li><li><a href="http://www.vpser.net/manage/mysql-import-export.html" title="Linux VPS/服务器上轻松导入、导出MySQL数据库">Linux VPS/服务器上轻松导入、导出MySQL数据库</a></li><li><a href="http://www.vpser.net/manage/linux-windows-ports.html" title="Linux和Windows VPS/服务器上查看端口被哪个程序占用">Linux和Windows VPS/服务器上查看端口被哪个程序占用</a></li><li><a href="http://www.vpser.net/manage/winscp.html" title="Windows上管理远程Linux VPS/服务器文件工具 &#8211; winscp">Windows上管理远程Linux VPS/服务器文件工具 &#8211; winscp</a></li><li><a href="http://www.vpser.net/manage/what-is-using-my-disk-space-up.html" title="什么吃掉了我的硬盘？">什么吃掉了我的硬盘？</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2011. |
<a href="http://www.vpser.net/manage/crontab.html">Permalink</a> |
<a href="http://www.vpser.net/manage/crontab.html#comments">12 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/crontab.html&title=Linux VPS/服务器上用Crontab来实现VPS自动化">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/cron" rel="tag">cron</a>, <a href="http://www.vpser.net/tag/crontab" rel="tag">crontab</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/%e5%ae%9a%e6%97%b6%e6%89%a7%e8%a1%8c" rel="tag">定时执行</a>, <a href="http://www.vpser.net/tag/%e8%87%aa%e5%8a%a8%e6%89%a7%e8%a1%8c" rel="tag">自动执行</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/manage/crontab.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Linux上iptables防火墙的基本应用教程</title>
		<link>http://www.vpser.net/security/linux-iptables.html</link>
		<comments>http://www.vpser.net/security/linux-iptables.html#comments</comments>
		<pubDate>Sat, 14 May 2011 02:09:58 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS安全]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[教程]]></category>
		<category><![CDATA[防火墙]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1050</guid>
		<description><![CDATA[iptables是Linux上常用的防火墙软件，下面vps侦探给大家说一下iptables的安装、清除iptables规则、iptables只开放指定端口、iptables屏蔽指定ip、ip段及解封、删除已添加的iptables规则等iptables的基本应用。 1、安装iptables防火墙 如果没有安装iptables需要先安装，CentOS执行： yum install iptables Debian/Ubuntu执行： apt-get install iptables 2、清除已有iptables规则 iptables -F iptables -X iptables -Z 3、开放指定的端口 #允许本地回环接口(即运行本机访问本机) iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT # 允许已建立的或相关连的通行 iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT #允许所有本机向外的访问 iptables -A OUTPUT -j ACCEPT # 允许访问22端口 iptables -A INPUT -p tcp --dport 22 -j [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/security/linux-iptables.html">iptables</a>是Linux上常用的防火墙软件，下面<a href="http://www.vpser.net">vps侦探</a>给大家说一下iptables的安装、清除iptables规则、iptables只开放指定端口、iptables屏蔽指定ip、ip段及解封、删除已添加的iptables规则等<a href="http://www.vpser.net/security/linux-iptables.html">iptables的基本应用</a>。</p>
<h2>1、安装iptables防火墙</h2>
<p>如果没有安装iptables需要先安装，<strong>CentOS执行：</strong></p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">yum install iptables</div>
<p><strong>Debian/Ubuntu执行：</strong></p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">apt-get install iptables</div>
<h2><span id="more-1050"></span>2、清除已有iptables规则</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">iptables -F<br />
iptables -X<br />
iptables -Z</div>
<h2>3、开放指定的端口</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">#允许本地回环接口(即运行本机访问本机)<br />
iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT<br />
# 允许已建立的或相关连的通行<br />
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT<br />
#允许所有本机向外的访问<br />
iptables -A OUTPUT -j ACCEPT<br />
# 允许访问22端口<br />
iptables -A INPUT -p tcp --dport 22 -j ACCEPT<br />
#允许访问80端口<br />
iptables -A INPUT -p tcp --dport 80 -j ACCEPT<br />
#允许FTP服务的21和20端口<br />
iptables -A INPUT -p tcp --dport 21 -j ACCEPT<br />
iptables -A INPUT -p tcp --dport 20 -j ACCEPT<br />
#如果有其他端口的话，规则也类似，稍微修改上述语句就行<br />
#禁止其他未允许的规则访问<br />
iptables -A INPUT -j REJECT  （注意：如果22端口未加入允许规则，SSH链接会直接断开。）<br />
iptables -A FORWARD -j REJECT</div>
<h2>4、屏蔽IP</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">#如果只是想屏蔽IP的话“3、开放指定的端口”可以直接跳过。<br />
#屏蔽单个IP的命令是<br />
iptables -I INPUT -s 123.45.6.7 -j DROP<br />
#封整个段即从123.0.0.1到123.255.255.254的命令<br />
iptables -I INPUT -s 123.0.0.0/8 -j DROP<br />
#封IP段即从123.45.0.1到123.45.255.254的命令<br />
iptables -I INPUT -s 124.45.0.0/16 -j DROP<br />
#封IP段即从123.45.6.1到123.45.6.254的命令是<br />
iptables -I INPUT -s 123.45.6.0/24 -j DROP</div>
<h2>4、查看已添加的iptables规则</h2>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto;">iptables -L -n</div>
<blockquote><p>v：显示详细信息，包括每条规则的匹配包数量和匹配字节数<br />
x：在 v 的基础上，禁止自动单位换算（K、M） <a href="http://www.vpser.net"><span style="color: #ffffff;">vps侦探</span></a><br />
n：只显示IP地址和端口号，不将ip解析为域名</p></blockquote>
<h2>5、删除已添加的iptables规则</h2>
<p>将所有iptables以序号标记显示，执行：</p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">iptables -L -n --line-numbers</div>
<p>比如要删除INPUT里序号为8的规则，执行：</p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">iptables -D INPUT 8</div>
<h2>6、iptables的开机启动及规则保存</h2>
<p>CentOS上可能会存在安装好iptables后，iptables并不开机自启动，可以执行一下：</p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">chkconfig --level 345 iptables on</div>
<p>将其加入开机启动。</p>
<p>CentOS上可以执行：service iptables save保存规则。</p>
<p>另外更需要注意的是Debian/Ubuntu上iptables是不会保存规则的。</p>
<p>需要按如下步骤进行，让网卡关闭是保存iptables规则，启动时加载iptables规则：</p>
<p>创建/etc/network/if-post-down.d/iptables 文件，添加如下内容：</p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">#!/bin/bash<br />
iptables-save &gt; /etc/iptables.rules</div>
<p>执行：chmod +x /etc/network/if-post-down.d/iptables 添加执行权限。</p>
<p>创建/etc/network/if-pre-up.d/iptables 文件，添加如下内容：</p>
<div style="background-color: #ffffff; border: #00a0c6 1px dashed; width: auto; margin-bottom: 10px;">#!/bin/bash<br />
iptables-restore &lt; /etc/iptables.rules</div>
<p>执行：chmod +x /etc/network/if-pre-up.d/iptables 添加执行权限。</p>
<p>关于更多的iptables的使用方法可以执行：iptables --help或网上搜索一下iptables参数的说明。</p>
<p>如有问题欢迎在本文下留言或到<a href="http://bbs.vpser.net" target="_blank">VPS论坛</a>反馈。</p>
<p>原创文章，谢绝转载！</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/vps-cp/centos-linux-vps-kloxol-xadmin.html" title="CentOS Linux VPS Kloxo/Lxadmin虚拟主机控制面板安装教程">CentOS Linux VPS Kloxo/Lxadmin虚拟主机控制面板安装教程</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/manage/lnmp-lnmpa-imagemagick-install-tutorial.html" title="LNMP/LNMPA一键安装包ImageMagick安装配置教程">LNMP/LNMPA一键安装包ImageMagick安装配置教程</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/vi.html" title="Linux上vi(vim)编辑器使用教程">Linux上vi(vim)编辑器使用教程</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/manage/linux-vps-install-7zip.html" title="Linux VPS上安装7zip使用教程及zip中文文件名解压乱码解决方法">Linux VPS上安装7zip使用教程及zip中文文件名解压乱码解决方法</a></li><li><a href="http://www.vpser.net/build/linode-install-openvpn.html" title="Linode VPS OpenVPN安装配置教程(基于Debian/Ubuntu)">Linode VPS OpenVPN安装配置教程(基于Debian/Ubuntu)</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2011. |
<a href="http://www.vpser.net/security/linux-iptables.html">Permalink</a> |
<a href="http://www.vpser.net/security/linux-iptables.html#comments">17 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/security/linux-iptables.html&title=Linux上iptables防火墙的基本应用教程">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/iptables" rel="tag">iptables</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/%e6%95%99%e7%a8%8b" rel="tag">教程</a>, <a href="http://www.vpser.net/tag/%e9%98%b2%e7%81%ab%e5%a2%99" rel="tag">防火墙</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/security/linux-iptables.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>123Systems创新低价128内存Linux VPS仅需10美元/年</title>
		<link>http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html</link>
		<comments>http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html#comments</comments>
		<pubDate>Mon, 21 Mar 2011 04:24:52 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS优惠信息]]></category>
		<category><![CDATA[10美元/年]]></category>
		<category><![CDATA[123Systems]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[优惠]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=2070</guid>
		<description><![CDATA[今天收到123Systems的邮件，123Systems推出了非常特价的10美元/年的VPS，非常适合刚接触VPS的新手学习用。 具体配置如下： 实时开通! Guaranteed RAM: 128MB Burstable RAM: 128MB Disk Space: 5GB Bandwidth: 250GB/Month 1vCPU 1 IP Address SolusVM Control Panel 购买地址：https://123systems.net/billing/cart.php?a=add&#38;pid=149 同时添加内存、硬盘都是一次性费用，加128MB内存5.95$。 附上测试IP：64.31.59.230 如需代购联系军哥：http://item.taobao.com/item.htm?id=9702440850 相关文章：123Systems -Chicago机房OpenVZ VPS 5折优惠，月付/季付/年付均5折Linux下多线程下载工具 &#8211; AxelBurstNet 2011年6月Windows和Linux VPS优惠码Linux VPS/服务器上用Crontab来实现VPS自动化Linux上iptables防火墙的基本应用教程印迹VPS 五月全线75折优惠（Fremont He.net&#038;和洛杉矶WebNX）Name.com 2011年2月限时优惠 .com/.co域名仅需7.77$瑞豪开源(RasHost)VPS 2011年春节特别优惠 买一送一Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码 © VPSer for VPS侦探, 2011. &#124; Permalink &#124; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/go/123systems"><img class="alignnone size-full wp-image-2074" title="123systems" src="http://www.vpser.net/uploads/2011/03/123systems.png" alt="" width="280" height="42" /></a></p>
<p>今天收到<a href="http://www.vpser.net/go/123systems" target="_blank">123Systems</a>的邮件，<a href="http://www.vpser.net/go/123systems" target="_blank">123Systems</a>推出了非常特价的10美元/年的VPS，非常适合刚接触VPS的新手学习用。</p>
<p><span style="font-family: arial, sans-serif;"><span>具体配置如下：</span></span><br />
<span style="font-family: arial, sans-serif;"><span>实时开通!<br />
Guaranteed RAM: 128MB<br />
Burstable RAM: 128MB<br />
Disk Space: 5GB<br />
Bandwidth: 250GB/Month<br />
1vCPU<br />
1 IP Address<br />
SolusVM Control Panel</span></span></p>
<p><span style="font-family: arial, sans-serif;">购买地址：<a href="https://123systems.net/billing/cart.php?a=add&amp;pid=149" target="_blank">https://123systems.net/billing/cart.php?a=add&amp;pid=149</a></span></p>
<p><span style="font-family: arial, sans-serif;">同时添加内存、硬盘都是一次性费用，加128MB内存5.95$。</span></p>
<p><span style="font-family: arial, sans-serif;">附上测试IP：64.31.59.230</span></p>
<p><span style="font-family: arial, sans-serif;">如需代购联系军哥：<a href="http://item.taobao.com/item.htm?id=9702440850" target="_blank">http://item.taobao.com/item.htm?id=9702440850</a></span></p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/coupons/123systems-vps-50-off.html" title="123Systems -Chicago机房OpenVZ VPS 5折优惠，月付/季付/年付均5折">123Systems -Chicago机房OpenVZ VPS 5折优惠，月付/季付/年付均5折</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/mipshost-may-coupons.html" title="印迹VPS 五月全线75折优惠（Fremont He.net&#038;和洛杉矶WebNX）">印迹VPS 五月全线75折优惠（Fremont He.net&#038;和洛杉矶WebNX）</a></li><li><a href="http://www.vpser.net/domain/name-com-2011-february-com-co-7-77.html" title="Name.com 2011年2月限时优惠 .com/.co域名仅需7.77$">Name.com 2011年2月限时优惠 .com/.co域名仅需7.77$</a></li><li><a href="http://www.vpser.net/coupons/rashost-2011-spring-festival.html" title="瑞豪开源(RasHost)VPS 2011年春节特别优惠 买一送一">瑞豪开源(RasHost)VPS 2011年春节特别优惠 买一送一</a></li><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2011. |
<a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html">Permalink</a> |
<a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html#comments">23 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html&title=123Systems创新低价128内存Linux VPS仅需10美元/年">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/10%e7%be%8e%e5%85%83%e5%b9%b4" rel="tag">10美元/年</a>, <a href="http://www.vpser.net/tag/123systems" rel="tag">123Systems</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/%e4%bc%98%e6%83%a0" rel="tag">优惠</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</title>
		<link>http://www.vpser.net/security/linux-autobackup-ftp.html</link>
		<comments>http://www.vpser.net/security/linux-autobackup-ftp.html#comments</comments>
		<pubDate>Tue, 28 Dec 2010 01:49:52 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS安全]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[脚本]]></category>
		<category><![CDATA[自动]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1820</guid>
		<description><![CDATA[从VPS侦探建站之初就一直在重申一定要备份好自己的数据，因为太多的不确定性可能会造成数据库丢失，而且大部分VPS服务商也不可能提供每天备份数据。 原来VPS侦探提供过一个VPS备份方法，只是略微说了一下，可能部分新手会不太好入手。今天VPS侦探分享一个自己的备份脚本。 准备工作： 需要提前在VPS安装好lftp，lftp功能上比较强大，CentOS直接执行：yum install lftp，Debian执行：apt-get install lftp 。 需要在VPS上创建/home/backup/ 目录，在FTP上创建backup目录。 如果VPS上数据库不多的话使用Godaddy的免费空间就可以(10GB空间，300GB流量)，只要注册个域名就免费送。 下面将备份脚本进行部分注释： #!/bin/bash #Funciont: Backup website and mysql database #Author: licess #Website: http://lnmp.org #IMPORTANT!!!Please Setting the following Values! ######~Set Directory you want to backup~######将下面的目录修改成自己要备份的目录，一般按我的都是在/home/wwwroot/下面所有直接写了需要备份的目录。可以继续再加：Backup_Dir5=你的目录 ，Backup_Dir后面的数字依次递增。如果不足4个，直接删除不需要的就可以，同时修改下面tar zcf 部分。 Backup_Dir1=vpser.net Backup_Dir2=lnmp.org Backup_Dir3=licess.org Backup_Dir4=jungehost.com ######~Set MySQL UserName and password~######设置MySQL的用户名和密码，最好是root，其他用户可能因为权限问题无法导出部分数据库。 MYSQL_UserName=root MYSQL_PassWord=yourmysqlrootpassword ######~Set MySQL Database you want to [...]]]></description>
			<content:encoded><![CDATA[<p>从<a href="http://www.vpser.net" target="_blank">VPS侦探</a>建站之初就一直在重申一定要备份好自己的数据，因为太多的不确定性可能会造成数据库丢失，而且大部分VPS服务商也不可能提供每天备份数据。</p>
<p>原来VPS侦探提供过一个<a href="http://www.vpser.net/security/vps-backup-web-mysql.html" target="_blank">VPS备份方法</a>，只是略微说了一下，可能部分新手会不太好入手。今天VPS侦探分享一个自己的备份脚本。</p>
<p>准备工作：</p>
<p>需要提前在VPS安装好lftp，lftp功能上比较强大，CentOS直接执行：<strong>yum install lftp</strong>，Debian执行：<strong>apt-get install lftp</strong> 。</p>
<p>需要在VPS上创建/home/backup/ 目录，在FTP上创建backup目录。</p>
<p>如果VPS上数据库不多的话使用<a title="Godaddy.com" href="http://www.vpser.net/go/godaddy" target="_blank">Godaddy</a>的免费空间就可以(10GB空间，300GB流量)，只要注册个域名就免费送。<span id="more-1820"></span></p>
<p>下面将备份脚本进行部分注释：<br />
#!/bin/bash<br />
#Funciont: Backup website and mysql database<br />
#Author: licess<br />
#Website: <a title="lnmp一键安装包" href="http://lnmp.org" target="_blank">http://lnmp.org</a><br />
#IMPORTANT!!!Please Setting the following Values!</p>
<p>######~Set Directory you want to backup~######将下面的目录修改成自己要备份的目录，一般按我的都是在/home/wwwroot/下面所有直接写了需要备份的目录。可以继续再加：Backup_Dir5=你的目录 ，Backup_Dir后面的数字依次递增。如果不足4个，直接删除不需要的就可以，同时修改下面tar zcf 部分。</p>
<p>Backup_Dir1=vpser.net<br />
Backup_Dir2=lnmp.org<br />
Backup_Dir3=licess.org<br />
Backup_Dir4=jungehost.com</p>
<p>######~Set MySQL UserName and password~######设置MySQL的用户名和密码，最好是root，其他用户可能因为权限问题无法导出部分数据库。<br />
MYSQL_UserName=root<br />
MYSQL_PassWord=yourmysqlrootpassword</p>
<p>######~Set MySQL Database you want to backup~######设置要部分的数据库，可以继续再加：Backup_Database_Name5=数据库名，Backup_Database_Name后面的数字依次递增。<br />
Backup_Database_Name1=vpser<br />
Backup_Database_Name2=licess<br />
Backup_Database_Name3=junge<br />
Backup_Database_Name4=vpserorg</p>
<p>######~Set FTP Information~######设置用来存放备份数据的FTP信息<br />
FTP_HostName=184.168.192.43   //FTP服务器的IP或者域名<br />
FTP_UserName=vpsernet                //FTP服务器用户名<br />
FTP_PassWord=yourftppassword   //FTP服务器用户对应的密码<br />
FTP_BackupDir=backup                    //备份到FTP上的目录，需要提前创建好。</p>
<p>#Values Setting END!</p>
<p>TodayWWWBackup=www-*-$(date +"%Y%m%d").tar.gz<br />
TodayDBBackup=db-*-$(date +"%Y%m%d").sql<br />
OldWWWBackup=www-*-$(date -d -3day +"%Y%m%d").tar.gz<br />
OldDBBackup=db-*-$(date -d -3day +"%Y%m%d").sql</p>
<p>tar zcf /home/backup/www-$Backup_Dir1-$(date +"%Y%m%d").tar.gz -C /home/wwwroot/ $Backup_Dir1 --exclude=soft<br />
tar zcf /home/backup/www-$Backup_Dir2-$(date +"%Y%m%d").tar.gz -C /home/wwwroot/ $Backup_Dir2<br />
tar zcf /home/backup/www-$Backup_Dir3-$(date +"%Y%m%d").tar.gz -C /home/wwwroot/ $Backup_Dir3 --exclude=test<br />
tar zcf /home/backup/www-$Backup_Dir4-$(date +"%Y%m%d").tar.gz -C /home/wwwroot/ $Backup_Dir4</p>
<p>###上面为备份网站文件数据，因为我的网站比较零散，而且网站目录下面有些目录属于临时目录并不需要备份，所以可以在上面加上--exclude=不备份的目录。如果在前面加了Backup_Dir5=yourdir，则再加tar zcf /home/backup/www-$Backup_Dir5-$(date +"%Y%m%d").tar.gz -C<br />
/home/wwwroot/ $Backup_Dir5 。如果多余则删除多余行。</p>
<p>/usr/local/mysql/bin/mysqldump -u$MYSQL_UserName -p$MYSQL_PassWord $Backup_Database_Name1 &gt; /home/backup/db-$Backup_Database_Name1-$(date +"%Y%m%d").sql<br />
/usr/local/mysql/bin/mysqldump -u$MYSQL_UserName -p$MYSQL_PassWord $Backup_Database_Name2 &gt; /home/backup/db-$Backup_Database_Name2-$(date +"%Y%m%d").sql<br />
/usr/local/mysql/bin/mysqldump -u$MYSQL_UserName -p$MYSQL_PassWord $Backup_Database_Name3 &gt; /home/backup/db-$Backup_Database_Name3-$(date +"%Y%m%d").sql<br />
/usr/local/mysql/bin/mysqldump -u$MYSQL_UserName -p$MYSQL_PassWord $Backup_Database_Name4 &gt; /home/backup/db-$Backup_Database_Name4-$(date +"%Y%m%d").sql</p>
<p>###上面为备份MySQL数据库，如果在前面加了Backup_Database_Name5=yourdatabasename，则再加/usr/local/mysql/bin/mysqldump -u$MYSQL_UserName -p$MYSQL_PassWord $Backup_Database_Name5 &gt; /home/backup/db-$Backup_Database_Name5-$(date +"%Y%m%d").sql 。如果多余则删除多余行。</p>
<p>rm $OldWWWBackup<br />
rm $OldDBBackup<br />
###删除3天前的备份###</p>
<p>cd /home/backup/</p>
<p>###下面为自动上传部分，不得不说lftp很强大，抛弃ftp吧####<br />
lftp $FTP_HostName -u $FTP_UserName,$FTP_PassWord &lt;&lt; EOF<br />
cd $FTP_BackupDir<br />
mrm $OldWWWBackup<br />
mrm $OldDBBackup<br />
mput $TodayWWWBackup<br />
mput $TodayDBBackup<br />
bye<br />
EOF</p>
<p>脚本下载地址：<a href="http://soft.vpser.net/lnmp/backup.sh" target="_blank">http://soft.vpser.net/lnmp/backup.sh</a></p>
<p><a href="http://soft.vpser.net/lnmp/backup.sh" target="_blank">下载脚本</a>，将脚本放到/root/ 下面，按上面的注释修改脚本中的参数，并保存，如果不熟悉<a href="http://www.vpser.net/build/linux-vps-ssh-command.html" target="_blank">vi</a>或者<a href="http://www.vpser.net/manage/nano.html" target="_blank">nano编辑器</a>，可以用<a href="http://www.vpser.net/manage/winscp.html" target="_blank">winscp</a>，执行：chmod +x /root/backup.sh 为脚本添加执行权限，执行：crontab -e 添加定时执行</p>
<p>在crontab中加入：0 3 * * * /root/backup.sh</p>
<p>凌晨3点自动执行/root/bakcup.sh 脚本，备份vps上的数据并上传到FTP上。</p>
<p>如果在使用过程中有任何问题请直接留言，或到<a title="VPS论坛" href="http://bbs.vpser.net" target="_blank">VPS论坛</a>发贴。原创文章，禁止转载！</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/manage/mysql-import-export.html" title="Linux VPS/服务器上轻松导入、导出MySQL数据库">Linux VPS/服务器上轻松导入、导出MySQL数据库</a></li><li><a href="http://www.vpser.net/security/vps-auto-bakup-send-by-gmail.html" title="Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)(转)">Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)(转)</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/manage/lnmp-upgrade-php-script.html" title="LNMP一键安装包 PHP自动升级脚本">LNMP一键安装包 PHP自动升级脚本</a></li><li><a href="http://www.vpser.net/manage/cut-nginx-log-files.html" title="Nginx日志切割脚本">Nginx日志切割脚本</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/security/linux-autobackup-ftp.html">Permalink</a> |
<a href="http://www.vpser.net/security/linux-autobackup-ftp.html#comments">34 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/security/linux-autobackup-ftp.html&title=Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/ftp" rel="tag">FTP</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/shell" rel="tag">Shell</a>, <a href="http://www.vpser.net/tag/%e5%a4%87%e4%bb%bd" rel="tag">备份</a>, <a href="http://www.vpser.net/tag/%e8%84%9a%e6%9c%ac" rel="tag">脚本</a>, <a href="http://www.vpser.net/tag/%e8%87%aa%e5%8a%a8" rel="tag">自动</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/security/linux-autobackup-ftp.html/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</title>
		<link>http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html</link>
		<comments>http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html#comments</comments>
		<pubDate>Tue, 21 Dec 2010 12:04:20 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS优惠信息]]></category>
		<category><![CDATA[GRASS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tree]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xen]]></category>
		<category><![CDATA[YardVPS]]></category>
		<category><![CDATA[优惠码]]></category>
		<category><![CDATA[限时]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1823</guid>
		<description><![CDATA[优惠码：YARDSALE -  9折优惠(循环优惠)，适用于Tree Xen方案和GRASS Windows方案！ 有效期48小时。 点击查看YardVPS详细配置方案 下载测试： 10MB文件：http://208.87.242.2/download10.zip 50MB文件：http://208.87.242.2/download50.zip 100MB文件：http://208.87.242.2/download100.zip 相关文章：YardVPS Xen Tree1方案 限时24小时85折优惠码VPSYOU 2011年12月Xen Linux VPS 7折优惠码YardVPS 成立一周年 限时优惠码YardVPS 2011年9月中秋节72小时限时优惠码YardVPS 2011年8月 72小时限时优惠码YardVPS 2011年7月 72小时限时优惠码BurstNet 2011年6月Windows和Linux VPS优惠码YardVPS 2011年5月 阵亡将士纪念日 72小时限时优惠码YardVPS 2011年5月 VPS侦探专享限时72小时优惠码VPSZZ &#8211; Xen及Windows VPS优惠码 © VPSer for VPS侦探, 2010. &#124; Permalink &#124; 7 comments &#124; Add to del.icio.us Post tags: GRASS, Linux, Tree, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/go/yardvps" target="_blank"><img title="YardVPS" src="http://www.vpser.net/uploads/2010/10/YardVPS_Logo.jpg" alt="" width="162" height="62" /></a></p>
<p>优惠码：<strong><a href="http://www.vpser.net/go/yardvps" target="_blank">YARDSALE</a></strong> -  9折优惠(循环优惠)，适用于Tree <a href="http://www.vpser.net/go/yardvps" target="_blank">Xen方案</a>和GRASS <a href="http://www.vpser.net/go/yardvps" target="_blank">Windows方案</a>！</p>
<p>有效期48小时。</p>
<p><a href="http://www.vpser.net/go/yardvps" target="_blank">点击查看YardVPS详细配置方案<span id="more-1823"></span></a></p>
<p>下载测试：</p>
<p>10MB文件：http://208.87.242.2/download10.zip<br />
50MB文件：http://208.87.242.2/download50.zip<br />
100MB文件：http://208.87.242.2/download100.zip</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/coupons/yardvps-xen-tree1-24hours-coupons.html" title="YardVPS Xen Tree1方案 限时24小时85折优惠码">YardVPS Xen Tree1方案 限时24小时85折优惠码</a></li><li><a href="http://www.vpser.net/coupons/vpsyou-2011-december-coupons.html" title="VPSYOU 2011年12月Xen Linux VPS 7折优惠码">VPSYOU 2011年12月Xen Linux VPS 7折优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-one-year-anniversary-coupons.html" title="YardVPS 成立一周年 限时优惠码">YardVPS 成立一周年 限时优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-2011-mid-autumn-coupon.html" title="YardVPS 2011年9月中秋节72小时限时优惠码">YardVPS 2011年9月中秋节72小时限时优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-2011-august-coupons.html" title="YardVPS 2011年8月 72小时限时优惠码">YardVPS 2011年8月 72小时限时优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-2011-july-coupons.html" title="YardVPS 2011年7月 72小时限时优惠码">YardVPS 2011年7月 72小时限时优惠码</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-2011-may-memorial-day-coupons.html" title="YardVPS 2011年5月 阵亡将士纪念日 72小时限时优惠码">YardVPS 2011年5月 阵亡将士纪念日 72小时限时优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-2011-5-vpser-72-hours-coupons.html" title="YardVPS 2011年5月 VPS侦探专享限时72小时优惠码">YardVPS 2011年5月 VPS侦探专享限时72小时优惠码</a></li><li><a href="http://www.vpser.net/coupons/vpszz-2011-xen-windows-vps-coupons.html" title="VPSZZ &#8211; Xen及Windows VPS优惠码">VPSZZ &#8211; Xen及Windows VPS优惠码</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html">Permalink</a> |
<a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html#comments">7 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html&title=YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/grass" rel="tag">GRASS</a>, <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/tree" rel="tag">Tree</a>, <a href="http://www.vpser.net/tag/windows" rel="tag">Windows</a>, <a href="http://www.vpser.net/tag/xen" rel="tag">Xen</a>, <a href="http://www.vpser.net/tag/yardvps" rel="tag">YardVPS</a>, <a href="http://www.vpser.net/tag/%e4%bc%98%e6%83%a0%e7%a0%81" rel="tag">优惠码</a>, <a href="http://www.vpser.net/tag/%e9%99%90%e6%97%b6" rel="tag">限时</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Linux VPS/服务器上轻松导入、导出MySQL数据库</title>
		<link>http://www.vpser.net/manage/mysql-import-export.html</link>
		<comments>http://www.vpser.net/manage/mysql-import-export.html#comments</comments>
		<pubDate>Mon, 06 Dec 2010 01:03:28 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[导入]]></category>
		<category><![CDATA[导出]]></category>
		<category><![CDATA[数据库]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1739</guid>
		<description><![CDATA[随着网站的运行MySQL数据库也越来越大，备份问题也日益凸显，使用phpmyadmin导出或导入时可能会因为超时文件过大等原因无法导入或导出。下面VPS侦探说一下几个解决方法： MySQL数据库导出 方法1:mysqldump命令 执行命令： /usr/local/mysql/bin/mysqldump -u 用户名 -p 数据库名 &#62; 文件名 如果数据库用户名有密码密码，执行后会提示输入密码。如果数据库用户名没有密码，就将命令中的“-p”参数删除。 注意：推荐使用MySQL root帐号进行操作，因为有些数据库可能设置了只能对应的用户进行操作。 方法2:phpmyadmin phpmyadmin支持将数据库文件直接备份到配置文件指定的目录，默认安装的lnmp使用了修改后的配置，可以将数据库直接备份到/home/wwwroot/phpmyadmin/save/ 下面，然后用户通过http或者ftp等方式下载即可。暂时没有测试过比较大的数据库，lnmp的用户可以测试一下给我反馈。 方法3：第三方软件 如：帝国备份王，专门为MYSQL大数据的备份与导入而设计的稳定高效软件,系统采用分卷备份与导入,理论上可备份任何大小的数据库。据网上的反馈看还是不错的，安装使用方法。 MySQL数据库导入 方法1：mysql命令 执行命令： /usr/local/mysql/bin/mysql -u 用户名 -p 数据库名 &#60; 文件名 参数与mysqldump的使用一样。 注意：导入的数据库名需要已经存在。 方法2：phpmyadmin phpmyadmin可以将位于/home/wwwroot/phpmyadmin/upload/ 导入到指定的数据库里，可以上传数据库备份文件到/home/wwwroot/phpmyadmin/upload/这个目录进行导入。 方法3：第三方软件 如：帝国备份王。详细的帝国备份王安装使用方法点击这里。 如果有任何问题可以在本文留言，或者到vps论坛发帖求助。原创文章，谢绝转载。 相关文章：Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)(转)VPS主机上备份网站和数据库Linux下多线程下载工具 &#8211; AxelBurstNet 2011年6月Windows和Linux VPS优惠码Linux下重置MySQL root密码Linux VPS/服务器上用Crontab来实现VPS自动化Linux上iptables防火墙的基本应用教程123Systems创新低价128内存Linux VPS仅需10美元/年YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码 © VPSer for [...]]]></description>
			<content:encoded><![CDATA[<p><a href=" http://www.vpser.net/manage/mysql-import-export.html"><img class="size-full wp-image-1765 alignnone" title="Mysql_logo" src="http://www.vpser.net/uploads/2010/12/Mysql_logo.png" alt="" width="122" height="64" /></a></p>
<p>随着网站的运行MySQL数据库也越来越大，备份问题也日益凸显，使用phpmyadmin导出或导入时可能会因为超时文件过大等原因无法<a href="http://www.vpser.net/manage/mysql-import-export.html" target="_blank">导入或导出</a>。下面VPS侦探说一下几个解决方法：</p>
<h2>MySQL数据库导出</h2>
<h3>方法1:mysqldump命令</h3>
<p>执行命令： <em>/usr/local/mysql/bin/mysqldump -u 用户名 -p 数据库名 &gt; 文件名<span id="more-1739"></span></em><br />
<em> </em>如果数据库用户名有密码密码，执行后会提示输入密码。如果数据库用户名没有密码，就将命令中的“-p”参数删除。</p>
<p>注意：推荐使用MySQL root帐号进行操作，因为有些数据库可能设置了只能对应的用户进行操作。</p>
<h3>方法2:phpmyadmin</h3>
<p><a href="http://www.vpser.net/manage/mysql-import-export.html" target="_blank"><img class="size-full wp-image-1762 alignnone" title="mysql-phpmyadmin-export" src="http://www.vpser.net/uploads/2010/12/mysql-phpmyadmin-export.jpg" alt="" width="385" height="130" /></a></p>
<p>phpmyadmin支持将数据库文件直接备份到配置文件指定的目录，默认安装的lnmp使用了修改后的配置，可以将数据库直接备份到/home/wwwroot/phpmyadmin/save/ 下面，然后用户通过http或者ftp等方式下载即可。暂时没有测试过比较大的数据库，<a href="http://lnmp.org" target="_blank">lnmp</a>的用户可以测试一下给我反馈。</p>
<h3>方法3：第三方软件</h3>
<p>如：帝国备份王，专门为MYSQL大数据的备份与导入而设计的稳定高效软件,系统采用分卷备份与导入,理论上可备份任何大小的数据库。据网上的反馈看还是不错的，<a href="http://www.phome.net/ebak2010/doc/docutf.html#setup" target="_blank">安装使用方法</a>。</p>
<h2>MySQL数据库导入</h2>
<h3>方法1：mysql命令</h3>
<p>执行命令： <em>/usr/local/mysql/bin/mysql -u 用户名 -p 数据库名 &lt; 文件名</em></p>
<p><em></em>参数与mysqldump的使用一样。</p>
<p>注意：导入的数据库名需要已经存在。</p>
<h3>方法2：phpmyadmin</h3>
<p><a href="http://www.vpser.net/manage/mysql-import-export.html" target="_blank"><img class="size-full wp-image-1764 alignnone" title="mysql-phpmyadmin-import" src="http://www.vpser.net/uploads/2010/12/mysql-phpmyadmin-import.jpg" alt="" width="409" height="194" /></a></p>
<p>phpmyadmin可以将位于/home/wwwroot/phpmyadmin/upload/ 导入到指定的数据库里，可以上传数据库备份文件到/home/wwwroot/phpmyadmin/upload/这个目录进行导入。</p>
<h3>方法3：第三方软件</h3>
<p>如：帝国备份王。详细的<a href="http://www.phome.net/ebak2010/doc/docutf.html#setup" target="_blank">帝国备份王安装使用方法点击这里</a>。</p>
<p>如果有任何问题可以在本文留言，或者到<a href="http://bbs.vpser.net/" target="_blank">vps论坛</a>发帖求助。原创文章，谢绝转载。</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li><li><a href="http://www.vpser.net/security/vps-auto-bakup-send-by-gmail.html" title="Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)(转)">Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)(转)</a></li><li><a href="http://www.vpser.net/security/vps-backup-web-mysql.html" title="VPS主机上备份网站和数据库">VPS主机上备份网站和数据库</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/linux-reset-mysql-root-password.html" title="Linux下重置MySQL root密码">Linux下重置MySQL root密码</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/manage/mysql-import-export.html">Permalink</a> |
<a href="http://www.vpser.net/manage/mysql-import-export.html#comments">8 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/mysql-import-export.html&title=Linux VPS/服务器上轻松导入、导出MySQL数据库">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/mysql" rel="tag">MySQL</a>, <a href="http://www.vpser.net/tag/%e5%a4%87%e4%bb%bd" rel="tag">备份</a>, <a href="http://www.vpser.net/tag/%e5%af%bc%e5%85%a5" rel="tag">导入</a>, <a href="http://www.vpser.net/tag/%e5%af%bc%e5%87%ba" rel="tag">导出</a>, <a href="http://www.vpser.net/tag/%e6%95%b0%e6%8d%ae%e5%ba%93" rel="tag">数据库</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/manage/mysql-import-export.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Linux和Windows VPS/服务器上查看端口被哪个程序占用</title>
		<link>http://www.vpser.net/manage/linux-windows-ports.html</link>
		<comments>http://www.vpser.net/manage/linux-windows-ports.html#comments</comments>
		<pubDate>Tue, 02 Nov 2010 03:18:31 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lsof]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[端口]]></category>
		<category><![CDATA[被占用]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1690</guid>
		<description><![CDATA[无论是在Linux还是Windows上都可能会遇到端口被占用nginx、mysql、apache等程序无法启动，下面说分别说一下Linux和Windows上如何查看端口被那个程序占用。 Linux篇： 使用命令：lsof -i:被占用的端口号 会显示出程序，及程序的PID，执行：kill 程序的PID 。 如果提示没有安装lsof这个命令，CentOS可以执行：yum install lsof 安装，Debian可以执行：apt-get install lsof 安装。 Windows篇： Windows上的工具比较多，如Active Ports，如果手头上没有现成的工具可以用命令：netstat -aon&#124;findstr "80" 如下图：最后一列为程序PID，再通过tasklist命令：tasklist &#124; findstr "2724" 再通过任务管理结束掉这个程序就可以了。 相关文章：BurstNet 2011年6月Windows和Linux VPS优惠码YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码为什么在美国Windows VPS要比Linux VPS贵好多？Linux VPS使用SSH帐号，在Windows和Linux上翻墙(使用代理访问网站)EDH Xen Linux, BSDs, Solaris, Windows VPS!额外赠送40%!VPSYOU 2011年12月Xen Linux VPS 7折优惠码Linux下多线程下载工具 &#8211; AxelLinux VPS/服务器上用Crontab来实现VPS自动化VPSZZ &#8211; Xen及Windows VPS优惠码Linux上iptables防火墙的基本应用教程 © VPSer for VPS侦探, [...]]]></description>
			<content:encoded><![CDATA[<p>无论是在Linux还是Windows上都可能会遇到端口被占用nginx、mysql、apache等程序无法启动，下面说分别说一下Linux和Windows上如何查看端口被那个程序占用。</p>
<h2><strong>Linux篇：</strong></h2>
<p>使用命令：lsof -i:被占用的端口号</p>
<p><a href="http://www.vpser.net/manage/linux-windows-ports.html"><img class="alignnone size-full wp-image-1691" title="linux-lsof" src="http://www.vpser.net/uploads/2010/11/linux-lsof.jpg" alt="" width="536" height="176" /></a><span id="more-1690"></span></p>
<p>会显示出程序，及程序的PID，执行：kill 程序的PID 。</p>
<p>如果提示没有安装lsof这个命令，CentOS可以执行：yum install lsof 安装，Debian可以执行：apt-get install lsof 安装。</p>
<h2>Windows篇：</h2>
<p>Windows上的工具比较多，如Active Ports，如果手头上没有现成的工具可以用命令：netstat -aon|findstr "80"</p>
<p><img class="alignnone size-full wp-image-1693" title="win-netstat" src="http://www.vpser.net/uploads/2010/11/win-netstat.jpg" alt="" width="615" height="89" /></p>
<p>如下图：最后一列为程序PID，再通过tasklist命令：tasklist | findstr "2724"</p>
<p><img class="alignnone size-full wp-image-1694" title="win-tasklist" src="http://www.vpser.net/uploads/2010/11/win-tasklist.jpg" alt="" width="618" height="71" /></p>
<p>再通过任务管理结束掉这个程序就可以了。</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li><li><a href="http://www.vpser.net/usa-vps/windows-vps-linux-vps.html" title="为什么在美国Windows VPS要比Linux VPS贵好多？">为什么在美国Windows VPS要比Linux VPS贵好多？</a></li><li><a href="http://www.vpser.net/manage/linux-vps-ssh-proxy-fanqiang.html" title="Linux VPS使用SSH帐号，在Windows和Linux上翻墙(使用代理访问网站)">Linux VPS使用SSH帐号，在Windows和Linux上翻墙(使用代理访问网站)</a></li><li><a href="http://www.vpser.net/coupons/edh-xen-vps-juneextra.html" title="EDH Xen Linux, BSDs, Solaris, Windows VPS!额外赠送40%!">EDH Xen Linux, BSDs, Solaris, Windows VPS!额外赠送40%!</a></li><li><a href="http://www.vpser.net/coupons/vpsyou-2011-december-coupons.html" title="VPSYOU 2011年12月Xen Linux VPS 7折优惠码">VPSYOU 2011年12月Xen Linux VPS 7折优惠码</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/coupons/vpszz-2011-xen-windows-vps-coupons.html" title="VPSZZ &#8211; Xen及Windows VPS优惠码">VPSZZ &#8211; Xen及Windows VPS优惠码</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/manage/linux-windows-ports.html">Permalink</a> |
<a href="http://www.vpser.net/manage/linux-windows-ports.html#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/linux-windows-ports.html&title=Linux和Windows VPS/服务器上查看端口被哪个程序占用">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/lsof" rel="tag">lsof</a>, <a href="http://www.vpser.net/tag/netstat" rel="tag">netstat</a>, <a href="http://www.vpser.net/tag/windows" rel="tag">Windows</a>, <a href="http://www.vpser.net/tag/%e7%ab%af%e5%8f%a3" rel="tag">端口</a>, <a href="http://www.vpser.net/tag/%e8%a2%ab%e5%8d%a0%e7%94%a8" rel="tag">被占用</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/manage/linux-windows-ports.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows上管理远程Linux VPS/服务器文件工具 - winscp</title>
		<link>http://www.vpser.net/manage/winscp.html</link>
		<comments>http://www.vpser.net/manage/winscp.html#comments</comments>
		<pubDate>Wed, 13 Oct 2010 04:11:00 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[winscp]]></category>
		<category><![CDATA[文件管理]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=1627</guid>
		<description><![CDATA[Linux上经常会经常需要编辑文件，特别是Linux VPS/服务器安装好系统之后配置环境会需要修改很多的配置文件等，对于常用Linux的基本上都能够熟练使用vi或者nano等SSH下面的文件编辑工具，但是对于新接触VPS或者服务器的Linux新手来说还是稍微有些难度的，今天介绍一款适合新手或者懒人使用的Windows上管理远程Linux VPS/服务器上文件的工具 - winscp。 一、winscp是什么？ WinSCP 是一款SFTP和FTP的客户端，同时也支持SCP（Secure CoPy）文件传输。只要文件主机支持SSH协议，你就可以轻松的操作远程Linux，进行下载、上传、编辑、删除、移动文件等。他的操作界面是参考NC（Norton Commander）的双视窗排列方式，与FlashFxp之类的FTP管理软件很像。 注：sftp 即 Secure ftp（安全文件传输协议），sftp基于ssh，传输内容是加密过的。 二、安装winscp 可以通过官网http://winscp.net 下载或者直接点击 http://soft.vpser.net/manage/winscp/winscp429.zip 下载。 下载后，直接解压。 解压后，进入winscp目录，运行winscp.exe即可。 三、WinScp使用介绍 1、创建会话及登录 登录： 双击会话的名字，或者选择会话名字点击“登录”。 2、目录操作 在要操作的目录上，右击就会出现复制、远程复制、移动、远程移动、删除、重命名、属性（设置权限和属主），如下图： 上传和下载目录/文件可以通过拖拽实现，与ftp基本上没差别。 3、文件编辑 在要编辑的文件上右击，如下图： 点击保存后，状态栏变化： winscp的功能和一般的FTP客户端是一样的，只要用过FTP，相信你用winscp会很快上手。同时winscp也可以连接FTP，只要在创建会话是，在文件协议那个地方选择FTP即可。目前大部分FTP客户端（FlashFXP、CuteFTP、Filezilla等）也都是支持SFTP进行管理远程Linux的，如下图（FlashFXP）： 如果你有任何因为可以在本文下面留言或者到http://bbs.vpser.net 发帖。 相关文章：Linux SSH远程文件/目录传输命令scpLinux下多线程下载工具 &#8211; AxelBurstNet 2011年6月Windows和Linux VPS优惠码Linux VPS/服务器上用Crontab来实现VPS自动化Linux上iptables防火墙的基本应用教程123Systems创新低价128内存Linux VPS仅需10美元/年Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码Linux VPS/服务器上轻松导入、导出MySQL数据库Linux和Windows VPS/服务器上查看端口被哪个程序占用 © VPSer for VPS侦探, 2010. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1643" title="winscp-logo" src="http://www.vpser.net/uploads/2010/10/winscp-logo.png" alt="" width="90" height="90" /></a></p>
<p>Linux上经常会经常需要编辑文件，特别是Linux VPS/服务器安装好系统之后配置环境会需要修改很多的配置文件等，对于常用Linux的基本上都能够熟练使用<a href="http://www.vpser.net/build/linux-vps-ssh-command.html" target="_blank">vi</a>或者<a title="nano 编辑器使用教程" href="http://www.vpser.net/manage/nano.html" target="_blank">nano</a>等SSH下面的文件编辑工具，但是对于新接触VPS或者服务器的Linux新手来说还是稍微有些难度的，今天介绍一款适合新手或者懒人使用的Windows上管理远程Linux VPS/服务器上文件的工具 - <a href="http://www.vpser.net/manage/winscp.html">winscp</a>。</p>
<p>一、winscp是什么？</p>
<p><a href="http://www.vpser.net/manage/winscp.html">WinSCP</a> 是一款SFTP和FTP的客户端，同时也支持<a href="http://www.vpser.net/manage/scp.html" target="_blank">SCP（Secure CoPy）文件传输</a>。只要文件主机支持SSH协议，你就可以轻松的操作远程Linux，进行下载、上传、编辑、删除、移动文件等。他的操作界面是参考NC（Norton Commander）的双视窗排列方式，与FlashFxp之类的FTP管理软件很像。<span id="more-1627"></span></p>
<pre>注：sftp 即 Secure ftp（安全文件传输协议），sftp基于ssh，传输内容是加密过的。</pre>
<p>二、安装winscp</p>
<p>可以通过官网<a href="http://winscp.net" target="_blank">http://winscp.net</a> 下载或者直接点击 <a href="http://soft.vpser.net/manage/winscp/winscp429.zip" target="_blank">http://soft.vpser.net/manage/winscp/winscp429.zip</a> 下载。</p>
<p>下载后，直接解压。</p>
<p>解压后，进入winscp目录，运行winscp.exe即可。</p>
<p>三、WinScp使用介绍</p>
<p>1、创建会话及登录</p>
<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1630" title="winscp-1" src="http://www.vpser.net/uploads/2010/10/winscp-1.jpg" alt="" width="638" height="388" /></a></p>
<p><img class="alignnone size-full wp-image-1631" title="winscp-2" src="http://www.vpser.net/uploads/2010/10/winscp-2.jpg" alt="" width="518" height="357" /></p>
<p>登录：</p>
<p>双击会话的名字，或者选择会话名字点击“登录”。</p>
<p><img class="alignnone size-full wp-image-1632" title="winscp-3" src="http://www.vpser.net/uploads/2010/10/winscp-3.jpg" alt="" width="514" height="357" /></p>
<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1633" title="winscp-4" src="http://www.vpser.net/uploads/2010/10/winscp-4.jpg" alt="" width="553" height="310" /></a></p>
<p><img class="alignnone size-full wp-image-1635" title="winscp-5" src="http://www.vpser.net/uploads/2010/10/winscp-5.jpg" alt="" width="847" height="646" /></p>
<p>2、目录操作</p>
<p>在要操作的目录上，右击就会出现复制、远程复制、移动、远程移动、删除、重命名、属性（设置权限和属主），如下图：</p>
<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1636" title="winscp-6" src="http://www.vpser.net/uploads/2010/10/winscp-6.jpg" alt="" width="426" height="368" /></a></p>
<p>上传和下载目录/文件可以通过拖拽实现，与ftp基本上没差别。</p>
<p>3、文件编辑</p>
<p>在要编辑的文件上右击，如下图：</p>
<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1637" title="winscp-7" src="http://www.vpser.net/uploads/2010/10/winscp-7.jpg" alt="" width="348" height="325" /></a></p>
<p><img class="alignnone size-full wp-image-1639" title="winscp-8" src="http://www.vpser.net/uploads/2010/10/winscp-8.jpg" alt="" width="605" height="399" /></p>
<p>点击保存后，状态栏变化：</p>
<p><a href="http://www.vpser.net/uploads/2010/10/winscp-9.jpg"><img class="alignnone size-full wp-image-1640" title="winscp-9" src="http://www.vpser.net/uploads/2010/10/winscp-9.jpg" alt="" width="666" height="138" /></a></p>
<p>winscp的功能和一般的FTP客户端是一样的，只要用过FTP，相信你用winscp会很快上手。同时winscp也可以连接FTP，只要在创建会话是，在文件协议那个地方选择FTP即可。目前大部分FTP客户端（FlashFXP、CuteFTP、Filezilla等）也都是支持SFTP进行管理远程Linux的，如下图（FlashFXP）：</p>
<p><a href="http://www.vpser.net/manage/winscp.html"><img class="alignnone size-full wp-image-1642" title="flashfxp-sftp" src="http://www.vpser.net/uploads/2010/10/flashfxp-sftp.jpg" alt="" width="433" height="313" /></a></p>
<p>如果你有任何因为可以在本文下面留言或者到<a href="http://bbs.vpser.net" target="_blank">http://bbs.vpser.net</a> 发帖。</p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/manage/scp.html" title="Linux SSH远程文件/目录传输命令scp">Linux SSH远程文件/目录传输命令scp</a></li><li><a href="http://www.vpser.net/manage/axel.html" title="Linux下多线程下载工具 &#8211; Axel">Linux下多线程下载工具 &#8211; Axel</a></li><li><a href="http://www.vpser.net/coupons/burstnet-2011-june-windows-linux-vps-coupons.html" title="BurstNet 2011年6月Windows和Linux VPS优惠码">BurstNet 2011年6月Windows和Linux VPS优惠码</a></li><li><a href="http://www.vpser.net/manage/crontab.html" title="Linux VPS/服务器上用Crontab来实现VPS自动化">Linux VPS/服务器上用Crontab来实现VPS自动化</a></li><li><a href="http://www.vpser.net/security/linux-iptables.html" title="Linux上iptables防火墙的基本应用教程">Linux上iptables防火墙的基本应用教程</a></li><li><a href="http://www.vpser.net/coupons/123systems-128m-vps-10usd-yearly.html" title="123Systems创新低价128内存Linux VPS仅需10美元/年">123Systems创新低价128内存Linux VPS仅需10美元/年</a></li><li><a href="http://www.vpser.net/security/linux-autobackup-ftp.html" title="Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></li><li><a href="http://www.vpser.net/coupons/yardvps-tree-grass-2010-12-10off.html" title="YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码">YardVPS Tree Xen Linux和GRASS Windows方案 限时48小时9折优惠码</a></li><li><a href="http://www.vpser.net/manage/mysql-import-export.html" title="Linux VPS/服务器上轻松导入、导出MySQL数据库">Linux VPS/服务器上轻松导入、导出MySQL数据库</a></li><li><a href="http://www.vpser.net/manage/linux-windows-ports.html" title="Linux和Windows VPS/服务器上查看端口被哪个程序占用">Linux和Windows VPS/服务器上查看端口被哪个程序占用</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/manage/winscp.html">Permalink</a> |
<a href="http://www.vpser.net/manage/winscp.html#comments">13 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/winscp.html&title=Windows上管理远程Linux VPS/服务器文件工具 - winscp">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/linux" rel="tag">Linux</a>, <a href="http://www.vpser.net/tag/scp" rel="tag">scp</a>, <a href="http://www.vpser.net/tag/sftp" rel="tag">sftp</a>, <a href="http://www.vpser.net/tag/winscp" rel="tag">winscp</a>, <a href="http://www.vpser.net/tag/%e6%96%87%e4%bb%b6%e7%ae%a1%e7%90%86" rel="tag">文件管理</a><br/>
<br/>
<img src="http://www.vpser.net/images/tuijian.gif"> <a href="http://www.vpser.net/usa-vps/">美国VPS推荐</a>  | <a href="http://shop63846532.taobao.com/">军哥代购 - 提供美国及海外VPS/VPN/域名代购，美元/欧元代付</a> QQ：503228080
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.vpser.net/manage/winscp.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

