Actions

Installation using a command line interface (CLI)

From LimeSurvey Manual

Revision as of 21:03, 16 May 2015 by Nickdsl (talk | contribs) (Created page with "==Применение== В демонстрационном примере предполагается, что '''WEBROOT''' (корень Web-сервера) это дир...")

Введение

При выполнении автоматизированной установки, как при настройке виртуальной машины, мы можем использовать использовать Limesurvey (имеется ввиду v2.x) CLI (интерфейс командной строки). Файлы, используемые для этой цели (и для сброса паролей, а) находятся в папке WEBROOT/application/commands,а один из интересующих нас файлов - console.php.

Предварительные условия

  • Доступность PHP CLI
  • Доступность файла WEBROOT/application/config/config.php с параметрами автоматической установки.
  • Разрешения на папку с PHP модулями должны совпадать с требованиями LimeSurvey
  • Должна быть создана пустая база данных MySQL и пользоваться данной базой должен пользователь с соответствующими на нее правами.

Применение

В демонстрационном примере предполагается, что WEBROOT (корень Web-сервера) это директория /var/www/limesurvey

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

This will show:

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

The following commands are available:
 - install
 - message
 - migrate
 - plugin
 - resetpassword
 - shell
 - webapp

To see individual command help, use the following:
   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 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.

Example

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

outputs the following text:

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

and the database should be properly installed.