PubMan:2009 Installation walk through on Suse Linux 10

From MPDLMediaWiki
Revision as of 09:07, 29 July 2011 by Bourke (talk | contribs) (moved PubMan:Installation walk through to PubMan:2009 Installation walk through on Suse Linux 10: Page is incomplete, not linked to, and considers only the MPDL environment - but some of that is useful information, if only internally)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This Page shall describe the necessary steps to set up a pubman instance with SuSE SLES10 SP2

Prerequisites[edit]

Java[edit]

I suppose that there are two servers available, one for the framework and one for pubman.
So here they are:

escidoc-core framework[edit]

the initial setup of the SLES is quite standard - nevertheless if during the installation of any rpm the system complains about missing dependencies, resolve them via yast-installation

  • in order for the java-odbc package to install you need to install unixodbc first via yast
  • java v1.5 update 12 including some modules (as root)
rpm -i jpackage-utils-1.7.0-19.x86_64.rpm
rpm -i java-1_5_0-sun-1.5.0_12-1.1.x86_64.rpm
rpm -i java-1_5_0-sun-devel-1.5.0_12-1.1.x86_64.rpm
rpm -i java-1_5_0-sun-jdbc-1.5.0_12-1.1.x86_64.rpm
rpm -i java-1_5_0-sun-plugin-1.5.0_12-1.1.i586.rpm
  • jboss 4.2.2-GA
cd /usr/local/src/fw/jboss
wget http://switch.dl.sourceforge.net/sourceforge/jboss/jboss-4.2.2.GA.zip /*if not already downloaded*/
unzip jboss-4.2.2.GA.zip -d /data/ /*or wherever you want to have it*/
    • for jboss to be properly integrated you need a jboss-user and a jboss rc-script
    • create jboss-user:(as root)
groupadd --system jboss
useradd jboss -c "JBoss - Java[tm] Application Server" -d /home/jboss/ -G jboss -m
passwd jboss (follow the instructions)