VPS杂记


入手VPS好久了,用的是LNMP架构,在Evernote中压了一些笔记,一一贴出来示众~

安装lnmp
注:版本可能有更新,0.7为截至2011/06/03的最新版
[shell]
wget http://soft.vpser.net/lnmp/lnmp0.7.tar.gz
tar zxvf lnmp0.7.tar.gz
cd lnmp0.7/
./ubuntu.sh
[/shell]

创建虚拟主机
[shell]
/root/vhost.sh
[/shell]

root账户的使用
平时使用普通账户登录,需要使用root权限的时候用su命令,然后再输入root命令,使用完root权限之后可以用ctrl+D退出权限,继续使用普通账户权限,这样可以防止权限的混乱

安装OpenVPN
[shell]
wget http://vpsnoc.com/scripts/debian-openvpn.sh
chmod +x debian-openvpn.sh
./debian-openvpn.sh
[/shell]
按照提示安装完成后下载keys.tgz,将其解压到OpenVPN安装目录下的config子目录,然后启动OpenVPN就可以使用了

wordpress的rewrite问题
默认的规则有点小问题,替换为以下的即可:
[shell]
if (!-e $request_filename)
{
rewrite (.*) /index.php;
}
[/shell]

WordPress文件权限
[shell]
chown -R www.www /blog
[/shell]


2 responses to “VPS杂记”

  1. @Scoop Guo 哇!你不说我都忘了!按照市场行情,驴打滚利滚利,一天翻一倍,现在一共多少钱了呀?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.