]> git.evergreen-ils.org Git - working/Evergreen.git/blob - 1.6/admin/AdminMisc.xml
a5b4448426a6ab598f479dfc5daa2296150780ca
[working/Evergreen.git] / 1.6 / admin / AdminMisc.xml
1 <?xml version='1.0' encoding='UTF-8'?>\r
2 <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude"\r
3             xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:id="adminmisc">\r
4         <info>\r
5                 \r
6         <title>Server Operations and Maintenance</title>\r
7         <indexterm><primary>receipt template editor</primary></indexterm>\r
8                 <abstract>\r
9                         <para>This chapter deals with basic server operations such as starting and stopping <application>Evergreen</application> as well wall \r
10                         security, backing up and troubleshooting <application>Evergreen</application>.</para>\r
11                 </abstract>\r
12         </info>    \r
13         <section xml:id="startingopensrf">\r
14                 <title>Starting, Stopping and Restarting</title>\r
15                 <para>Occasionally, you may need to restart <application>Evergreen</application>. It is imperative that you understand the basic \r
16                 commands to stop and start the <application>Evergreen</application> server. You can start and stop <application>Evergreen</application> from the command line of \r
17                 the server using the <command>osrf_ctl.sh</command> script located in the \r
18                 <filename class="directory">openils/bin</filename> directory.</para>   \r
19                 <note><para><command>The osrf_ctl.sh</command> command must be run as the <systemitem class="username">opensrf</systemitem> user.</para></note>\r
20                 <para>To view help on <command>osrf_ctl.sh</command> and get all of its options, run:</para>\r
21                 <screen><userinput>osrf_ctl.sh -h</userinput></screen>\r
22                 <para>To start Evergreen, run:</para>\r
23                 <screen><userinput>osrf_ctl.sh -l -a start_all</userinput></screen>\r
24                 <para>The <option>-l</option> flag is used to indicate that Evergreen is configured to use <systemitem class="domainname">localhost</systemitem> as \r
25                 the host. If you have configured <filename>opensrf.xml</filename> to use your real hostname, do not use the <option>-l</option> flag. The <option>-a</option> \r
26                 option is required and indicates the <emphasis>action</emphasis> of the command. In this case \r
27                 <option>start_all</option>.    \r
28                 </para> \r
29                 <note>\r
30                         <para>If you receive the error message: <errortext>osrf_ctl.sh: command not found</errortext>, then your environment variable \r
31                         <varname>PATH</varname><indexterm><primary>environment variable</primary><secondary>PATH</secondary></indexterm> does not include the \r
32                         <filename class="directory">/openils/bin</filename> directory. You can set it using the following command:</para>\r
33                         <screen><userinput>export <varname>PATH</varname>=$PATH:<filename class="directory">/openils/bin</filename></userinput></screen>\r
34                         <para>If you receive the error message <errortext>Can't locate OpenSRF/System.pm in @INC â€¦ BEGIN \r
35                         failed–compilation aborted</errortext>, then your environment variable <varname>PERL5LIB</varname><indexterm><primary>environment \r
36                         variable</primary><secondary>PERL5LIB</secondary></indexterm> does not \r
37                         include the <filename class="directory">/openils/lib/perl5</filename> directory.  You can set it \r
38                         using the following command:</para>\r
39                         <screen><userinput>export <varname>PERL5LIB</varname>=$PERL5LIB:<filename class="directory">/openils/lib/perl5</filename></userinput></screen>\r
40                 </note>         \r
41                 <para>It is also possible to start a specific service. For example:</para>\r
42                 <screen><userinput>osrf_ctl.sh -l -a start_router</userinput></screen>\r
43                 <para>will only start the <systemitem class="service">router</systemitem> service.</para>\r
44                 <caution>\r
45                         <para>If you decide to start each service individually, you need to start them in a specific order \r
46                         for Evergreen to start correctly. Run the commands in this exact order:</para>\r
47 <screen><userinput>osrf_ctl.sh -l -a start_router</userinput></screen>\r
48 <screen><userinput>osrf_ctl.sh -l -a start_perl</userinput></screen>\r
49 <screen><userinput>osrf_ctl.sh -l -a start_c</userinput></screen>\r
50                 </caution>      \r
51                 <para>After starting or restarting Evergreen, it is also necessary to restart the <systemitem class="service">Apache web server</systemitem>\r
52                 <indexterm><primary>web server</primary><secondary>Apache</secondary></indexterm> for the OPAC to work correctly.</para>  \r
53                 <para>To stop <application>Evergreen</application>, run:</para>\r
54                 <screen><userinput>osrf_ctl.sh -l -a stop_all</userinput></screen>\r
55                 <para>As with starting, you can choose to stop services individually.</para>\r
56                 <para>To restart <application>Evergreen</application>, run:</para>\r
57                 <screen><userinput>osrf_ctl.sh -l -a restart_all</userinput></screen>\r
58                 <simplesect>\r
59                         <title>Starting Specific Perl Services</title>\r
60                         <para>It is also possible to start and stop a specific perl service using <filename>opensrf-perl.pl</filename>.  Here is the syntax for starting a perl service with this command:</para>\r
61 <screen><userinput>opensrf-perl.pl --service <systemitem class="service">&lt;service-name&gt;</systemitem> -a start -p <filename class="directory">&lt;PID-directory&gt;</filename> </userinput></screen>\r
62 <para>Example (starting the booking module):</para>\r
63 <screen><userinput>opensrf-perl.pl --service <systemitem class="service">open-ils.booking</systemitem> -a start -p <filename class="directory">/openils/var/run/opensrf</filename></userinput></screen>\r
64 \r
65 <para>This is the syntax for stopping a perl service with this command:</para>\r
66 <screen><userinput>opensrf-perl.pl --service <systemitem class="service">&lt;service-name&gt;</systemitem> -a stop -p <filename class="directory">&lt;PID-directory&gt;</filename> </userinput></screen>\r
67 <para>Example (stopping the booking module):</para>\r
68 <screen><userinput>opensrf-perl.pl --service <systemitem class="service">open-ils.booking</systemitem> -a stop -p <filename class="directory">/openils/var/run/opensrf</filename></userinput></screen>\r
69                         <para>These commands can be very useful when you edit Perl modules and only need to restart the specific service for changes to take effect.</para>\r
70                         \r
71                         <note>\r
72                         <para>The default for the PID-directory: <filename class="directory">/openils/var/run/opensrf</filename></para>\r
73                         <para>For a clustered server instance of Evergreen, you must store the PIDs on a directory \r
74                         that is local to each server, or else one of your cluster servers may try killing processes on itself that actually have PIDs on other servers.</para>\r
75                         <para>For services running on the local server use the <option>--localhost</option> to force the hostname to be <systemitem class="domainname">localhost</systemitem>, \r
76                         instead of the fully qualified domain name for the machine.</para>\r
77                         <para>To see other options run the command with the <option>-h</option> option:</para>\r
78 <screen><userinput>opensrf-perl.pl  -h</userinput></screen>\r
79                         </note>\r
80 <para>For a list of Evergreen/OpenSRF perl services see: <xref linkend="_evergreen_specific_opensrf_services"/>.</para>\r
81                 </simplesect>\r
82         </section>\r
83         <section xml:id="evergreen_startup_script">\r
84                 <title>Automating Evergreen Startup and Shutdown</title>\r
85                 <para>Once you understand starting and stopping Evergreen, you will want to create a start up script for two purposes:</para>\r
86                 <itemizedlist>\r
87                         <listitem>Allow you to start, restart and stop Evergreen, SIP, reporter and z39.50 services with one command.</listitem>\r
88                         <listitem>Allow Evergreen to stop and start properly during a system restart.</listitem>\r
89                 </itemizedlist>\r
90                 <para>The following procedure is for Debian or Ubuntu distributions of Linux.</para>\r
91                 <procedure>\r
92                         <step>\r
93                                 <para>Create a bash script for starting Evergreen and all associated services. Here is an example script:</para>  \r
94 \r
95 <programlisting>\r
96 <![CDATA[\r
97 \r
98 \r
99 #!/bin/bash\r
100 \r
101 OPENILS_BASE="/openils"\r
102 OPENILS_CORE="${OPENILS_BASE}/conf/opensrf_core.xml"\r
103 SRU_LOG="${OPENILS_BASE}/var/log/sru.log"\r
104 \r
105 SIP_PID="${OPENILS_BASE}/var/run"\r
106 SIP_CONF="${OPENILS_BASE}/conf/oils_sip.xml"\r
107 \r
108 REP_LOCK="${OPENILS_BASE}/var/lock/reporter-LOCK"\r
109 REP_NAME="Clark Kent, waiting for trouble"\r
110 \r
111 sru_name='simple2zoom'\r
112 \r
113 if [ $(whoami) != 'opensrf' ]; then\r
114  PERL5LIB='/openils/lib/perl5:$PERL5LIB';\r
115 fi;\r
116 \r
117 start() {\r
118         sleep 3\r
119         echo "Starting Evergreen"\r
120         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin osrf_ctl.sh -l -a start_all"\r
121 }\r
122 \r
123 stop() {\r
124         echo "Stopping Evergreen"\r
125         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin osrf_ctl.sh -l -a stop_all"\r
126 }\r
127 \r
128 autogen() {\r
129         echo "Running Autogen Update"\r
130         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin autogen.sh -u -c ${OPENILS_CORE}"\r
131 }\r
132 \r
133 sip_start() {\r
134         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin oils_ctl.sh \\r
135                                                                                                                      -d ${SIP_PID} \\r
136                                                                                                                      -s ${SIP_CONF} \\r
137                                                                                                                      -a start_sip"\r
138 }\r
139 \r
140 sip_stop() {\r
141         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin oils_ctl.sh \\r
142                                                                                                                      -d ${SIP_PID} \\r
143                                                                                                                      -s ${SIP_CONF} \\r
144                                                                                                                      -a stop_sip"\r
145 }\r
146 \r
147 sip_restart() {\r
148         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin oils_ctl.sh \\r
149                                                                                                                      -d ${SIP_PID} \\r
150                                                                                                                      -s ${SIP_CONF} \\r
151                                                                                                                      -a restart_sip"\r
152 }\r
153 \r
154 start_rep() {\r
155         pids="$(pidof "$REP_NAME")"\r
156         if [ ! x"$pids" = x ] ; then\r
157           echo FAILURE ; echo $"Starting Reporting: already running as $pids" \r
158           return 1\r
159         fi\r
160         rm -f $REP_LOCK\r
161         sudo -u opensrf bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin clark-kent.pl \\r
162                                                            --lockfile=${REP_LOCK} --boostrap=${OPENILS_CORE} --concurrency=1 --sleep=30 --daemon" ;\r
163         pids="$(pidof "$REP_NAME")"\r
164         if [ x"$pids" = x ] ; then\r
165           echo FAILURE \r
166         else \r
167           echo OK\r
168         fi\r
169         echo "Starting Reporting: $pids" \r
170         return $RETVAL\r
171 }\r
172 \r
173 stop_rep() {\r
174         pids="$(pidof "$REP_NAME")"\r
175         if [ x"$pids" = x ] ; then\r
176           echo FAILURE ; echo $"Stopping Reporting: not running" ; RETVAL=1\r
177         else \r
178           kill $pids ; RETVAL=$?\r
179           if [ $RETVAL ] ; then\r
180             echo OK ; echo $"Stopping Reporting: $pids"\r
181           else\r
182             echo FAILURE \r
183           fi\r
184         fi\r
185         rm -f $REP_LOCK\r
186         return $RETVAL\r
187 }\r
188 \r
189 z39_50_start() {\r
190         pids=`ps -eo pid,args | grep $sru_name | grep -v grep | cut -c1-6`\r
191         if [ ! x"$pids" = x ] ; then\r
192           echo FAILURE ; echo $"Starting Z39.50/SRU: already running as $pids" \r
193           return 1\r
194         fi\r
195         sudo -u opensrf bash -c "touch ${SRU_LOG}"\r
196         sudo bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin z39_50.sh >> ${SRU_LOG} 2>&1" &\r
197         sleep 1\r
198         pids=`ps -eo pid,args | grep $sru_name | grep -v grep | cut -c1-6`\r
199         if [ x"$pids" = x ] ; then\r
200           echo FAILURE \r
201         else \r
202           echo OK\r
203         fi\r
204         echo "Starting Z39.50/SRU: $pids" \r
205         return $RETVAL\r
206 }\r
207 \r
208 z39_50_stop() {\r
209         pids=`ps -eo pid,args | grep $sru_name | grep -v grep | cut -c1-6`\r
210         if [ x"$pids" = x ] ; then\r
211           echo FAILURE ; echo $"Stopping Z39.50/SRU: not running" ; RETVAL=1\r
212         else \r
213           kill $pids ; RETVAL=$?\r
214           if [ $RETVAL ] ; then\r
215             echo OK ; echo $"Stopping Z39.50/SRU: $pids"\r
216           else\r
217             echo FAILURE \r
218           fi\r
219         fi\r
220         return $RETVAL\r
221 }\r
222 \r
223 case "$1" in\r
224     start)\r
225         start\r
226         start_rep\r
227         z39_50_start\r
228         sip_start\r
229     ;;\r
230     stop)\r
231         sip_stop\r
232         z39_50_stop\r
233         stop_rep\r
234         stop\r
235     ;;\r
236     restart)\r
237         echo "Restarting Evergreen, Reporter and Z39.50 Processes"\r
238         sip_stop\r
239         z39_50_stop\r
240         stop_rep\r
241         stop\r
242         start\r
243         start_rep\r
244         z39_50_start\r
245         sip_start\r
246     ;;\r
247     autogen)\r
248         autogen\r
249     ;;\r
250     sip_start)\r
251         sip_start\r
252     ;;\r
253     sip_stop)\r
254         sip_stop\r
255     ;;\r
256     sip_restart)\r
257         sip_restart\r
258     ;;\r
259     start_reporter)\r
260         start_rep\r
261     ;;\r
262     stop_reporter)\r
263         stop_rep\r
264     ;;\r
265     restart_reporter)\r
266         stop_rep\r
267         start_rep\r
268     ;;\r
269     z39_50_start)\r
270         z39_50_start\r
271     ;;\r
272     z39_50_stop)\r
273         z39_50_stop\r
274     ;;\r
275     z39_50_restart)\r
276         z39_50_stop\r
277         z39_50_start\r
278     ;;\r
279     start_router|stop_router|restart_router|start_perl|stop_perl|restart_perl| \\r
280     start_c|stop_c|restart_c|start_osrf|stop_osrf|restart_osrf|stop_all|start_all|restart_all)\r
281         sudo -u opensrf /bin/bash -c "PERL5LIB=${PERL5LIB}:${OPENILS_BASE}/lib/perl5 PATH=${PATH}:${OPENILS_BASE}/bin osrf_ctl.sh -l -a $1"\r
282     ;;\r
283     *)\r
284         echo " * Usage: /etc/init.d/evergreen {start|stop|restart|autogen"\r
285         echo "                                 |sip_start|sip_stop|sip_restart"\r
286         echo "                                 |z39_50_start|z39_50_stop|z39_50_restart"\r
287         echo "                                 |start_reporter|stop_reporter|restart_reporter"\r
288         echo "                                 |start_router|stop_router|restart_router|start_perl|stop_perl|restart_perl"\r
289         echo "                                 |start_c|stop_c|restart_c|start_osrf|stop_osrf|restart_osrf|stop_all|start_all|restart_all}"\r
290         exit 1\r
291     ;;\r
292 esac;\r
293 ]]>\r
294 </programlisting>\r
295                         </step>\r
296                         <step>\r
297                                 <para>Save file in <filename class="directory">/etc/bin</filename> folder as <filename>evergreenstart</filename> if you would like this as a manual script for starting Evergreen services.</para> \r
298                                 \r
299                                 <para>Save file in <filename class="directory">/etc/init.d</filename> folder as <filename>evergreenstart</filename> if you would like to run this script automatically \r
300                                 during your server's boot process as explained in later steps.</para> \r
301                         </step>\r
302                         <step>\r
303                         <para>Ensure that the script is executable.</para>\r
304 <screen><userinput>sudo chmod 755 evergreenstart </userinput></screen>\r
305                         </step> \r
306                         <step>\r
307                                 <para>Test the script by running it from the command line as the <systemitem class="username">root</systemitem> user.</para>\r
308 <screen><userinput>/etc/init.d/evergreenstart restart</userinput></screen>\r
309                                 <para>You will also need to restart apache as the <systemitem class="username">root</systemitem> user.</para>\r
310 <screen><userinput>/etc/init.d/apache2 restart</userinput></screen>\r
311                         </step> \r
312                         <step>\r
313                         <note><para>The next steps are optional if you want to automate Evergreen so it starts during your server's boot process.</para></note>\r
314                         <para>Update runlevel defaults of the new evergreenstart service as the <systemitem class="username">root</systemitem>  user:</para>\r
315 <screen><userinput>update-rc.d evergreenstart defaults 80 20</userinput></screen>\r
316 <note><para>For Evergreen to start properly during a reboot, you will want to ensure that the first number <option>80</option> is lower than the assigned starting priority for Apache so it starts before Apache.  It should also a higher stopping priority <option>20</option> than Apache so it stops after Apache at shutdown.</para></note>\r
317                         </step> \r
318                         <step>\r
319                         <para>Test the startup script by rebooting the Evergreen Server and checking to ensure that all Evergreen sercices started properly.</para>\r
320                         </step> \r
321                 </procedure>\r
322                 <caution><para>This has not yet been tested in a Evergreen multi-server, <quote>brick</quote> configuration.</para></caution> \r
323                 <para>For more information on update-rc.d you should review the documentation on this topic for <link xl:href="http://www.debuntu.org/how-to-manage-services-with-update-rc.d">\r
324                 Debian</link> or <link xl:href="http://manpages.ubuntu.com/manpages/hardy/man8/update-rc.d.8.html">Ubuntu</link> depending on your distribution of Linux.</para>        \r
325         </section>\r
326         <section xml:id="backingup">\r
327                 <title>Backing Up</title>\r
328                 <indexterm><primary>databases</primary><secondary>backing up</secondary></indexterm>\r
329         \r
330                 <para>Backing up your system files and data is a critical task for server and database administrators. \r
331                 Having a strategy for backing up and recovery could be the difference between a minor annoyance for users and\r
332                 a complete catastrophe.</para>   \r
333                 <simplesect>\r
334                         <title>Backing up the <application>Evergreen</application> Database</title><indexterm><primary>databases</primary></indexterm>\r
335                         <para>Most of the critical data for an <application>Evergreen</application> system â€“ patrons, bibliographic records, holdings, \r
336                         transactions, bills â€“ is stored in the <application>PostgreSQL</application><indexterm><primary>databases</primary>\r
337                         <secondary>PostgreSQL</secondary></indexterm>  database. You can therefore use normal \r
338                         <application>PostgreSQL</application> backup procedures to backup this data. For example, the simplest method of backing up the Evergreen\r
339                         database is to use the <command>pg_dump</command> command to create a live backup of the database without having to \r
340                         interrupt any Evergreen services. Here is an example pg_dump command which will dump a local Evergreen database into a the file <filename>evergreen_db.backup</filename>:</para>\r
341                         <screen><userinput>pg_dump -U evergreen -h localhost -f evergreen_db.backup evergreen</userinput></screen>\r
342                         <para>To restore the backed up database into a new database, create a new database using the \r
343                         template0 database template and the UTF8 encoding, and run the <command>psql</command> command, specifying the new \r
344                         database as your target:</para>\r
345                         <screen><userinput>createdb -T template0 -E UTF8 -U evergreen -h localhost new_evergreen</userinput></screen>\r
346                         <screen><userinput>psql -U evergreen -h localhost -f evergreen_db.backup new_evergreen</userinput></screen>\r
347                         <note>\r
348                                 <para>This method of backup is only suitable for small Evergreen instances. Larger sites \r
349                                 should consider implementing continuous archiving (also known as <quote>log shipping</quote>) to provide \r
350                                 more granular backups with lower system overhead. More information on backing up <application>PostgreSQL</application> \r
351                                 databases can be found in the official <link xl:href="http://www.postgresql.org/docs/"><application>PostgreSQL</application> documentation</link>.</para>\r
352                         </note>\r
353                 </simplesect>\r
354                 <simplesect>\r
355                         <title>Backing up Evergreen Files</title>\r
356                         <indexterm><primary>directories</primary><secondary>backing up</secondary></indexterm>\r
357                         <para>When you deploy Evergreen, you will probably customize many aspects of your system including \r
358                         the system configuration files, <application>Apache</application> configuration files, OPAC and Staff Client. In order to \r
359                         protect your investment of time, you should carefully consider the best approach to backing up \r
360                         files.</para>\r
361                         <para>There are a number of ways of tackling this problem. You could create a script that regularly \r
362                         creates a time-stamped tarball of all of these files and copies it to a remote server - but that \r
363                         would build up over time to hundreds of files. You could use <link xl:href="http://www.samba.org/rsync/"><application>rsync</application></link>\r
364                         <indexterm><primary>rsync</primary></indexterm> to ensure that the files of \r
365                         interest are regularly updated on a remote server - but then you would lose track of the changes to \r
366                         the files, should you make a change that introduces a problem down the road.</para>\r
367                         <para>Perhaps one of the best options is to use a version control system like <link xl:href="http://bazaar.canonical.com">\r
368                         <application>Bazaar</application></link><indexterm><primary>Version Control System</primary><secondary>Subversion</secondary></indexterm>, \r
369                         <link xl:href="http://git-scm.com/"><application>git</application></link><indexterm><primary>Version Control System</primary><secondary>git</secondary></indexterm> \r
370                         or <link xl:href="http://subversion.apache.org/"><application>Subversion</application></link><indexterm><primary>Version Control System</primary>\r
371                         <secondary>Subversion</secondary></indexterm> to regularly push updates of the files you care about to a repository on a \r
372                         remote server. This gives you the advantage of quickly being able to run through the history of the \r
373                         changes you made, with a commenting system that reminds you why each change was made, combined with \r
374                         remote storage of the pertinent files in case of disaster on site. In addition, your team can create \r
375                         local copies of the repository and test their own changes in isolation from the production \r
376                         system. Using a version control system also helps to recover system customizations after an \r
377                         upgrade.</para>\r
378                 </simplesect>\r
379                 <simplesect>\r
380                         <title>Full System Backup</title>\r
381                         <para>A full system backup archives every file on the file system. Some basic methods require you \r
382                         to shut down most system processes; other methods can use mirrored RAID<indexterm><primary>RAID</primary></indexterm> setups or \r
383                         SAN<indexterm><primary>SAN</primary></indexterm> storage to \r
384                         take <quote>snapshot</quote> backups of your full system while the system continues to run. The subject of how \r
385                         to implement full system backups is beyond the scope of this documentation.</para>\r
386                 </simplesect>\r
387         </section>\r
388         <section xml:id="security">\r
389                 <title>Security</title>\r
390                 <indexterm><primary>security</primary></indexterm>\r
391                 <para>As with an ILS and resource accessible from the world wide web careful consideration needs to be \r
392                 given to the security of your <application>Evergreen</application> servers and database. While it is impossible to cover all aspects \r
393                 of security, it is important to take several precautions when setting up production <application>Evergreen</application> site.</para>\r
394                 <orderedlist>\r
395                         <listitem>\r
396                                 <para>Change the Evergreen <systemitem class="username">admin</systemitem> password and keep it secure. The \r
397                                 default admin password is known by anyone who has installed <application>Evergreen</application>. It is not a secret \r
398                                 and needs to be changed by the Administrator. It should also only be shared by those who \r
399                                 need the highest level of access to your system.</para>\r
400                         </listitem>\r
401                         <listitem>\r
402                                 <para>Create strong passwords using a combination of numerical and alphabetical characters \r
403                                 for all of the Administrative passwords including the <systemitem class="username">postgres</systemitem> and \r
404                                 <systemitem class="username">opensrf</systemitem> users</para>     \r
405                         </listitem>\r
406                         <listitem>\r
407                                 <para>Open ports in the firewall<indexterm><primary>firewall</primary></indexterm> with caution - It is only necessary to open ports \r
408                                 <systemitem class="protocol">80</systemitem> and <systemitem class="protocol">443</systemitem>\r
409                                 for <systemitem class="protocol">TCP</systemitem> connections to the Evergreen server from the OPAC and the staff client.  It is critical for administrators to \r
410                                 understand the concepts of network security and take precautions to minimize vulnerabilities. \r
411                                 </para>\r
412                         </listitem>\r
413                         <listitem>\r
414                                 <para>Use permissions <indexterm><primary>permissions</primary></indexterm> and permission groups wisely - it is important to understand the \r
415                                 purpose of the permissions and to only give users the level of access that they require.\r
416                                 </para> \r
417                         </listitem>\r
418                                         </orderedlist>  \r
419         </section>\r
420         <section xml:id="logfiles">\r
421                 <title>Managing Log Files</title>\r
422                 <indexterm><primary>logs</primary><secondary>managing</secondary></indexterm>\r
423                 <para><application>Evergreen</application> comes with a sophisticated logging system, but it is important to manage the <application>OpenSRF</application> \r
424                 and <application>Evergreen</application> logs. This section will provide a couple of log management techniques and tools.</para>        \r
425                 <simplesect>\r
426                         <title>Using the <systemitem class="service">logrotate</systemitem> Utility to Manage Log Size</title> \r
427                         <indexterm><primary>logs</primary><secondary>Log Rotate</secondary></indexterm>\r
428                          <para>Fortunately, this is not a new problem for <systemitem class="osname">Unix</systemitem> administrators, and there are a number of ways of keeping your logs under control. \r
429                         On <systemitem class="osname">Debian</systemitem> and <systemitem class="osname">Ubuntu</systemitem>, for example, \r
430                         the <systemitem class="service">logrotate</systemitem> utility controls when old log files are compressed and a new log file is started. \r
431                         <systemitem class="service">logrotate</systemitem> runs once a day and checks all log files that it knows about to see if a \r
432                         threshold of time or size has been reached and rotates the log files if a threshold condition has been met.</para>\r
433                         <para>To teach <systemitem class="service">logrotate</systemitem> to rotate Evergreen logs on a weekly basis, or if they are > 50MB in size, \r
434                         create a new file <filename>/etc/logrotate.d/evergreen</filename> with the following contents: </para>\r
435 <programlisting>\r
436 compress\r
437 /openils/var/log/*.log {\r
438 # keep the last 4 archived log files along with the current log file\r
439  # log log.1.gz log.2.gz log.3.gz log.4.gz\r
440  # and delete the oldest log file (what would have been log.5.gz)\r
441 rotate 5\r
442 # if the log file is > 50MB in size, rotate it immediately\r
443 size 50M\r
444  # for those logs that don't grow fast, rotate them weekly anyway\r
445   weekly\r
446 }\r
447 </programlisting>\r
448                 </simplesect>\r
449                 <simplesect>\r
450                         <title>Changing Logging Level for <application>Evergreen</application></title>\r
451                         <indexterm><primary>logs</primary><secondary>logging levels</secondary></indexterm>\r
452                         <para>Change the Log Levels in your config files. Changing the level of logging will help \r
453                         narrow down errors.</para> \r
454                         <tip>\r
455                                 <para>A high logging level is not wise to do in a production environment since  it \r
456                                 will produce vastly larger log files and thus reduce server performance.</para>\r
457                         </tip>\r
458                         <para>Change logging levels by editing the configuration file \r
459                         <filename>/openils/conf/opensrf_core.xml</filename><indexterm><primary>configuration files</primary><secondary>opensrf_core.xml</secondary></indexterm></para>\r
460                         <para>you will want to search for lines containing &lt;loglevel&gt;.</para>\r
461                         <para> the default setting for loglevel is 3 which will log <emphasis>errors</emphasis>, \r
462                         <emphasis>warnings</emphasis> and <emphasis>information</emphasis>.</para>\r
463                         <para>The next level is 4 which is for debugging and provides additional information \r
464                         helpful for the debugging process.</para>\r
465                         <para>Thus, lines with:</para>\r
466                         <programlisting>&lt;loglevel&gt;3&lt;/loglevel&gt;</programlisting>\r
467                         <para>Should be changed to:</para>\r
468                         <programlisting>&lt;loglevel&gt;4&lt;/loglevel&gt;</programlisting>\r
469                         <para>to allow debugging level logging</para>\r
470                         <para>Other logging levels include <emphasis>0</emphasis> for no logging, \r
471                         <emphasis>1</emphasis> for logging errors and <emphasis>2</emphasis> for logging warnings \r
472                         and errors.</para>\r
473                 </simplesect>\r
474         </section>\r
475         <section xml:id="InstallingPostgreSQL">\r
476                 <title>Installing PostgreSQL from Source</title>\r
477                 <indexterm><primary>databases</primary><secondary>PostgreSQL</secondary></indexterm>\r
478                 <para>Some <systemitem class="osname">Linux</systemitem> distributions, such as <systemitem class="osname">Debian Etch (4.0)</systemitem>, do not offer PostgreSQL \r
479                 version 8.2 as an installable package. Before you continue, examine the software dependencies listed in <xref linkend="serversideinstall-software-dependencies"/> \r
480                 to ensure that your Linux distribution supports the required version of PostgreSQL.</para>\r
481 \r
482                 <note>\r
483                         <para>Some <systemitem class="osname">Linux</systemitem> distributions, such as <systemitem class="osname">Debian Etch (4.0)</systemitem>, do not offer PostgreSQL \r
484                 version 8.2 as an installable package. Before you continue, examine the software dependencies listed in <xref linkend="serversideinstall-software-dependencies"/> \r
485                 to ensure that your Linux distribution supports the required version of PostgreSQL.</para>\r
486                 </note>\r
487                 \r
488                 <procedure>\r
489                         <step>\r
490                                 <para>Install the application <application>stow</application> on your system if it is not already installed. Issue the following command as \r
491                                 the <systemitem class="username">root</systemitem> user:</para>\r
492 <screen>\r
493 <userinput>apt-get install stow</userinput>\r
494 </screen>\r
495                         </step>\r
496                         <step>\r
497                                 <para>Download, compile, and install the latest release for PostgreSQL 8.2 (which was version <literal>8.2.12</literal> at the time of this writing). \r
498                                 As the <systemitem class="username">root</systemitem> user, follow these steps:</para>\r
499                                 \r
500 <screen>\r
501 <userinput>\r
502 wget http://wwwmaster.postgresql.org/redir/198/h/source/v8.2.17/postgresql-8.2.17.tar.bz2\r
503 tar xzf postgresql-8.2.17.tar.gz\r
504 cd postgresql-8.2.17\r
505 ./configure --with-perl --enable-integer-datetimes --with-openssl --prefix=/usr/local/stow/pgsql\r
506 make\r
507 make install\r
508 cd contrib\r
509 make\r
510 make install\r
511 cd xml2\r
512 make\r
513 make install\r
514 cd /usr/local/stow\r
515 stow pgsql\r
516 </userinput>\r
517 </screen>\r
518                                 \r
519                         </step>\r
520                         <step>\r
521                                 <para>Create the new user <systemitem class="username">postgres</systemitem> to run the PostgreSQL processes. \r
522                                 As the <systemitem class="username">root</systemitem> user, execute this command:</para>\r
523                                 <screen><userinput>adduser postgres</userinput></screen>\r
524                         </step>\r
525                         <step>\r
526                                 <para>Initialize the database directory and start up PostgreSQL. As the <systemitem class="username">root</systemitem> user, follow these steps:</para>\r
527                                 \r
528 <screen>\r
529 <userinput>\r
530 mkdir -p /usr/local/pgsql/data\r
531 chown postgres /usr/local/pgsql/data\r
532 su - postgres\r
533 initdb -D /usr/local/pgsql/data -E UNICODE --locale=C\r
534 pg_ctl -D /usr/local/pgsql/data -l /home/postgres/logfile start\r
535 </userinput>\r
536 </screen>\r
537                                 <note>\r
538                                         <para>If an error occurs during the final step above, review the path of the home directory for the \r
539                                         <systemitem class="username">postgres</systemitem> user. It may be <literal>/var/lib/postresql</literal> instead of <literal>/home/postres</literal>.</para>\r
540                                 </note>\r
541                         </step>\r
542                 </procedure>\r
543         </section>\r
544         <section xml:id="configuringPostgreSQL">\r
545                 <title>Configuring PostgreSQL</title>\r
546                 <indexterm><primary>databases</primary><secondary>PostgreSQL</secondary></indexterm>\r
547                 <para>The values of several PostreSQL configuration parameters may be changed for enhanced performance. The following table lists the default values \r
548                 and some suggested updates for several useful parameters:</para>\r
549                 <table>\r
550                         <title>Suggested configuration values</title>\r
551                         <tgroup align="left" cols="3" colsep="1" rowsep="1">\r
552                                 <colspec colnum="1" colwidth="1.0*"/>\r
553                                 <colspec colnum="2" colwidth="1.0*"/>\r
554                                 <colspec colnum="3" colwidth="1.0*"/>\r
555                                 <thead>\r
556                                         <row>\r
557                                                 <entry>Parameter</entry>\r
558                                                 <entry>Default</entry>\r
559                                                 <entry>Suggested</entry>\r
560                                         </row>\r
561                                 </thead>\r
562                                 <tbody>\r
563                                         <row>\r
564                                                 <entry>default_statistics_target</entry>\r
565                                                 <entry>10</entry>\r
566                                                 <entry>100</entry>\r
567                                         </row>\r
568                                         <row>\r
569                                                 <entry>work_mem</entry>\r
570                                                 <entry>4Mb</entry>\r
571                                                 <entry>128Mb</entry>\r
572                                         </row>\r
573                                         <row>\r
574                                                 <entry>shared_buffers</entry>\r
575                                                 <entry>8Mb</entry>\r
576                                                 <entry>512Mb</entry>\r
577                                         </row>\r
578                                         <row>\r
579                                                 <entry>effective_cache_size</entry>\r
580                                                 <entry>128Mb</entry>\r
581                                                 <entry>4Gb</entry>\r
582                                         </row>\r
583                                 </tbody>\r
584                         </tgroup>\r
585                 </table>\r
586         </section>\r
587 </chapter>\r