1+ #
12# Licensed to the Apache Software Foundation (ASF) under one
23# or more contributor license agreements. See the NOTICE file
34# distributed with this work for additional information
45# regarding copyright ownership. The ASF licenses this file
56# to you under the Apache License, Version 2.0 (the
67# "License"); you may not use this file except in compliance
78# with the License. You may obtain a copy of the License at
8- #
9+ #
910# http://www.apache.org/licenses/LICENSE-2.0
10- #
11+ #
1112# Unless required by applicable law or agreed to in writing,
1213# software distributed under the License is distributed on an
1314# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1415# KIND, either express or implied. See the License for the
1516# specific language governing permissions and limitations
1617# under the License.
18+ #
1719
18- # Just here to make the unit test not blow up
20+
21+ # management server clustering parameters, change cluster.node.IP to the machine IP address
22+ # in which the management server(Tomcat) is running
23+ cluster.node.IP =127.0.0.1
24+ cluster.servlet.port =9090
25+ region.id =1
26+
27+ # CloudStack database settings
28+ db.cloud.username =cloud
29+ db.cloud.password =cloud
30+ db.root.password =
31+ db.cloud.host =localhost
32+ db.cloud.port =3306
33+ db.cloud.name =cloud
34+
35+ # CloudStack database tuning parameters
36+ db.cloud.maxActive =250
37+ db.cloud.maxIdle =30
38+ db.cloud.maxWait =10000
39+ db.cloud.autoReconnect =true
40+ db.cloud.validationQuery =SELECT 1
41+ db.cloud.testOnBorrow =true
42+ db.cloud.testWhileIdle =true
43+ db.cloud.timeBetweenEvictionRunsMillis =40000
44+ db.cloud.minEvictableIdleTimeMillis =240000
45+ db.cloud.poolPreparedStatements =false
46+ db.cloud.url.params =prepStmtCacheSize=517&cachePrepStmts=true&prepStmtCacheSqlLimit=4096
47+
48+ # usage database settings
49+ db.usage.username =cloud
50+ db.usage.password =cloud
51+ db.usage.host =localhost
52+ db.usage.port =3306
53+ db.usage.name =cloud_usage
54+
55+ # usage database tuning parameters
56+ db.usage.maxActive =100
57+ db.usage.maxIdle =30
58+ db.usage.maxWait =10000
59+ db.usage.autoReconnect =true
60+
61+ # awsapi database settings
62+ db.awsapi.username =cloud
63+ db.awsapi.password =cloud
64+ db.awsapi.host =localhost
65+ db.awsapi.port =3306
66+ db.awsapi.name =cloudbridge
67+
68+ # Simulator database settings
69+ db.simulator.username =cloud
70+ db.simulator.password =cloud
71+ db.simulator.host =localhost
72+ db.simulator.port =3306
73+ db.simulator.name =simulator
74+ db.simulator.maxActive =250
75+ db.simulator.maxIdle =30
76+ db.simulator.maxWait =10000
77+ db.simulator.autoReconnect =true
0 commit comments