搭建 LimeSurvey投票调查问卷系统

 

实验环境RedHat 7.4  LAMP  httpd-2.4.6  php-7.2  mariadb-5.5.56

关闭防火墙 setenforce 0 systemctl stop firewalld

yum install httpd* -y

yum install mariadb-server –y

yum install php72w

由于LimeSurvey支持php必须是5.5.9+版本  Redhat7.4 本地yum支持php最高5.4.16版本

参考https://jingyan.baidu.com/article/1709ad806543824634c4f09d.html 升级php版本 yum安装php一些依赖包/库

Systemctl restart httpd   systemctl start mariadb.service

设置了systemctl enable httpd.service  开机自启

systemctl list-unit-files 查看自启服务

官网下载

https://www.limesurvey.org/stable-release/

unzip limesurvey3.4.1+180221.zip

cp  –r  limesurvey /var/www/html

chown –R apache:apache /var/www/html

打开网页http://ip地址/limesurvey 开始安装

如提示一些依赖包没有安装或未发现 按照提示逐个安装即可 重启httpd

安装完界面如下:

 

原文地址:https://www.cnblogs.com/zhanglong68/p/8462611.html