Differences between revisions 11 and 29 (spanning 18 versions)
Revision 11 as of 2010-03-29 08:33:53
Size: 3030
Editor: root
Comment:
Revision 29 as of 2010-04-22 02:26:21
Size: 4188
Editor: root
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
<<TableOfContents>>

= Install Dependencies =

You will first need to install the various [[EMEN2/Dependencies|EMEN2 dependencies]]. They are all straight-forward to install, and can generally be installed using Python's easy_install system.

= Download EMEN2 =

Download the latest EMEN2 source code release and untar

http://ncmi.bcm.edu/ncmi/software/software_details?selected_software=EMEN2

If there is an existing source tree installed, you may want to rename it in case you need to revert to the previous version, e.g. mv emen2 emen2.old.03.20.2010.

If you have an existing EMEN2 environment, I strongly recommend taking an additional tar backup of that directory before proceeding, in addition to normal backup procedures (log archive, db hot backup) in case you need to revert without the difficulty of performing a full recovery from archives.
Line 7: Line 22:
=== 1. Download the latest EMEN2 source code release and untar === = Create EMEN2 Environment =
Line 9: Line 24:
{{{
cd /home/emen2
tar -xvzf emen2.03.28.2010.tar.gz
cd emen2
}}}
The instructions below assume you are setting EMEN2 up in a separate user account called 'emen2', with a default home directory '/home/emen2', and the emen2 source code in '/home/emen2/src/emen2'
Line 15: Line 26:
If there is an existing source tree installed, you may want to rename it in case you want to revert to the previous version, e.g. mv emen2 emen2.old.03.20.2010. You will need to create a directory for your EMEN2 environment. A reasonable default is /home/emen2/db.
Line 17: Line 28:
If you have an existing database environment, I strongly recommend taking an additional tar backup of that directory before proceeding, in addition to normal backup procedures (log archive, db hot backup) in case you need to revert without the difficulty of performing a full recovery from archives.



=== 2. Create a directory for the Database Environment ===

(referred to as $DB_HOME going forward. Reasonable default is /home/emen2/db/ )

{{{
mkdir /home/emen2/db
cp config/config.sample.yml /home/emen2/db/config.yml
}}}

Recommended: Set the $DB_HOME environment variable to this path for convenience. Place this in your .bash_profile or similar.
It is strongly recommended to set the DB_HOME environment variable to this path for convenience. You will also need to add the parent of the EMEN2 source directory to your PYTHONPATH environment variable. Adjust the paths below, and place in your .bash_profile:
Line 34: Line 32:
export PYTHONPATH=$PYTHONPATH:/home/emen2/src
}}}

Create the DB_HOME directory and copy the default configuration file.

{{{
mkdir $DB_HOME
cp config/config.sample.yml $DB_HOME/config.yml
Line 37: Line 43:
= Edit Configuration =
Line 38: Line 45:
=== 3. Copy emen2/config.sample.yml to $DB_HOME/config.yml ===

Edit the various settings in config.yml
. See [[EMEN2/config.yml]]. Primarily, you will want to check the path and network settings. A simple configuration will have most EMEN2 directories (db, applog, archive, db_hotbackup, emen2files, etc.) placed under the path specified by the "&root" element, which is /home/emen2/ by default.
Edit the various settings in $DB_HOME/config.yml. See [[EMEN2/config.yml]]. Primarily, you will want to check the path and network settings. A simple configuration will have most EMEN2 directories (db, applog, archive, db_hotbackup, emen2files, etc.) placed under the path specified by the "&root" element, which is /home/emen2/ by default.
Line 49: Line 54:
=== 4. After config.yml is to your liking, run === = Initialize EMEN2 Environment =

After config.yml is to your liking, run
Line 55: Line 62:
The rest of the $DB_HOME environment will be created, skeleton parameter/protocol definitions will be installed, and a root user created. You will be prompted on the shell for a root password. The rest of the EMEN2 environment will be created, skeleton parameter/protocol definitions will be installed, and a root user created. You will be prompted on the shell for a root password.
Line 59: Line 66:
=== 5. Test web server === = Test Web Server =
Line 62: Line 69:
python ./TwistSupport.py python ./TwistServer.py
Line 69: Line 76:
=== 6. Optional: Import Parameter/Protocol definitions from the NCMI Database. === = Optional: Import =

You may want to import the parameter and protocol definitions from the EMEN2 installation at the NCMI. In the future, these will be published in an open format, and made available by default.
Line 72: Line 81:
python ./clients/clone.py -- --defs python ./clients/clone.py -- --defs --host http://ncmidb.bcm.edu
Line 79: Line 88:
=== 7. Run as daemon === = Optional: Accelerator Module =

EMEN2 includes a C module that increases index read speed by using some features of the Berkeley DB interface that are not exposed by the bsddb3 module. See [[EMEN2/bulk.so]] for information on how to build this module. This module is not required, and can be enabled/disabled at any time.

= Run as daemon =

Installing and configuring EMEN2

Generally, you will want to create a user account for running emen2, e.g. 'emen2.' This has the benefit of working well with the default config file. Running as any other user also works fine, you will just have to change one or two paths in config.yml.

Install Dependencies

You will first need to install the various EMEN2 dependencies. They are all straight-forward to install, and can generally be installed using Python's easy_install system.

Download EMEN2

Download the latest EMEN2 source code release and untar

http://ncmi.bcm.edu/ncmi/software/software_details?selected_software=EMEN2

If there is an existing source tree installed, you may want to rename it in case you need to revert to the previous version, e.g. mv emen2 emen2.old.03.20.2010.

If you have an existing EMEN2 environment, I strongly recommend taking an additional tar backup of that directory before proceeding, in addition to normal backup procedures (log archive, db hot backup) in case you need to revert without the difficulty of performing a full recovery from archives.

Create EMEN2 Environment

The instructions below assume you are setting EMEN2 up in a separate user account called 'emen2', with a default home directory '/home/emen2', and the emen2 source code in '/home/emen2/src/emen2'

You will need to create a directory for your EMEN2 environment. A reasonable default is /home/emen2/db.

It is strongly recommended to set the DB_HOME environment variable to this path for convenience. You will also need to add the parent of the EMEN2 source directory to your PYTHONPATH environment variable. Adjust the paths below, and place in your .bash_profile:

export DB_HOME=/home/emen2/db
export PYTHONPATH=$PYTHONPATH:/home/emen2/src

Create the DB_HOME directory and copy the default configuration file.

mkdir $DB_HOME
cp config/config.sample.yml $DB_HOME/config.yml

Edit Configuration

Edit the various settings in $DB_HOME/config.yml. See EMEN2/config.yml. Primarily, you will want to check the path and network settings. A simple configuration will have most EMEN2 directories (db, applog, archive, db_hotbackup, emen2files, etc.) placed under the path specified by the "&root" element, which is /home/emen2/ by default.

  root: &root
    /home/emen2/

Initialize EMEN2 Environment

After config.yml is to your liking, run

python ./setup.py

The rest of the EMEN2 environment will be created, skeleton parameter/protocol definitions will be installed, and a root user created. You will be prompted on the shell for a root password.

Test Web Server

python ./TwistServer.py

You should be able to connect to this web server instance once it is "listening..." The default port is 8080. You may login with the root password you specified previously.

Optional: Import

You may want to import the parameter and protocol definitions from the EMEN2 installation at the NCMI. In the future, these will be published in an open format, and made available by default.

python ./clients/clone.py -- --defs --host http://ncmidb.bcm.edu

Note: the first "--" is intentional and required at the moment. Command arguments for the local database go before "--", arguments to the cloning script go after ("--defs")

You will be prompted for two sets of credentials. First, an NCMI DB account, and second, the root password for the local database. If you do not have an NCMI DB account, you may specify "anonymous" as the username, and your email address as the password.

Optional: Accelerator Module

EMEN2 includes a C module that increases index read speed by using some features of the Berkeley DB interface that are not exposed by the bsddb3 module. See EMEN2/bulk.so for information on how to build this module. This module is not required, and can be enabled/disabled at any time.

Run as daemon

After you are satisfied with your setup, you can run EMEN2 in the background

python ./emen2control.py --start

EMEN2/Install (last edited 2013-06-27 06:59:34 by IanRees)