Linux中Ecshop搭建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux中Ecshop搭建相关的知识,希望对你有一定的参考价值。
首先需要安装上基本环境-------LAMP
yum -y install httpd mariadb-server mariadb php php-mysql gd php-gd
安装好之后再次执行一次命令,确定所有包都安装好
启动httpd和mariadb,并设置为开机自启动
systemctl start httpd mariadb
systemctl enable httpd mariadb
关闭防火墙和SELinux
systemctl stop firewalld.service
所有准备工作完毕,准备下载Ecshop安装包,并解压缩到一个自定义文件夹下
ECshop官网 http://www.ecshop.com/
解压缩
unzip ECShop_V3.0.0_UTF8_release0518.zip
创建文件夹
mkdir -p /webroot/zhufo/
cp ECShop_V3.0.0_UTF8_release0518/* /webroot/zhufo/
写配置文件
vim /etc/httpd/conf.d/zhufo.conf
使用另外一台主机ping作为服务器的主机,看是否能ping通,若能ping通,解析域名
浏览器里访问域名
chmod -R 777 /webroot/zhufo
以上是关于Linux中Ecshop搭建的主要内容,如果未能解决你的问题,请参考以下文章
在ubuntu下配置Ecshop环境并使用Jmeter进行压力测试