Actions

Installatie via de commando-regel (CLI)

From LimeSurvey Manual

Revision as of 19:24, 19 October 2017 by Han (talk | contribs)

Introductie

Als je een automatische installatie uitvoert, alsof het een Virtuele Machine is, kunnen we LimeSurvey's (hier v2.x genoemd) CLI (Command Line interface) gebruiken. De bestanden die hierbij gebruikt worden (en die ook gebruikt worden voor het resetten van wachtwoorden) staan in de map WEBROOT/application/commands, in dit geval gaat het om het bestand console.php.

Voorwaarden

  • PHP CLI moet beschikbaar zijn.
  • WEBROOT/application/config/config.php moet beschikbaar zijn en de parameters van het installatie-proces bevatten.
  • De rechten op de beschikbare PHP Modules moeten voldoen aan wat LimeSurvey nodig heeft.
  • Er moet een lege MySQL database aangemaakt zijn en de rechten op de database moeten zijn verleend aan de database-gebruiker.

Gebruik

In het voorbeeld nemen we aan dat WEBROOT de waarde /var/www/limesurvey heeft.

cd /var/www/limesurvey/application/commands
php console.php

Uitvoertekst:

Yii command runner (based on Yii v1.1.14)
Usage: console.php <command-name> [parameters...]

De beschikbare commando's:
 - install
 - message
 - migrate
 - plugin
 - resetpassword
 - shell
 - webapp

Voor hulp bij een specifiek commando:
   console.php help <command-name>

Syntax

php console.php <Admin User Name> <Admin User Password> <Full Name> <EMail ID>
  • The Full Name and Password are enclosed in double quotes if they contain spaces or other special characters.
  • All the other parameters like DB Name, DB Type, DB User, DB Password etc. are to be populated in the config.php file before script execution.
  • The script should be executed from and in the WEBROOT/application/commands folder only.

Voorbeeld

cd /var/www/limesurvey/application/commands
php console.php install limeadmin pwd123 Admin admin@mydomain.com

uitvoertekst:

/var/www/limesurvey/installer/sql/create-mysql.sql

en de database moet aanwezig zijn.