LimeSurvey Is An Open Source Survey Application – Install it on Ubuntu Linux

LimeSurvey Login

LimeSurvey is an open source application; simply install it and create online surveys.  It is completely free tool, download source code and modify it to your needs if you like, but it’s default features should suffice for creating any kind of surveys. It is available in 80 languages, so you can easily create surveys using your native language. You can create unlimited number of surveys using this tool and it lets you create surveys of unlimited length.  Such a fantastic and feature rich application available without any cost, is no less than a blessing.

Installing LimeSurvey on Ubuntu

Let’s see how we can install this awesome open source application, please note that it is developed in PHP and uses MySQL on the backend for database related operations, so here are pre-requisites for this application. We must have following three packages installed on our Linux system before we attempt to install LimeSurvey.

  • Apache
  • PHP
  • MySQL Server

In order to install these components, launch your system terminal and install lamp-stack. Lamp stack comes with all these components so it should suffice our needs.

sudo apt-get install lamp-server^

During the installation process it will launch a pop up to specify mysql root password, note down the password you set here as it will be used later when installing LimeSurvey.

MySQL install

Once the installation of LAMP is complete, run following command on the terminal to start apache web server.

sudo /etc/init.d/apache2 start

Launch your web browser and load http://localhost – successful installation of apache web server should display a page as shown below.

Apache page

Important note: By default Apache document root is /var/www/html. We need to place our web scripts in this directory so that Apache may serve them successfully.

Our Ubuntu system is all set to install LimeSurvey now. Download the latest version for this application from following URL.

Download LimeSurvey

Download LimeSurvey

Once the download process is complete, go to the download location via terminal and run following command to move  the downloaded file to Apache document root.

sudo mv limesurvey206plus-build150730.zip /var/www/html/

Change your working directory:

cd /var/www/html/

Here, run following command to unzip the LimeSurvey downloaded file.

sudo unzip limesurvey206plus-build150730.zip

Give writable permissions to limesurvey directory for the installation purposes.

chmod -R 777 limesurvey

Launch http://localhost/limesurvey address in the browser now, it should display the installation page for limesurvey. Here click “Start Installation” .

Install LimeSurvey

Accept License Agreement from this step.

LimeSurvey License

Specify your database credentials from this step, provide mysql root logins and specify what name you want to give to the database for this new installation. Installer script will create database itself on the backend with specified name, click “Next” once done.

LimeSurvey DB

Here are some optional settings, you can change default username and password for admin user from here. You can set your email account or survey site name from here too. Click “Next” to proceed further with the installation process.

LimeSurvey Additional

There you go, the installation is complete now – click “Administration” option to login the admin panel for your survey application.

LimeSurvey Login

Starting creating interactive surveys 🙂

LimeSurvey

Conclusion

It is a feature rich application, easy to install and use. LimeSurvey has rich internet community and help available. It’s source code is simple and well optimized; any PHP developer with intermediate level of development skills can modify it to customize to your needs.