1. Preamble: referenced user accounts
In subsequent sections, we will refer to a number of different accounts, as follows:
-
Linux user accounts:
-
The user Linux account is the account that you use to log onto the Linux system as a regular user.
-
The root Linux account is an account that has system administrator privileges. On Debian and Fedora you can switch to this account from your user account by issuing the
su -command and entering the password for the root account when prompted. On Ubuntu you can switch to this account from your user account using thesudo su -command and entering the password for your user account when prompted. -
The opensrf Linux account is an account that you will create as part of installing OpenSRF. You can switch to this account from the root account by issuing the
su - opensrfcommand.
-
2. Installing prerequisites
OpenSRF has a number of prerequisite packages that must be installed before you can successfully configure, compile, and install OpenSRF. On Debian and Ubuntu, the easiest way to install these prerequisites is to use the Makefile.install prerequisite installer.
Issue the following commands as the root user to install prerequisites using the Makefile.install prerequisite installer, substituting your operating system identifier for <osname> below:
apt-get install make
make -f src/extras/Makefile.install <osname>
Well-tested values for <osname> include:
-
debian-squeezefor Debian 6.0 -
ubuntu-lucidfor Ubuntu 10.04 -
ubuntu-precisefor Ubuntu 12.04 -
fedorafor Fedora 17 and later
Patches and suggestions for improvement from users of these distributions, or others, are welcome!
When the prerequisite installer reaches the Perl module stage, you may be prompted for configuration of Comprehensive Perl Archive Network (CPAN) on your server. You can generally accept the defaults by pressing <return> for all of the prompts, except for the country configuration.
3. Preamble: Developer instructions
|
Note
|
Skip this section if you are using an official release tarball downloaded from http://evergreen-ils.org/downloads |
Developers working directly with the source code from the Git repository,
rather than an official release tarball, must install some extra packages
and perform one step before they can proceed with the ./configure step.
As the root Linux account, install the following packages:
-
autoconf
-
automake
-
libtool
As the user Linux account, issue the following command in the OpenSRF source directory to generate the configure script and Makefiles:
autoreconf -i
4. Configuration and compilation instructions
Use the configure command to configure OpenSRF, and the make command to
build OpenSRF. The default installation prefix (PREFIX) for OpenSRF is
/opensrf/.
If you are building OpenSRF for Evergreen, issue the following commands as the user Linux account to configure and build OpenSRF:
./configure --prefix=/openils --sysconfdir=/openils/conf
make
By default, OpenSRF includes C, Perl, and JavaScript support.
You can add the --enable-python option to the configure command
to build Python support and --enable-java for Java support.
5. Installation instructions
-
Once you have configured and compiled OpenSRF, issue the following command as the root Linux account to install OpenSRF:
make install
6. Create and set up the opensrf Unix user environment
This user is used to start and stop all OpenSRF processes, and must own all
files contained in the PREFIX directory hierarchy. Issue the following
commands as the root Linux account to create the opensrf user and set up
its environment, substituting <PREFIX> with the value you passed to --prefix
in your configure command:
opensrf useruseradd -m -s /bin/bash opensrf echo "export PATH=\$PATH:/<PREFIX>/bin" >> /home/opensrf/.bashrc passwd opensrf chown -R opensrf:opensrf /<PREFIX>
7. Define your public and private OpenSRF domains
For security purposes, OpenSRF uses Jabber domains to separate services
into public and private realms. Throughout these instructions, we will use
the example domains public.localhost and private.localhost.
On a single-server system, the easiest way to define public and private
domains is to define separate hostnames by adding entries to the /etc/hosts
file. Here are entries that you could add to a stock /etc/hosts file for our
example domains:
/etc/hosts127.0.1.2 public.localhost public
127.0.1.3 private.localhost private
8. Adjust the system dynamic library path
Add <PREFIX>/lib/ to the system’s dynamic library path, and then run
ldconfig as the root Linux account.
On Debian, Ubuntu, and Fedora systems, run the following commands as the root Linux account:
echo <PREFIX>/lib > /etc/ld.so.conf.d/opensrf.conf ldconfig
On most other systems, you can add these entries to /etc/ld.so.conf, or
create a file within the /etc/ld.so.conf.d/ directory, and then run
ldconfig as the root Linux account.
9. Configure the ejabberd server
OpenSRF requires an XMPP (Jabber) server. For performance reasons, ejabberd is
the Jabber server of choice for the OpenSRF project. In most cases, you only
have to make a few changes to the default ejabberd.cfg file to make ejabberd
work for OpenSRF.
-
Stop ejabberd before making any changes to its configuration by issuing the following command as the root Linux account:
(Debian / Ubuntu) Stopping ejabberd/etc/init.d/ejabberd stop(Fedora) Stopping ejabberdsystemctl stop ejabberd.service -
Open
/etc/ejabberd/ejabberd.cfgand make the following changes:-
Define your public and private domains in the
hostsdirective. For example:{hosts, ["localhost", "private.localhost", "public.localhost"]}. -
Comment out the
mod_offlinedirective -
Increase the
max_user_sessionsvalue to 10000 -
Change all
max_stanza_sizevalues to 2000000 -
Change all
maxratevalues to 500000
-
-
Restart the ejabberd server to make the changes take effect:
(Debian / Ubuntu) Starting ejabberd/etc/init.d/ejabberd start(Fedora) Starting ejabberdsystemctl start ejabberd.service
10. Create the OpenSRF Jabber users
On each domain, you need two Jabber users to manage the OpenSRF communications:
-
a
routeruser, to whom all requests to connect to an OpenSRF service will be routed; this Jabber user must be namedrouter -
an
opensrfuser, which clients use to connect to OpenSRF services; this user can be named anything you like
Create the Jabber users by issuing the following commands as the root Linux
account. Substitute <password> for your chosen passwords for each user
respectively:
ejabberdctl register router private.localhost <password> ejabberdctl register opensrf private.localhost <password> ejabberdctl register router public.localhost <password> ejabberdctl register opensrf public.localhost <password>
11. Update the OpenSRF configuration files
11.1. About the OpenSRF configuration files
There are several configuration files that you must update to make OpenSRF
work. SYSCONFDIR is /opensrf/etc by default, or the value that you passed to
--sysconfdir during the configuration phase.
-
SYSCONFDIR/opensrf.xml- this file lists the services that this OpenSRF installation supports; if you create a new OpenSRF service, you need to add it to this file.-
The
<hosts>element at the bottom of the file lists the services that should be started for each hostname. You can force the system to uselocalhost, so in most cases you will leave this section as-is.
-
-
SYSCONFDIR/opensrf_core.xml- this file lists the Jabber connection information that will be used for the system, as well as determining logging verbosity and defining which services will be exposed on the HTTP gateway. -
~/.srfsh.xml- this file gives a Linux account the ability to use thesrfshinterpreter to communicate with OpenSRF services.
11.2. Updating the OpenSRF configuration files
-
As the opensrf Linux account, copy the example configuration files to create your locally customizable OpenSRF configuration files:
Copying the example OpenSRF configuration filescd SYSCONFDIR cp opensrf_core.xml.example opensrf_core.xml cp opensrf.xml.example opensrf.xml
-
Edit the
SYSCONFDIR/opensrf_core.xmlfile to update the four username / password pairs to match the Jabber user accounts you just created:-
<config><opensrf>= use the private Jabberopensrfuser -
<config><gateway>= use the public Jabberopensrfuser -
<config><routers><router>= use the public Jabberrouteruser -
<config><routers><router>= use the private Jabberrouteruser
-
-
Create a
.srfsh.xmlfile in the home directory of each user that you want to usesrfshto communicate with OpenSRF services. For example, to enable the opensrf Linux account to usesrfsh:-
cp SYSCONFDIR/srfsh.xml.example ~/.srfsh.xml -
Open
~/.srfsh.xmlin your text editor of choice and update the password to match the password you set for the Jabberopensrfuser at theprivate.localhostdomain.
-
12. Starting and stopping OpenSRF services
To start all OpenSRF services with a hostname of localhost, issue the
following command as the opensrf Linux account:
osrf_ctl.sh -l -a start_allTo stop all OpenSRF services with a hostname of localhost, issue the
following command as the opensrf Linux account:
osrf_ctl.sh -l -a stop_all13. Testing the default OpenSRF services
By default, OpenSRF ships with an opensrf.math service that performs basic
calculations involving two integers. Once you have started the OpenSRF
services, test the services as follows:
-
Start the
srfshinteractive OpenSRF shell by issuing the following command as the opensrf Linux account:Starting thesrfshinteractive OpenSRF shellsrfsh
-
Issue the following request to test the
opensrf.mathservice:srfsh# request opensrf.math add 2,2You should receive the value
4.
14. Troubleshooting note for Python users
If you are running a Python client and trying to connect to OpenSRF running on
localhost rather than a hostname that can be resolved via DNS, you will
probably receive exceptions about dns.resolver.NXDOMAIN. If this happens,
you need to install the dnsmasq package, configure it to serve up a DNS
entry for localhost, and point your local DNS resolver to dnsmasq. For example,
on Ubuntu you can issue the following commands as the root Linux account:
dnsmasqaptitude install dnsmasq
/etc/init.d/dnsmasq restartThen edit /etc/resolv.conf and ensure that nameserver 127.0.0.1 is the
first entry in the file.
15. Getting help
Need help installing or using OpenSRF? Join the mailing lists at http://evergreen-ils.org/listserv.php or contact us on the Freenode IRC network on the #evergreen channel.