<?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; 指南</title>
	<atom:link href="http://www.vpser.net/tag/%e6%8c%87%e5%8d%97/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vpser.net</link>
	<description>致力于VPS主机推荐、VPS管理维护、VPS优惠信息及VPS相关的信息共享平台</description>
	<lastBuildDate>Mon, 06 Feb 2012 01:24:08 +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>监控宝 安装使用指南</title>
		<link>http://www.vpser.net/manage/jiankongbao-setup.html</link>
		<comments>http://www.vpser.net/manage/jiankongbao-setup.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 03:48:59 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[VPS管理维护]]></category>
		<category><![CDATA[jiankongbao]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[安装]]></category>
		<category><![CDATA[指南]]></category>
		<category><![CDATA[教程]]></category>
		<category><![CDATA[监控]]></category>
		<category><![CDATA[监控宝]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=834</guid>
		<description><![CDATA[监控宝是个好东西，有详尽的监控项目，可以对VPS进行24小时监控，并且当出现故障时可以通过邮件、短信(收费)、MSN提示。 1、安装net-snmp 首先我们需要下载Net-SNMP的源代码，地址如下：http://soft.vpser.net/status/net-snmp/net-snmp-5.4.2.1.tar.gz 接下来对下载的源代码包进行解压缩，如下：tar zxvf  net-snmp-5.4.2.1.tar.gz cd net-snmp-5.4.2.1 ./configure --prefix=/usr/local/snmp --with-openssl=/usr/ --with-mib-modules=ucd-snmp/diskio make &#38;&#38; make install 以上就完成了编译安装。 如果喜欢yum的安装方式可以使用如下命令：yum install -y net-snmp net-snmp-utils 2、设置net-snmp 建议使用v3c版本来进行身份验证。v3c的验证方式，要创建一个v3c的帐号，修改以下配置文件： /usr/local/snmp/share/snmp/snmpd.conf 然后添加一个只读帐号，如下：rouser jiankongbao auth 上面添加帐号的意思是：在v3c中，“rouser”用于表示只读帐号类型，随后的“jiankongbao”是指定的用户名，后边的“auth”指明需要验证。 接下来，我们还要添加“jiankongbao”这个用户，这就是v3c中的特殊机制，我们打开以下配置文件：/var/net-snmp/snmpd.conf (这个文件可能不存在，需要先运行一下：/usr/local/snmp/sbin/snmpd 生成这个文件，再结束这个进程：killall -9 snmpd ) 这个文件会在snmpd启动的时候被自动调用，我们需要在它里边添加创建用户的指令，如下：createUser jiankongbao MD5 mypassword 这行配置的意思是创建一个名为“jiankongbao”的用户，密码为“mypassword”，并且用MD5进行加密传输。这里要提醒的是，密码至少要有8个字节，这是SNMP协议的规定，如果小于8个字节，通信将无法进行。 需要注意的是，一旦snmpd启动后，出于安全考虑，以上这行配置会被snmpd自动删除，当然，snmpd会将这些配置以密文的形式记录在其它文件中，重新启动snmpd是不需要再次添加这些配置的，除非你希望创建新的用户。 运行snmpd：/usr/local/snmp/sbin/snmpd 将snmpd加入开机启动：cp dist/snmpd-init.d /etc/init.d/snmpd Debian再执行：update-rc.d -f snmpd defaults CentOS执行：chkconfig --level 345 snmpd on 3、监控宝网站设置 登录监控宝网站，找到服务器监控-添加服务器。按照上面配置net-snmp填写： [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jiankongbao.com/invite/x2qynw" target="_blank"><img class="alignnone size-full wp-image-858" title="jiankongbao" src="http://www.vpser.net/uploads/2010/01/jiankongbao.png" alt="" width="220" height="63" /></a></p>
<p><a href="http://www.jiankongbao.com/invite/x2qynw" target="_blank">监控宝</a>是个好东西，有详尽的监控项目，可以对VPS进行24小时监控，并且当出现故障时可以通过邮件、短信(收费)、MSN提示。</p>
<p>1、安装net-snmp</p>
<p>首先我们需要下载Net-SNMP的源代码，地址如下：<a href="http://soft.vpser.net/status/net-snmp/net-snmp-5.4.2.1.tar.gz" target="_blank">http://soft.vpser.net/status/net-snmp/net-snmp-5.4.2.1.tar.gz</a></p>
<p>接下来对下载的源代码包进行解压缩，如下：tar zxvf  net-snmp-5.4.2.1.tar.gz</p>
<p>cd net-snmp-5.4.2.1</p>
<p>./configure --prefix=/usr/local/snmp --with-openssl=/usr/ --with-mib-modules=ucd-snmp/diskio</p>
<p>make &amp;&amp; make install</p>
<p>以上就完成了编译安装。<span id="more-834"></span></p>
<p>如果喜欢yum的安装方式可以使用如下命令：yum install -y net-snmp net-snmp-utils</p>
<p>2、设置net-snmp</p>
<p>建议使用v3c版本来进行身份验证。v3c的验证方式，要创建一个v3c的帐号，修改以下配置文件：</p>
<p>/usr/local/snmp/share/snmp/snmpd.conf</p>
<p>然后添加一个只读帐号，如下：rouser jiankongbao auth</p>
<p>上面添加帐号的意思是：在v3c中，“rouser”用于表示只读帐号类型，随后的“jiankongbao”是指定的用户名，后边的“auth”指明需要验证。</p>
<p>接下来，我们还要添加“jiankongbao”这个用户，这就是v3c中的特殊机制，我们打开以下配置文件：/var/net-snmp/snmpd.conf (这个文件可能不存在，需要先运行一下：/usr/local/snmp/sbin/snmpd 生成这个文件，再结束这个进程：killall -9 snmpd )</p>
<p>这个文件会在snmpd启动的时候被自动调用，我们需要在它里边添加创建用户的指令，如下：createUser jiankongbao MD5 mypassword</p>
<p>这行配置的意思是创建一个名为“jiankongbao”的用户，密码为“mypassword”，并且用MD5进行加密传输。这里要提醒的是，密码至少要有8个字节，这是SNMP协议的规定，如果小于8个字节，通信将无法进行。</p>
<p>需要注意的是，一旦snmpd启动后，出于安全考虑，以上这行配置会被snmpd自动删除，当然，snmpd会将这些配置以密文的形式记录在其它文件中，重新启动snmpd是不需要再次添加这些配置的，除非你希望创建新的用户。</p>
<p>运行snmpd：/usr/local/snmp/sbin/snmpd</p>
<p>将snmpd加入开机启动：cp dist/snmpd-init.d /etc/init.d/snmpd</p>
<p>Debian再执行：update-rc.d -f snmpd defaults</p>
<p>CentOS执行：chkconfig --level 345 snmpd on</p>
<p>3、监控宝网站设置</p>
<p>登录监控宝网站，找到服务器监控-添加服务器。按照上面配置net-snmp填写：</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-server.png" target="_blank"><img title="jiankongbao-server" src="http://www.vpser.net/uploads/2010/01/jiankongbao-server-300x274.png" alt="" width="300" height="274" /></a></p>
<p>点击“添加服务器”完成添加服务器。</p>
<p>添加完服务器，需要创建哪些监控项目，比如：CPU、负载、硬盘I/O、流量等等。</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-jiankong.jpg" target="_blank"><img class="alignnone size-medium wp-image-863" title="jiankongbao-jiankong" src="http://www.vpser.net/uploads/2010/01/jiankongbao-jiankong-243x300.jpg" alt="" width="243" height="300" /></a></p>
<p>4、其他项目的监控</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiangkongbao-xiangmu.png" target="_blank"><img class="alignnone size-medium wp-image-860" title="jiangkongbao-xiangmu" src="http://www.vpser.net/uploads/2010/01/jiangkongbao-xiangmu-300x171.png" alt="" width="300" height="171" /></a></p>
<p>监控Nginx：比如现在大部分VPS都在用Nginx，监控Nginx，如果用的lnmp的话，直接使用<a href="http://IP/status">http://IP/status</a> 输入监控项目名就可以开始监控了，如下图所示：</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-nginx.png" target="_blank"><img class="alignnone size-medium wp-image-861" title="jiankongbao-nginx" src="http://www.vpser.net/uploads/2010/01/jiankongbao-nginx-300x138.png" alt="" width="300" height="138" /></a></p>
<p>监控MySQL：为监控宝创建一个MySQL帐号，填写上MySQL服务器的IP、端口、用户名、密码，添加即可。</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-mysql.png" target="_blank"><img class="alignnone size-medium wp-image-862" title="jiankongbao-mysql" src="http://www.vpser.net/uploads/2010/01/jiankongbao-mysql-300x203.png" alt="" width="300" height="203" /></a></p>
<p>站点监控：监控Http、Https、FTP、ping、DNS</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-zhandian.png" target="_blank"><img class="alignnone size-medium wp-image-864" title="jiankongbao-zhandian" src="http://www.vpser.net/uploads/2010/01/jiankongbao-zhandian-300x169.png" alt="" width="300" height="169" /></a></p>
<p>网站速度跟踪：</p>
<p><a href="http://www.vpser.net/uploads/2010/01/jiankongbao-sudu.png" target="_blank"><img class="alignnone size-medium wp-image-865" title="jiankongbao-sudu" src="http://www.vpser.net/uploads/2010/01/jiankongbao-sudu-287x300.png" alt="" width="287" height="300" /></a></p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/manage/jiankongbao.html" title="监控宝 &#8211; VPS/服务器24小时免费监控">监控宝 &#8211; VPS/服务器24小时免费监控</a></li><li><a href="http://www.vpser.net/build/vps-howto.html" title="VPS新手教程/指南">VPS新手教程/指南</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/manage/centos-directadmin-install-guide.html" title="CentOS上DirectAdmin安装教程">CentOS上DirectAdmin安装教程</a></li><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/usa-vps/linode.html" title="Linode 购买、安装、测试、配置教程">Linode 购买、安装、测试、配置教程</a></li><li><a href="http://www.vpser.net/manage/vps-monitor.html" title="VPS运行状态监控&#8211;当机/网络故障通知">VPS运行状态监控&#8211;当机/网络故障通知</a></li><li><a href="http://www.vpser.net/vps-cp/vps-xen-shell.html" title="VPS轻量级控制软件&#8211;Xen-Shell使用教程">VPS轻量级控制软件&#8211;Xen-Shell使用教程</a></li><li><a href="http://www.vpser.net/vps-cp/lxadmin-howto.html" title="lxadmin使用教程">lxadmin使用教程</a></li><li><a href="http://www.vpser.net/usa-vps/diavps.html" title="DiaHosting(原DiaVPS) 购买教程及基本测试">DiaHosting(原DiaVPS) 购买教程及基本测试</a></li></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2010. |
<a href="http://www.vpser.net/manage/jiankongbao-setup.html">Permalink</a> |
<a href="http://www.vpser.net/manage/jiankongbao-setup.html#comments">23 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/manage/jiankongbao-setup.html&title=监控宝 安装使用指南">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/jiankongbao" rel="tag">jiankongbao</a>, <a href="http://www.vpser.net/tag/vps" rel="tag">VPS</a>, <a href="http://www.vpser.net/tag/%e5%ae%89%e8%a3%85" rel="tag">安装</a>, <a href="http://www.vpser.net/tag/%e6%8c%87%e5%8d%97" rel="tag">指南</a>, <a href="http://www.vpser.net/tag/%e6%95%99%e7%a8%8b" rel="tag">教程</a>, <a href="http://www.vpser.net/tag/%e7%9b%91%e6%8e%a7" rel="tag">监控</a>, <a href="http://www.vpser.net/tag/%e7%9b%91%e6%8e%a7%e5%ae%9d" 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/jiankongbao-setup.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>VPS新手教程/指南</title>
		<link>http://www.vpser.net/build/vps-howto.html</link>
		<comments>http://www.vpser.net/build/vps-howto.html#comments</comments>
		<pubDate>Mon, 23 Nov 2009 09:22:42 +0000</pubDate>
		<dc:creator>VPSer</dc:creator>
				<category><![CDATA[服务器环境搭建]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[VPS教程]]></category>
		<category><![CDATA[指南]]></category>
		<category><![CDATA[教程]]></category>
		<category><![CDATA[新手]]></category>

		<guid isPermaLink="false">http://www.vpser.net/?p=636</guid>
		<description><![CDATA[欢迎来到VPS侦探成为VPSer的一员。如果你是VPS新手对VPS和Linux不了解(因一般主要是Linux VPS所以主要提供Linux相关的教程，Windows VPS的可视化界面，网上教程也比较多)，那么请跟随下面的VPS相关教程给自己充电，高手可以直接飘过，有任何问题可以到VPS论坛提问。 一、基础 1、什么是VPS？ 2、Linux基础：(使用Linux VPS必须要牢记教程中的基本命令和熟练使用putty，更多的Linux相关知识可以购买Linux书籍或者电子书系统学习) 2.1、Linux VPS下SSH常用命令 2.2、如何使用Putty远程(SSH)管理Linux VPS 2.3、Windows上管理远程Linux VPS/服务器文件工具 - winscp 3、VPS选购教程：(VPS的购买流程基本上都大同小异，可以按下面的教程熟悉VPS的购买流程) 3.1、DiaHosting/DiaVPS 购买教程及基本测试 3.2、Linode 购买、安装、测试、配置教程 3.3、美国VPS推荐：美国VPS主机推荐 &#124; 10美元以下VPS &#124; 向大家推荐几款10-20美元常用的vps 推荐DiaHosting、RasHost、PhotonVPS、VPSYou、Linode、第九主机 3.4、VPS优惠信息：DiaHosting、RasHost、PhotonVPS、Linode 3.5、为什么在美国Windows VPS要比Linux VPS贵好多？ 3.6、VPS/服务器选购之网络带宽基础知识篇 3.7、VPS主机选择32位还是64位？ 4、VPS管理面板/控制面板使用教程： (注意区分VPS管理面板和虚拟主机管理面板,VPS管理面板是管理VPS的，虚拟主机管理面板是管理VPS上的虚拟主机的。目前常见的VPS管理面板是SolusVM、VePortal、Xen-Shell) 4.1、HyperVM使用教程/手册 4.2、DiaHosting(DiaVPS)如何通过Web方式查看流量使用情况以及历史纪录 4.3、Linux VPS使用Xen-Shell重装系统 4.4、VPS轻量级控制软件–Xen-Shell使用教程 4.5、SolusVM VPS控制面板使用教程 4.6、vePortal VPS主机控制面板使用教程 二、Web服务器环境搭建 (网站是PHP+MySQL的话VPS上一般都是使用LNMP架构或者使用LAMP架构) 1、VPS上一般使用LNMP (占用内存少，效率高)，安装教程：http://lnmp.org/install.html 1.1、lnmp之pureftpd管理面板安装教程[图文] 1.2、Nginx无缝升级 &#124; lnmp一键安装包Nginx自动升级脚本 1.3、在Nginx上配置NameCheap免费SSL 1.4、Linux VPS Nginx+PHP环境下ionCube安装教程 [...]]]></description>
			<content:encoded><![CDATA[<p>欢迎来到<a href="http://www.vpser.net/" target="_blank">VPS侦探</a>成为VPSer的一员。如果你是<a href="http://www.vpser.net/" target="_blank">VPS</a>新手对VPS和Linux不了解(因一般主要是Linux VPS所以主要提供Linux相关的教程，Windows VPS的可视化界面，网上教程也比较多)，那么请跟随下面的<a href="http://www.vpser.net/vps-howto" target="_blank">VPS相关教程</a>给自己充电，高手可以直接飘过，有任何问题可以到<a href="http://bbs.vpser.net" target="_blank">VPS论坛</a>提问。</p>
<div style="background-color: #666666; color: #ffffff;">
<h2>一、基础</h2>
</div>
<p>1、<a title="什么是VPS？" rel="bookmark" href="http://www.vpser.net/uncategorized/vps.html" target="_blank">什么是VPS？</a></p>
<p><strong>2、Linux基础</strong>：(使用Linux VPS必须要牢记教程中的基本命令和熟练使用putty，更多的Linux相关知识可以购买Linux书籍或者电子书系统学习)</p>
<p style="padding-left: 30px;">2.1、<a title="到《Linux VPS下SSH常用命令》的永久链接" rel="bookmark" href="http://www.vpser.net/build/linux-vps-ssh-command.html" target="_blank">Linux VPS下SSH常用命令</a></p>
<p style="padding-left: 30px;">2.2、<a title="到《如何使用Putty远程(SSH)管理Linux VPS》的永久链接" rel="bookmark" href="http://www.vpser.net/other/putty-ssh-linux-vps.html" target="_blank">如何使用Putty远程(SSH)管理Linux VPS</a></p>
<p style="padding-left: 30px;">2.3、<a title="到《Windows上管理远程Linux VPS/服务器文件工具 - winscp》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/winscp.html" target="_blank">Windows上管理远程Linux VPS/服务器文件工具 - winscp</a></p>
<p><strong>3、VPS选购教程</strong>：(VPS的购买流程基本上都大同小异，可以按下面的教程熟悉VPS的购买流程)</p>
<p style="padding-left: 30px;">3.1、<a title="DiaVPS 购买教程及基本测试" rel="bookmark" href="http://www.vpser.net/usa-vps/diavps.html" target="_blank">DiaHosting/DiaVPS 购买教程及基本测试</a></p>
<p style="padding-left: 30px;">3.2、<a title="到《Linode 购买、安装、测试、配置教程》的永久链接" rel="bookmark" href="http://www.vpser.net/usa-vps/linode.html" target="_blank">Linode 购买、安装、测试、配置教程</a></p>
<p style="padding-left: 30px;">3.3、<strong>美国VPS推荐</strong>：<a href="http://www.vpser.net/usa-vps" target="_blank">美国VPS主机推荐</a> | <a href="http://www.vpser.net/ten-dollars-vps" target="_blank">10美元以下VPS</a> | <a title="到《向大家推荐几款10-20美元常用的vps》的永久链接" rel="bookmark" href="http://www.vpser.net/usa-vps/10-20-vps.html" target="_blank">向大家推荐几款10-20美元常用的vps</a></p>
<p style="padding-left: 30px;">推荐<a title="高速稳定、中文客服、支持支付宝" href="http://www.vpser.net/go/diahosting" target="_blank">DiaHosting</a>、<a href="http://www.vpser.net/go/rashost" target="_blank">RasHost</a>、<a title="高性价比，支持中文" href="http://www.vpser.net/go/photonvps" target="_blank">PhotonVPS</a>、<a title="高速稳定，口碑超好，OpenVZ/xen、中文客服、支持支付宝" href="http://www.vpser.net/go/vpsyou" target="_blank">VPSYou</a>、<a title="高速稳定，口碑超好" href="http://www.vpser.net/go/linode" target="_blank">Linode</a>、<a title="中文客服、Peer1机房，电信高速" href="http://www.vpser.net/go/d9host" target="_blank">第九主机</a></p>
<p style="padding-left: 30px;">3.4、<a href="http://www.vpser.net/category/coupons" target="_blank">VPS优惠信息</a>：<a href="http://www.vpser.net/tag/diahosting" target="_blank">DiaHosting</a>、<a href="http://www.vpser.net/tag/rashost" target="_blank">RasHost</a>、<a href="http://www.vpser.net/tag/photonvps" target="_blank">PhotonVPS</a>、<a href="http://www.vpser.net/tag/linode" target="_blank">Linode</a></p>
<p style="padding-left: 30px;">3.5、<a rel="bookmark" href="http://www.vpser.net/usa-vps/windows-vps-linux-vps.html" target="_blank">为什么在美国Windows VPS要比Linux VPS贵好多？</a></p>
<p style="padding-left: 30px;">3.6、<a rel="bookmark" href="http://www.vpser.net/other/vps-network-bandwidth.html" target="_blank">VPS/服务器选购之网络带宽基础知识篇</a></p>
<p style="padding-left: 30px;">3.7、<a rel="bookmark" href="http://www.vpser.net/other/vps-32bit-64bit.html" target="_blank">VPS主机选择32位还是64位？</a></p>
<p><strong>4、VPS管理面板/控制面板使用教程：</strong> (注意区分VPS管理面板和虚拟主机管理面板,VPS管理面板是管理VPS的，虚拟主机管理面板是管理VPS上的虚拟主机的。目前常见的VPS管理面板是SolusVM、VePortal、Xen-Shell)</p>
<p style="padding-left: 30px;">4.1、<a title="到《HyperVM使用教程/手册》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/hypervm-tutorial.html" target="_blank">HyperVM使用教程/手册</a></p>
<p style="padding-left: 30px;">4.2、<a title="到《DiaHosting(DiaVPS)如何通过Web方式查看流量使用情况以及历史纪录》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/diahosting-web-cp-traffic.html" target="_blank">DiaHosting(DiaVPS)如何通过Web方式查看流量使用情况以及历史纪录</a></p>
<p style="padding-left: 30px;">4.3、<a title="到《Linux VPS使用Xen-Shell重装系统》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/linux-vps-xen-shell-rebuild.html" target="_blank">Linux VPS使用Xen-Shell重装系统</a></p>
<p style="padding-left: 30px;">4.4、<a title="到《VPS轻量级控制软件–Xen-Shell使用教程》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/vps-xen-shell.html" target="_blank">VPS轻量级控制软件–Xen-Shell使用教程</a></p>
<p style="padding-left: 30px;">4.5、<a href="http://www.vpser.net/vps-cp/solusvm-howto.html" target="_blank">SolusVM VPS控制面板使用教程</a></p>
<p style="padding-left: 30px;">4.6、<a rel="bookmark" href="http://www.vpser.net/vps-cp/vps-veportal.html" target="_blank">vePortal VPS主机控制面板使用教程</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>二、Web服务器环境搭建</h2>
</div>
<p>(网站是PHP+MySQL的话VPS上一般都是使用<a href="http://lnmp.org" target="_blank">LNMP</a>架构或者使用LAMP架构)</p>
<p style="padding-left: 30px;">1、VPS上一般使用<a href="http://lnmp.org" target="_blank">LNMP</a> (占用内存少，效率高)，安装教程：<a href="http://lnmp.org/install.html" target="_blank">http://lnmp.org/install.html</a></p>
<p style="padding-left: 60px;">1.1、<a href="http://www.vpser.net/manage/lnmp-pureftpd-cp.html" target="_blank">lnmp之pureftpd管理面板安装教程[图文]</a></p>
<p style="padding-left: 60px;">1.2、<a href="http://www.vpser.net/manage/nginx-upgrade.html" target="_blank">Nginx无缝升级</a> | <a href="http://www.vpser.net/build/lnmp-auto-upgrade-nginx-to-any-version.html" target="_blank">lnmp一键安装包Nginx自动升级脚本</a></p>
<p style="padding-left: 60px;">1.3、<a href="http://www.vpser.net/manage/namecheap-free-ssl-nginx.html" target="_blank">在Nginx上配置NameCheap免费SSL</a></p>
<p style="padding-left: 60px;">1.4、<a rel="bookmark" href="http://www.vpser.net/build/ioncube-howto.html" target="_blank">Linux VPS Nginx+PHP环境下ionCube安装教程</a></p>
<p style="padding-left: 60px;">1.5、<a title="到《Linux VPS上配置Nginx反向代理》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/linux-vps-nginx-reverse-proxy.html">Linux VPS上配置Nginx反向代理</a></p>
<p style="padding-left: 60px;">1.6、<a href="http://www.vpser.net/build/nginx-lnmp-ipv6.html" target="_blank">IPv6环境下lnmp的设置方法及注意事项</a></p>
<p style="padding-left: 60px;">1.7、<a href="http://www.vpser.net/manage/lnmp-upgrade-php-script.html" target="_blank">LNMP一键安装包PHP自动升级脚本</a></p>
<p style="padding-left: 30px;">2、LAMP架构：<a title="到《CentOS Linux VPS Kloxo/Lxadmin控制面板安装教程》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/centos-linux-vps-kloxol-xadmin.html" target="_blank">CentOS Linux VPS Kloxo/Lxadmin虚拟主机控制面板安装教程</a></p>
<p style="padding-left: 60px;">2.1、<a title="到《VPS上安装kloxo/lxadmin中文语言包》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/vps-lxadmin-chinese.html">VPS上安装 kloxo/lxadmin中文语言包</a></p>
<p style="padding-left: 60px;">2.2、<a title="到《去除Kloxo(原lxadmin)域名个数限制的方法》的永久链接" rel="bookmark" href="http://www.vpser.net/vps-cp/kloxo-domian-limited.html">去除Kloxo(原lxadmin)域名个数限制的方法</a></p>
<p style="padding-left: 30px;">3、<a title="到《Debian VPS 安装安装(Lighttpd+MySQL+Zend+vsftpd+PHPMyAdmin)Web环境》的永久链接" rel="bookmark" href="http://www.vpser.net/build/debian-vps-web-server.html" target="_blank">Debian VPS 安装安装(Lighttpd+MySQL+Zend+vsftpd+PHPMyAdmin)Web环境</a></p>
<p style="padding-left: 30px;">4、<a title="到《CentOS上DirectAdmin安装教程》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/centos-directadmin-install-guide.html">CentOS上DirectAdmin安装教程</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>三、系统管理及维护</h2>
</div>
<p><strong>文件目录管理：</strong></p>
<p style="padding-left: 30px;">1、<a href="http://www.vpser.net/manage/scp.html" target="_blank">Linux SSH远程文件/目录传输命令scp</a></p>
<p style="padding-left: 30px;">2、<a href="http://www.vpser.net/manage/nano.html" target="_blank">nano编辑器使用教程</a></p>
<p style="padding-left: 30px;">3、<a title="到《什么吃掉了我的硬盘？》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/what-is-using-my-disk-space-up.html">什么吃掉了我的硬盘？</a>查看目录文件大小占用情况，其他类似工具：<a href="http://www.vpser.net/manage/ncdu.html" target="_blank">ncdu</a></p>
<p style="padding-left: 30px;">4、<a title="到《Windows上管理远程Linux VPS/服务器文件工具 - winscp》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/winscp.html">Windows上管理远程Linux VPS/服务器文件工具 - winscp</a></p>
<p><strong>数据备份还原</strong>：</p>
<p style="padding-left: 30px;">1、<a href="http://www.vpser.net/security/linux-autobackup-ftp.html" target="_blank">Linux VPS/服务器 网站及数据库自动本地备份并FTP上传备份脚本</a></p>
<p style="padding-left: 30px;">2、<a title="到《VPS主机上备份网站和数据库》的永久链接" rel="bookmark" href="../security/vps-backup-web-mysql.html" target="_blank">VPS主机上备份网站和数据库</a></p>
<p style="padding-left: 30px;">3、<a title="到《Linux VPS/服务器上轻松导入、导出MySQL数据库》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/mysql-import-export.html">Linux VPS/服务器上轻松导入、导出MySQL数据库</a></p>
<p style="padding-left: 30px;">4、<a href="http://www.vpser.net/security/vps-auto-bakup-send-by-gmail.html" target="_blank">Linux VPS上自动备份文件并发送到Gmail (适用G级数据的备份)</a></p>
<p><strong>网络管理：</strong></p>
<p style="padding-left: 30px;"><strong> </strong>1、<a title="到《Linux和Windows VPS/服务器上查看端口被哪个程序占用》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/linux-windows-ports.html">Linux和Windows VPS/服务器上查看端口被哪个程序占用</a></p>
<p><strong>小技巧：</strong></p>
<p style="padding-left: 30px;">1、<a title="到《SSH远程会话管理工具 - screen使用教程》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/screen.html">SSH远程会话管理工具 - screen使用教程</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>四、系统安全</h2>
</div>
<p>1、<a title="到《Linux VPS上DenyHosts阻止SSH暴力攻击》的永久链接" rel="bookmark" href="http://www.vpser.net/security/denyhosts.html" target="_blank">Linux VPS上DenyHosts阻止SSH暴力攻击</a></p>
<p>2、<a title="到《Linux VPS禁止某个IP访问》的永久链接" rel="bookmark" href="http://www.vpser.net/security/linux-vps-deny-ip.html" target="_blank">Linux VPS禁止某个IP访问</a></p>
<p>3、<a href="http://www.vpser.net/security/ddos-deflate.html" target="_blank">DDoS deflate - Linux下防御/减轻DDOS攻击</a></p>
<p>4、<a title="到《用 iptables 屏蔽来自某个国家的 IP》的永久链接" rel="bookmark" href="http://www.vpser.net/security/iptables-block-countries-ip.html">用 iptables 屏蔽来自某个国家的 IP</a></p>
<p>5、<a href="http://www.vpser.net/security/linux-ssh-authorized-keys-login.html" target="_blank">SSH密钥登录让Linux VPS/服务器更安全</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>五、系统优化&amp;性能测试</h2>
</div>
<p>1、<a title="到《VPS优化之添加swap交换分区》的永久链接" rel="bookmark" href="http://www.vpser.net/opt/vps-add-swap.html" target="_blank">VPS优化之添加swap交换分区</a></p>
<p>2、<a title="到《VPS主机上MySQL数据库的优化》的永久链接" rel="bookmark" href="http://www.vpser.net/opt/vps-mysql-opt.html" target="_blank">VPS主机上MySQL数据库的优化</a></p>
<p>3、<a title="到《Web服务器性能/压力测试工具http_load、webbench、ab、Siege使用教程》的永久链接" rel="bookmark" href="http://www.vpser.net/opt/webserver-test.html" target="_blank">Web服务器性能/压力测试工具http_load、webbench、ab、Siege使用教程</a></p>
<p>4、<a title="到《UnixBench：测试Linux VPS性能》的永久链接" rel="bookmark" href="http://www.vpser.net/opt/unixbench.html" target="_blank">UnixBench：测试Linux VPS性能</a></p>
<p>5、<a title="到《三款免费的PHP加速器：APC、eAccelerator、XCache比较》的永久链接" rel="bookmark" href="http://www.vpser.net/opt/apc-eaccelerator-xcache.html" target="_blank">三款免费的PHP加速器：APC、eAccelerator、XCache比较</a></p>
<p>6、<a href="http://www.vpser.net/manage/vps-test-tool.html" target="_blank">常用VPS测试工具</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>六、系统监控</h2>
</div>
<p>1、<a title="到《监控宝 - VPS/服务器24小时免费监控》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/jiankongbao.html" target="_blank">监控宝 - VPS/服务器24小时免费监控</a></p>
<p>2、<a title="到《Linux VPS流量查看/监测工具 -- vnStat》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/vnstat.html" target="_blank">Linux VPS流量查看/监测工具 -- vnStat</a></p>
<p>3、<a title="到《VPS状态记录工具DVSL Ver0.01》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/dvsl.html" target="_blank">VPS状态记录工具DVSL Ver0.01</a></p>
<p>4、<a title="到《VPS运行状态监控--当机/网络故障通知》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/vps-monitor.html" target="_blank">VPS运行状态监控--当机/网络故障通知</a></p>
<p>5、<a title="到《nginx-RRD stats - Nginx图形化监控工具》的永久链接" rel="bookmark" href="http://www.vpser.net/manage/nginx-rrd-stats.html">nginx-RRD stats - Nginx图形化监控工具</a></p>
<p>6、<a href="http://www.vpser.net/manage/iftop.html" target="_blank">Linux流量监控工具 - iftop (最全面的iftop教程)</a></p>
<p>7、<a href="http://www.vpser.net/manage/linux-vps-ram-free.html" target="_blank">Linux VPS内存查看命令- free</a></p>
<div style="background-color: #666666; color: #ffffff;">
<h2>七、VPN等翻墙应用</h2>
</div>
<p>1、<a href="http://www.vpser.net/build/ramhost-vps-install-ssh-openvpn.html" target="_blank">RAMHOST的VPS小攻略之SSH和OpenVPN安装配置</a></p>
<p>2、<a href="http://www.vpser.net/manage/linode-vps-pptp-vpn-howto.html" target="_blank">Linode VPS PPTP VPN 安装配置教程</a></p>
<p>3、<a href="http://www.vpser.net/build/linode-install-openvpn.html" target="_blank">Linode VPS OpenVPN安装配置教程(基于Debian/Ubuntu)</a></p>
<p><strong>在VPS使用过程中有任何问题均可加入到<a href="http://bbs.vpser.net/" target="_blank">VPS侦探论坛</a>(<a href="http://bbs.vpser.net/" target="_blank">http://bbs.vpser.net/</a>)发贴求助或进行讨论。</strong></p>
<h2  class="related_post_title">相关文章：</h2><ul class="related_post"><li><a href="http://www.vpser.net/manage/jiankongbao-setup.html" title="监控宝 安装使用指南">监控宝 安装使用指南</a></li><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/usa-vps/ramhost-us-openvz-vps.html" title="RamHost.us Openvz VPS &#8211; 适合新手使用的高性价比VPS">RamHost.us Openvz VPS &#8211; 适合新手使用的高性价比VPS</a></li><li><a href="http://www.vpser.net/vps-cp/vps-xen-shell.html" title="VPS轻量级控制软件&#8211;Xen-Shell使用教程">VPS轻量级控制软件&#8211;Xen-Shell使用教程</a></li><li><a href="http://www.vpser.net/vps-cp/lxadmin-howto.html" title="lxadmin使用教程">lxadmin使用教程</a></li><li><a href="http://www.vpser.net/usa-vps/diavps.html" title="DiaHosting(原DiaVPS) 购买教程及基本测试">DiaHosting(原DiaVPS) 购买教程及基本测试</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/vpsyou-2011-august-coupons.html" title="VPSYOU 2011年8月全线VPS8折优惠码">VPSYOU 2011年8月全线VPS8折优惠码</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></ul><hr />
<p><small>© VPSer for <a href="http://www.vpser.net">VPS侦探</a>, 2009. |
<a href="http://www.vpser.net/build/vps-howto.html">Permalink</a> |
<a href="http://www.vpser.net/build/vps-howto.html#comments">6 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.vpser.net/build/vps-howto.html&title=VPS新手教程/指南">del.icio.us</a>
<br/>
Post tags: <a href="http://www.vpser.net/tag/vps" rel="tag">VPS</a>, <a href="http://www.vpser.net/tag/vps%e6%95%99%e7%a8%8b" rel="tag">VPS教程</a>, <a href="http://www.vpser.net/tag/%e6%8c%87%e5%8d%97" rel="tag">指南</a>, <a href="http://www.vpser.net/tag/%e6%95%99%e7%a8%8b" rel="tag">教程</a>, <a href="http://www.vpser.net/tag/%e6%96%b0%e6%89%8b" 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/build/vps-howto.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

