Project

General

Profile

Configure sinedoncfg shared » History » Version 8

Amber Herold, 04/16/2012 11:41 AM

1 1 Anchi Cheng
h1. Configure sinedon.cfg
2
3
4
5 7 Amber Herold
Sinedon is an object relational mapping library designed to interact with the Leginon and Appion databases.
6
7 1 Anchi Cheng
    * An example configuration file is available at:
8
      myami/sinedon/examples/sinedon.cfg
9
10
    * Configurations for all users should be placed at the following path:
11
      $PYTHONSITEPKG/sinedon/sinedon.cfg
12 8 Amber Herold
Note: You can discover the $PYTHONSITEPKG path by starting python:
13
<pre>
14
python
15
import sys
16
sys.path
17
</pre>
18
The first path to site-packages should hold the config file.
19 1 Anchi Cheng
20 5 Anchi Cheng
    * Modify sinedon.cfg to look like the following example. Set the host, [[Explanation of Sample Names|db, user, and passwd to match the databases created during your Database Server setup]]. Note that the user here is the MySQL user Leginon uses to communicate with the database for all Leginon users. For an Appion or Leginon installation that uses Project database, set the following:
21 1 Anchi Cheng
<pre>
22
[global]
23
#host: your_database_host
24
host: localhost
25
user: usr_object
26
passwd:
27
28
[projectdata]
29
db: projectdb
30
31
[leginondata]
32
db: leginondb
33
</pre>
34 6 Amber Herold
35
*Note:* If you are a developer, and you need to use sinedon.cfg settings that are different from the global settings, you may create your own sinedon.cfg file and place it in your home directory. This version will override the global version located in the site packages directory.