用Apache重写规则配置虚拟二级域名

Standard
A记录域名解析

作用:
在用户注册后提供类似于 username.yemaosheng.com 之类的二级域名服务
步骤:
首先要去你注册域名的网站的域名管理面板中配置你的域名为泛域名解析(不是每个域名服务商都提供泛域名解析。我的域名是万网注册的,有这个服务)。
具体配置示例如下(图):

比如你有个叫yemaosheng.com的域名,则,在你的域名管理面板中添加一条A记录,记录的RR值配置为通配符(星号*),这样,完整的记录就是 *.yemaosheng.com ,指向你的服务器所在的IP。
然后对服务器上的Apache配置如下(注:QQ空间将反斜杠显示为”\”) [read more]

SVN on CentOS

Standard

1) Installation: The first thing to do is to install the packages I mentioned above. If you don't have Apache installed already, it'll go ahead and drag that down as well. [root@lucifer ~]# yum install mod_dav_svn subversion 2) Configurations: a) Apache: ... b) Subversion's Apache configs: [read more]

Linux CVS配置

Standard

运行rmp -qa | grep "cvs"以确定系统已经安装有CVS Server 1)进入 /etc/xinetd.d 目录,编辑一个 cvspserver 的文件,文件内容如下: 2)修改 /etc/services 文件 3)创建 cvs 组和 cvs 用户 [read more]

Linux网卡配置

Standard

1.手动设置
#ifconfig etn0 192.168.1.2,设置网卡IP地址
或直接运行ifconfig,这时候要注意了,在网络接口中有一个lo接口,也就是网络回环(loopback).
再使用ping命令
#ping 192.168.1.2 -c 3
测试3次,看能否正常响应. [read more]