# Keitaro CLI
Используйте Keitaro CLI (command-line Interface) для управления Keitaro из терминала.
# Использование
Список всех доступных команд:
kctl run cli-php list
1
Создать администратора учетной записи трекера:
kctl run cli-php admin:create admin password
1
Создать API ключ для пользователя:
kctl run cli-php admin_api:create_key --login admin
1
Добавить домен:
kctl run cli-php domains:create test.com
1
Список аргументов команды, выполните с [ИМЯ_КОМАНДЫ]--help
:
kctl run cli-php [COMMAND] --help
1
Пример:
[root@demo-en keitaro]# kctl run cli-php domains:create --help
Description:
Add domain
Usage:
domains:create [<domain>]
Arguments:
domain
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21