centos搭建lampp

本文详细介绍了在CentOS6上搭建LAMPP环境的步骤,包括卸载已有服务,下载并安装LAMPP,启动服务,设置开机自启动,创建FTP用户以及配置Apache虚拟目录和ProFTPD。
摘要由CSDN通过智能技术生成

CentOS6搭建LAMPP环境
1、卸载Apache、MySql、PHP

yum remove httpd mysql php -y

查询rpm包,一并删除
rpm -qa | grep httpd
rpm -e ……. –nodeps
2、下载LAMPP软件包
https://www.apachefriends.org/zh_cn/index.html
3、将文件添加权限
chmod a+x xampp-linux-x64-5.6.30-0-installer.run
4、执行安装

sh xampp-linux-x64-5.6.30-0-installer.run

./xampp-linux-x64-5.6.30-0-installer.run

5、安装完成,启动LAMPP

/opt/lampp/xampp start

6、添加开机自启动

ln –s /opt/lampp/xampp /etc/rc.d/init.d/xampp

chkconfig –add xampp

chkconfig –list | grep xampp

chkconfig –level 234 xampp on

7、通过localhost或IP地址访问,可以访问到xampp的欢迎页面,表示xampp已经安装成功。
8、在“/opt/lampp/htdocs/”新建php文件,进行访问测试。同时可以配置Apache的配置文件,开启虚拟目录访问。

相关文件路径
/opt/lampp/bin/ => xampp命令库
/opt/lampp/htdocs/ => Apache文档根目录
/opt/lampp/etc/httpd.conf => Apache配制文件
/opt/lampp/etc/my.cnf => MySQL 配制文件
/opt/lampp/etc/php.ini => PHP配置文件
/opt/lampp/etc/proftpd.conf => ProFTPD配制文件
/opt/lampp/phpmyadmin/config.inc.php => PHPMyAdmin配置文件

配置ProFTPD
1、添加FTP用户及用户组:

groupadd ftps

useradd ftpuser -g ftps -d /www -s /sbin/nologin

passwd ftpuser

chown -R ftpuser /www

chmod -R 755 /www

2、编辑ProFTPD配置文件 /opt/lampp/etc/proftpd.conf
DefaultRoot ~ ftpuser

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值