-
Notifications
You must be signed in to change notification settings - Fork 6
/
kamctlrc
94 lines (68 loc) · 2.15 KB
/
kamctlrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# The Kamailio configuration file for the control tools.
#
# Here you can set variables used in the kamctl and kamdbctl setup
# scripts. Per default all variables here are commented out, the control tools
# will use their internal default values.
## your SIP domain
# SIP_DOMAIN=kamailio.org
## chrooted directory
# $CHROOT_DIR="/path/to/chrooted/directory"
## database type: MYSQL, PGSQL, ORACLE, DB_BERKELEY, DBTEXT, or SQLITE
# by default none is loaded
#
# If you want to setup a database with kamdbctl, you must at least specify
# this parameter.
DBENGINE=MYSQL
## database host
DBHOST=[DBHOST]
## database host
DBPORT=3306
## database name (for ORACLE this is TNS name)
DBNAME=kamailio
# database path used by dbtext, db_berkeley or sqlite
# DB_PATH="/usr/local/etc/kamailio/dbtext"
## database read/write user
DBRWUSER=[DBUSER]
## password for database read/write user
DBRWPW=[DBPASS]
## database read only user
DBROUSER=[DBUSER]
## password for database read only user
DBROPW=[DBPASS]
## database super user (for ORACLE this is 'scheme-creator' user)
DBROOTUSER=[DBUSER]
## password for database super user
## - important: this is insecure, targeting the use only for automatic testing
## - known to work for: mysql
DBROOTPW=[DBPASS]
## database character set (used by MySQL when creating database)
CHARSET="latin1"
# Program to calculate a message-digest fingerprint
MD5="md5sum"
# awk tool
AWK="awk"
# gdb tool
GDB="gdb"
# If you use a system with a grep and egrep that is not 100% gnu grep compatible,
# e.g. solaris, install the gnu grep (ggrep) and specify this below.
#
# grep tool
GREP="grep"
# egrep tool
EGREP="egrep"
# sed tool
SED="sed"
# tail tool
LAST_LINE="tail -n 1"
# expr tool
EXPR="expr"
# Describe what additional tables to install. Valid values for the variables
# below are yes/no/ask. With ask (default) it will interactively ask the user
# for an answer, while yes/no allow for automated, unassisted installs.
#
# If to install tables for the modules in the EXTRA_MODULES variable.
INSTALL_EXTRA_TABLES=yes
# If to install presence related tables.
INSTALL_PRESENCE_TABLES=no
# If to install uid modules related tables.
INSTALL_DBUID_TABLES=no