forked from gchq/stroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstroom.conf.example
41 lines (32 loc) · 1.46 KB
/
stroom.conf.example
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
#This is an example of the configuration file ~/.stroom/stroom.conf that sets
#various properties for running stroom in development
#It is also used by travis for configuring stroom's integration tests
#Prevents stroom from prompting for a new password on first login
stroom.developmentMode=true
stroom.node=node1a
stroom.rack=rack1
stroom.temp=/tmp/stroom/
#Uncomment this to enable browser's right click menu for development
#stroom.ui.oncontextmenu=
#Hibernate properties
stroom.jpaHbm2DdlAuto=validate
stroom.jpaDialect=org.hibernate.dialect.MySQLInnoDBDialect
#Stroom database properties
stroom.jdbcDriverClassName=com.mysql.jdbc.Driver
stroom.jdbcDriverUrl=jdbc:mysql://localhost:3307/stroom?useUnicode=yes&characterEncoding=UTF-8
stroom.jdbcDriverUsername=stroomuser
stroom.jdbcDriverPassword=stroompassword1
#SQL Statistics database properties
stroom.statistics.sql.jdbcDriverClassName=com.mysql.jdbc.Driver
stroom.statistics.sql.jdbcDriverUrl=jdbc:mysql://localhost:3308/statistics?useUnicode=yes&characterEncoding=UTF-8
stroom.statistics.sql.jdbcDriverUsername=stroomuser
stroom.statistics.sql.jdbcDriverPassword=stroompassword1
#Authentication properties
stroom.auth.jwt.secret=CHANGE_ME
stroom.auth.jwt.issuer=stroom
#Service discovery
#Set this to false to local servcie lookup when you do not have Zookeeper
stroom.serviceDiscovery.enabled=true
#Kafka
#Set this to blank to prevent stroom from trying to establish a connection
stroom.kafka.bootstrap.servers=localhost:9092