blob: 928a0526d48d6267f7fca4fbac53b62f2b3c14d6 (
plain)
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
|
#
# Sample configuration file for the IceGrid registry service
#
#
# The IceGrid instance name - must be unique to distinguish
# unrelated IceGrid deployments.
#
IceGrid.InstanceName=DemoIceGrid
#
# Client object adapter: listens on the loopback interface by default.
#
# IANA-registered TCP ports for the IceGrid registry:
# - 4061 (insecure)
# - 4062 (secure, using SSL)
#
# These endpoints must be accessible to Ice clients and servers as
# well as the IceGrid administrative utilities.
#
# To listen on an additional interface, add an additional endpoint with
# -h <name | IP address>, or remove -h localhost to listen on all
# interfaces.
#
IceGrid.Registry.Client.Endpoints=tcp -p 4061 -h localhost
#IceGrid.Registry.Client.Endpoints=ssl -p 4062 -h localhost
#IceGrid.Registry.Client.Endpoints=tcp -p 4061 -h localhost:ssl -p 4062 -h localhost
#
# Server and Internal object adapters: listen on the loopback
# interface using an OS-assigned port number.
#
# The Server endpoints must be accessible to Ice servers deployed on
# IceGrid nodes or to Ice servers using IceGrid dynamic registration.
# The Internal endpoints must be accessible to IceGrid nodes.
#
# To listen on an additional interface, add an additional endpoint with
# -h <name | IP address>, or remove -h localhost to listen on all
# interfaces. Note that access to these endpoints can pose a security
# risk (remote code execution) and therefore these endpoints should be
# secured. See the Ice manual for more information.
#
IceGrid.Registry.Server.Endpoints=tcp -h localhost
IceGrid.Registry.Internal.Endpoints=tcp -h localhost
#
# The directory where the IceGrid registry maintains its databases.
# This directory must already exist when the registry starts.
#
# The path name below is merely a suggestion, based on the assumption
# that the registry is running under the LocalService account.
#
IceGrid.Registry.LMDB.Path=C:\Windows\ServiceProfiles\LocalService\AppData\Local\ZeroC\icegrid\registry
#
# Authentication/authorization
#
# Using a NullPermissionsVerifier accepts any username/password
# combination (not recommended for production).
#
IceGrid.Registry.PermissionsVerifier=DemoIceGrid/NullPermissionsVerifier
IceGrid.Registry.AdminPermissionsVerifier=DemoIceGrid/NullPermissionsVerifier
#
# Default templates
#
IceGrid.Registry.DefaultTemplates=@installdir@\config\templates.xml
#
# Trace properties.
#
IceGrid.Registry.Trace.Node=1
IceGrid.Registry.Trace.Replica=1
#
# IceMX configuration
#
IceMX.Metrics.Debug.GroupBy=id
IceMX.Metrics.Debug.Disabled=1
IceMX.Metrics.Debug.Reject.parent=Ice\.Admin
IceMX.Metrics.ByParent.GroupBy=parent
IceMX.Metrics.ByParent.Disabled=1
|