Difference between revisions of "EventStore Administration"

From GlueXWiki
Jump to: navigation, search
(Created page with "__TOC__ == Configuration == ~/.esdb.conf user:password ESMASTER=")
 
(Configuration)
Line 1: Line 1:
 
__TOC__
 
__TOC__
 +
 +
This page describes procedures used in administering an EventStore installation.
  
 
== Configuration ==  
 
== Configuration ==  
  
~/.esdb.conf
+
Each admin user should have configuration file in $HOME/.esdb.conf, which contains user:password entries and several other setting as illustrated below:
 +
<syntaxhighlight>
 +
# sample .esdb.conf file
 +
gluex:masterpassword
 +
sdobbs:thisisnotapassword
 +
ESMASTER=EventStore@hallddb:3306:/var/log/mysql
 +
</syntaxhighlight>
 +
 
 +
The users and passwords are used to control access to the master MySQL databases - management of SQLite databases is not access controlled.  Note that the authentication is performed by the EventStore scripts themselves.
 +
 
 +
''NOTE: authentication will change in upcoming versions''
  
user:password
+
== Adding new data to EventStore ==
ESMASTER=
+

Revision as of 15:35, 3 February 2015

This page describes procedures used in administering an EventStore installation.

Configuration

Each admin user should have configuration file in $HOME/.esdb.conf, which contains user:password entries and several other setting as illustrated below:

# sample .esdb.conf file
gluex:masterpassword
sdobbs:thisisnotapassword
ESMASTER=EventStore@hallddb:3306:/var/log/mysql

The users and passwords are used to control access to the master MySQL databases - management of SQLite databases is not access controlled. Note that the authentication is performed by the EventStore scripts themselves.

NOTE: authentication will change in upcoming versions

Adding new data to EventStore