内容
XAMPP是一个Apache+PHP+ProFTP+MySQL的WEB服务环境包。
在单台128VPS上我使用XAMPP来提供http+php+ftp+mysql(或者BuyVM上的MySQL以节约内存)服务。
以下是安装和配置的方法:
- 系统选择:CentOS 6.0 32bit (minimal)
- 更新所有系统组件:
- yum -y update && yum upgrade
- 下载并解压XAMPP:
- wget http://www.apachefriends.org/download.php?xampp-linux-1.8.1.tar.gz && tar xvfz xampp-linux-1.8.1.tar.gz -C /opt
- 启动XAMPP:
- /opt/lampp/lampp start
- 设置XAMPP安全信息(例如FTP的密码):
- /opt/lampp/lampp security
- 把XAMPP作为系统服务启动
- vi /etc/rc.local
- 然后在最后面加入代码:
- /opt/lampp/lampp start > /dev/null 2>&1 &
- 完成。
虚拟主机的设置需要手动修改/ops/lampp/extra/xampp-vhosts.conf,修改好后重启xampp:
-
- /opt/lampp/lampp stop > /dev/null 2>&1 && /opt/lampp/lampp start > /dev/null 2>&1
XAMPP常见FAQ http://www.apachefriends.org/en/faq-xampp-linux.html#start
添加新评论