• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How To Install Limesurvey On Centos 7.6

  • 00:33 rpm -q centos-release
  • 00:45 mysql -u root -p
  • 01:50 wget https://github.com/LimeSurvey/LimeSurvey/archive/master.zip
  • 02:08 unzip master.zip
  • 02:27 mv LimeSurvey-master /var/www/limesurvey
  • 02:43 chown -R apache:apache /var/www/limesurvey
  • 02:57 chmod -R 755 /var/www/limesurvey
  • 03:13 vim /etc/httpd/conf.d/limesurvey.conf
  • 04:24 systemctl restart httpd
6182

Installation Of Lime Survey On CentOS 7.6

Installation Process

Check the Centos version by using the following command


[root@linuxhelp ~]# rpm -q centos-release
centos-release-7-6.1810.2.el7.centos.x86_64

Going to create database By using the mysql command

[root@linuxhelp ~]# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.64-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database limedb;
Query OK, 1 row affected (0.01 sec)

MariaDB [(none)]> create user 'limeuser'@localhost identified by 'Linuxc#45';
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on limedb.* to 'limeuser'@localhost;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit
Bye

Download the limesurvey installation package by using wget command

 [root@linuxhelp ~]# wget https://github.com/LimeSurvey/LimeSurvey/archive/master.zip
--2019-11-23 06:10:28--  https://github.com/LimeSurvey/LimeSurvey/archive/master.zip
Resolving github.com (github.com)... 13.234.210.38
Connecting to github.com (github.com)|13.234.210.38|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/LimeSurvey/LimeSurvey/zip/master [following]
--2019-11-23 06:10:28--  https://codeload.github.com/LimeSurvey/LimeSurvey/zip/master
Resolving codeload.github.com (codeload.github.com)... 13.233.43.20
Connecting to codeload.github.com (codeload.github.com)|13.233.43.20|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’

    [          <=>                                               ] 81,045,314  1.09MB/s   in 70s    

2019-11-23 06:11:39 (1.10 MB/s) - ‘master.zip’ saved [81045314]

Extract the downloaded package

[root@linuxhelp ~]# unzip master.zip
Archive:  master.zip
0cf514100f9b79b13023c67cb3827753e230be26
   creating: LimeSurvey-master/
 extracting: LimeSurvey-master/.bowerrc  
  inflating: LimeSurvey-master/.editorconfig  
  inflating: LimeSurvey-master/.gitattributes  
  inflating: LimeSurvey-master/.gitignore  
  inflating: LimeSurvey-master/.htaccess  
  inflating: LimeSurvey-master/.scrutinizer.yml  
.
.
xtension.php  
  inflating: LimeSurvey-master/upload/twig/extensions/HelloWorld_Twig_Extension/HelloWorld_Twig_Extension.xml  
  inflating: LimeSurvey-master/upload/twig/extensions/HelloWorld_Twig_Extension/README.md  
  inflating: LimeSurvey-master/upload/twig/extensions/README.md 

Move the limesurvey directory to apache root directory

 [root@linuxhelp ~]# mv LimeSurvey-master /var/www/limesurvey

Set the ownership and permission for limesurvey

[root@linuxhelp ~]# chown -R apache:apache /var/www/limesurvey
 [root@linuxhelp ~]# chmod -R 755 /var/www/limesurvey

Configure the virtualhost for limesurvey

 [root@linuxhelp ~]# vim /etc/httpd/conf.d/limesurvey.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/limesurvey
<directory /var/www/limesurvey>
allowoverride all
allow from all
</directory>
</virtualhost>

Restart the apache service by using the following command

[root@linuxhelp ~]# systemctl restart httpd

Open browser and enter your domain name snap1 This is welcome page of limesurvey snap2

Accept the licenses agreement snap3 Check the requirements for limesurvey snap4 Configure your database details snap5 Installation is completed successfully snap6 Enter the admin credentials snap7 This is the dashboard of limesurvey snap8 This is the method to install limesurvey On centos 7.6

Tags:
caden
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is LimeSurvey?

A

LimeSurvey also was known as PHP Surveyor is a free and open source online survey application written in PHP and based on Mysql, SQLite, and PostgreSQL. LimeSurvey allows you to develop and publish online surveys, collect responses, create statistics, and export the resulting data to other applications using web interface.

Q

What are the required PHP extensions for LimeSurvey?

A

The required PHP extensions for Limesurvey is as follows
# php56u php56u-common php56u-xml php56u-gd php56u-mbstring php56u-mysqlnd php56u-mcrypt php56u-imap php56u-ldap

Q

How can I embed a flash file in Limesurvey?

A

Navigate to the place in your survey where you want insert your Flash file.
Open the full-screen editor mode by clicking the 'LimeFitWin' button on the editor tool-bar.
On the full-screen editor tool-bar you will find a little button with a Flash symbol. Click on it. A dialog will open.

Q

How can I restore data from a deactivated Limesurvey?

A

Then, and only then the following steps will work:

Activate your survey again
Go to the "Browse responses for this survey" menu.
Click at the "Import answers from a deactivated survey table" button.


Choose your source table.

Q

How can I create a database and a user in MySQL with command-line access on limesurvey?

A

You have to enter the commands below in your MySQL for creating database for Limesurvey:

create database ;
create user ;
create user @localhost;

Related Tutorials in How To Install Limesurvey On Centos 7.6

Related Tutorials in How To Install Limesurvey On Centos 7.6

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How To Install Limesurvey On Centos 7.6

Related Forums in How To Install Limesurvey On Centos 7.6

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
OpenVAS
frank class=
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"
Dec 20, 2018
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Owen ?
How to add SSH key to my Gitlab account

I need to add the SSH key in my gitlab account. How to do so ????

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.