美文网首页
iwebshop的lamp安装

iwebshop的lamp安装

作者: zwb_jianshu | 来源:发表于2019-08-02 19:16 被阅读0次

    一、软件简介

    常用路径
      安装路径: http://您的网站域名/install/index.php
      前台登陆: http://您的网站域名
      后台登陆: http://您的网站域名/index.php?controller=systemadmin
      商户登录:http://您的网站域名/index.php?controller=seller
    其他说明
      开启伪静态和个性化域名:  参考 《url路由配置方法.txt》
    

    二、安装环境

    cat /etc/redhat-release 
    getenforce 
    systemctl status firewalld.service 
    systemctl status iptables.service 
    ifconfig  eth0
    

    三、安装软件包并配置数据库,下载php和apache、mariadb包

    rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
    rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm                         
    yum install httpd mariadb-server mariadb  php56w php56w-xml  php56w-gd php56w-mysql php56w-mbstring -y 
    systemctl restart  mariadb.service
    systemctl enable  mariadb.service
    systemctl restart httpd
    systemctl enable  httpd
    mysql_secure_installation 
    create database iwebshop character set utf8 collate utf8_bin;
    grant all privileges on iwebshop.* to iwebshop@localhost identified by 'iwebshop';
    grant all privileges on iwebshop.* to iwebshop@'%' identified by 'iwebshop';
    FLUSH PRIVILEGES;
    SHOW DATABASES;
    SHOW GRANTS FOR 'iwebshop'@'localhost';
    

    四、上传iwebshop5.0的安装包/var/www/html/iwebshop,并授权apache

    unzip   iwebshop5.0临时试用版本.zip
    chown  -R apache.apache  /var/www/html/*
    

    五、浏览器访问:http://10.0.0.75/iwebshop

    image.png image.png image.png image.png image.png image.png image.png image.png image.png image.png image.png image.png

    相关文章

      网友评论

          本文标题:iwebshop的lamp安装

          本文链接:https://www.haomeiwen.com/subject/kdjrdctx.html