Commit | Line | Data |
---|---|---|
6c9e7d36 VK |
1 | /* |
2 | ** Default configuration parameters | |
b51c8c91 AK |
3 | ** |
4 | ** ex: syntax=sql | |
6c9e7d36 | 5 | */ |
c1142e46 | 6 | |
333ece94 VK |
7 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
8 | VALUES ('DBFormatVersion',DB_FORMAT_VERSION,0,1); | |
70573ffe VK |
9 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
10 | VALUES ('DBSyntax',DB_SYNTAX,0,1); | |
b4895bbe VK |
11 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
12 | VALUES ('DBLockStatus','UNLOCKED',0,1); | |
13 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
14 | VALUES ('DBLockInfo','',0,0); | |
b1c6ea4a VK |
15 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
16 | VALUES ('ServerID','',0,1); | |
9587eba3 VK |
17 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
18 | VALUES ('EnableZoning','0',1,1); | |
333ece94 VK |
19 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
20 | VALUES ('SyncInterval','60',1,1); | |
21 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
22 | VALUES ('NewNodePollingInterval','60',1,1); | |
23 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
24 | VALUES ('DiscoveryPollingInterval','900',1,1); | |
25 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
56d41577 | 26 | VALUES ('StatusPollingInterval','60',1,1); |
333ece94 VK |
27 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
28 | VALUES ('ConfigurationPollingInterval','3600',1,1); | |
29 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
9587eba3 | 30 | VALUES ('ResolveNodeNames','1',1,0); |
333ece94 VK |
31 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
32 | VALUES ('NumberOfEventProcessors','1',1,1); | |
33 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
34 | VALUES ('ClientListenerPort','4701',1,1); | |
35 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
36 | VALUES ('NumberOfDataCollectors','10',1,1); | |
d39ca961 IK |
37 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
38 | VALUES ('NumberOfStatusPollers','10',1,1); | |
39 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
40 | VALUES ('NumberOfConfigurationPollers','4',1,1); | |
bb0a5754 VK |
41 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
42 | VALUES ('NumberOfDiscoveryPollers','1',1,1); | |
333ece94 | 43 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
cb7ec554 | 44 | #ifdef DB_MYSQL |
f2692e04 | 45 | VALUES ('IDataTableCreationCommand','CREATE TABLE idata_%ld (item_id integer not null,idata_timestamp integer,idata_value varchar(255)) TYPE=InnoDB',0,1); |
cb7ec554 | 46 | #else |
f2692e04 | 47 | VALUES ('IDataTableCreationCommand','CREATE TABLE idata_%ld (item_id integer not null,idata_timestamp integer,idata_value varchar(255))',0,1); |
cb7ec554 | 48 | #endif |
f2692e04 | 49 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
c13cb4a5 | 50 | VALUES ('IDataIndexCreationCommand_0','CREATE INDEX idx_idata_%ld_item_id ON idata_%ld(item_id)',0,1); |
dfd24edd | 51 | #ifndef DB_MYSQL |
52fe5aa2 | 52 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
c13cb4a5 | 53 | VALUES ('IDataIndexCreationCommand_1','CREATE INDEX idx_idata_%ld_timestamp ON idata_%ld(idata_timestamp)',0,1); |
dfd24edd | 54 | #endif |
333ece94 VK |
55 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
56 | VALUES ('RunNetworkDiscovery','0',1,1); | |
57 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
58 | VALUES ('EnableAdminInterface','1',1,1); | |
59 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
60 | VALUES ('EnableAccessControl','1',1,0); | |
61 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
62 | VALUES ('EnableEventsAccessControl','0',1,0); | |
63 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
b7be6692 | 64 | VALUES ('EventLogRetentionTime','5184000',1,0); // Default retention time is 60 days == 5184000 seconds |
333ece94 VK |
65 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
66 | VALUES ('HouseKeepingInterval','3600',1,1); | |
67 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
dfd24edd | 68 | VALUES ('DeleteEmptySubnets','0',1,1); |
333ece94 VK |
69 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
70 | VALUES ('EnableSNMPTraps','1',1,1); | |
7cbe553e VK |
71 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
72 | VALUES ('SMSDriver','<none>',1,1); | |
083abe62 VK |
73 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
74 | VALUES ('SMTPServer','localhost',1,0); | |
75 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
76 | VALUES ('SMTPFromAddr','netxms@localhost',1,0); | |
751f4600 VK |
77 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
78 | VALUES ('AgentUpgradeWaitTime','600',1,0); | |
a9052846 VK |
79 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
80 | VALUES ('NumberOfUpgradeThreads','10',1,0); | |
dfd24edd VK |
81 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
82 | VALUES ('KeepAliveInterval','60',1,1); | |
9b057805 VK |
83 | |
84 | ||
6c9e7d36 VK |
85 | /* |
86 | ** Default users | |
87 | */ | |
9b057805 | 88 | |
fa3f5211 | 89 | INSERT INTO users (id,name,password,system_access,flags,full_name,description) |
057f9dfb VK |
90 | VALUES (0,'admin', |
91 | '3A445C0072CD69D9030CC6644020E5C4576051B1', // Default password: netxms | |
00c79c7b | 92 | 65535,8,'','Built-in system administrator account' |
057f9dfb | 93 | ); |
fa3f5211 | 94 | INSERT INTO users (id,name,password,system_access,flags,full_name,description) |
057f9dfb | 95 | VALUES (1,'guest','DA39A3EE5E6B4B0D3255BFEF95601890AFD80709', // Default password is empty |
00c79c7b | 96 | 0,0,'','Default guest user' |
057f9dfb VK |
97 | ); |
98 | ||
99 | ||
100 | /* | |
101 | ** Special "Everyone" user group | |
102 | */ | |
103 | ||
fa3f5211 | 104 | INSERT INTO user_groups (id,name,system_access,flags,description) |
00c79c7b | 105 | VALUES (-2147483648, 'Everyone', 16, 0, 'Built-in everyone group'); |
b6a77d6d VK |
106 | |
107 | ||
3c468b80 VK |
108 | /* |
109 | ** Default event groups | |
110 | */ | |
111 | ||
c6576857 VK |
112 | #define ID_GROUP_1 -2147483647 |
113 | #define ID_GROUP_2 -2147483646 | |
3c468b80 | 114 | |
feea53fd | 115 | INSERT INTO event_groups (id,name,description) |
3c468b80 | 116 | VALUES (ID_GROUP_1,'NodeStatus','All events reporting about node status change'); |
feea53fd | 117 | INSERT INTO event_groups (id,name,description) |
3c468b80 VK |
118 | VALUES (ID_GROUP_2,'NewObjects','All events reporting about new objects creation'); |
119 | ||
c19b2871 VK |
120 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_NORMAL); |
121 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_MINOR); | |
122 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_WARNING); | |
123 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_MAJOR); | |
124 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_CRITICAL); | |
125 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_UNKNOWN); | |
126 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_1,EVENT_NODE_UNMANAGED); | |
127 | ||
128 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_2,EVENT_NODE_ADDED); | |
129 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_2,EVENT_SUBNET_ADDED); | |
130 | INSERT INTO event_group_members (group_id,event_code) VALUES (ID_GROUP_2,EVENT_INTERFACE_ADDED); | |
ef44d5ea VK |
131 | |
132 | ||
133 | /* | |
134 | ** Default container categories | |
135 | */ | |
136 | ||
137 | INSERT INTO container_categories (category,name,image_id,description) | |
138 | VALUES (1,'Group',0,'Generic object group'); | |
139 | INSERT INTO container_categories (category,name,image_id,description) | |
140 | VALUES (2,'Location',0,'Geografic location'); | |
141 | INSERT INTO container_categories (category,name,image_id,description) | |
142 | VALUES (3,'Service',0,'Logical service'); | |
5e918a37 VK |
143 | |
144 | ||
145 | /* | |
146 | ** SNMP OID to node type mappings | |
147 | */ | |
148 | ||
149 | INSERT INTO oid_to_type (pair_id,snmp_oid,node_type,node_flags) | |
150 | VALUES (0,'.1.3.6.1.4.1.2272.*',NODE_TYPE_NORTEL_ACCELAR,0); |