Difference between revisions of "Adito notes"

From Amahi Wiki
Jump to: navigation, search
(New page: * create a webapp (my-adito) * cd to it (cd /var/hda/web-apps/my-adito/ * chmod -R 777 . * wget http://superb-east.dl.sourceforge.net/sourceforge/adito/adito-0.9.1-bin.tar.gz * tar -xjf ad...)
 
Line 10: Line 10:
 
* chmod 777 install/platforms/linux/x86-64/wrapper
 
* chmod 777 install/platforms/linux/x86-64/wrapper
 
* ./install/platforms/linux/x86-64/wrapper /var/hda/web-apps/myadito/server/conf/wrapper.conf wrapper.pidfile=my.pid wrapper.daemonize=FALSE
 
* ./install/platforms/linux/x86-64/wrapper /var/hda/web-apps/myadito/server/conf/wrapper.conf wrapper.pidfile=my.pid wrapper.daemonize=FALSE
 +
 +
----
 +
 +
Summary of Manual Install
 +
 +
*I did an actual install on a VirtualBox F10 32-bit VM with Amahi.  I did an install, activated the service, and logged in once to ensure everything worked.  Once finished, stopped the service and compared the install version with the original source version.  Files that were different are listed below:
 +
 +
server/conf: default.keystore.jks
 +
server/conf/prefs/system/extensions: prefs.properties
 +
server/conf/prefs/system/extensions/versions: prefs.properties
 +
server/conf/prefs/system: prefs.properties
 +
server/conf/repository/keystore: default.keystore.jks
 +
server/conf/repository/PKI: aditoadmin.prv
 +
server/conf/repository/PKI: aditoadmin.pub
 +
server/conf: webserver.properties
 +
server/conf: wrapper.conf
 +
server/db: explorer_configuration.backup
 +
server/db: explorer_configuration.data
 +
server/db: explorer_configuration.log
 +
server/db: explorer_configuration.properties
 +
server/db: explorer_configuration.script
 +
server/db: upgrade.log
 +
server/db: versions.log
 +
server/lib: tools.jar
 +
server/logs: 2009_06_15.request.log
 +
server/logs: adito.log
 +
server/logs: wrapper.log
 +
server/tmp: availableCipherSuites.txt
 +
server/tmp: extensions (this is a directory of files)
 +
server/tmp: org  (this is a directory of files)
 +
 +
* I then made a patch with the different files and started a clean VM.  I followed the steps below to do the install:
 +
 +
yum -y install java-1.6.0-openjdk-devel
 +
cd /var/hda/web-apps/
 +
mkdir myadito
 +
cd myadito
 +
wget http://superb-west.dl.sourceforge.net/sourceforge/adito/adito-0.9.1-bin.tar.gz
 +
tar -xf adito-0.9.1-bin.tar.gz
 +
rm -f adito-0.9.1-bin.tar.gz
 +
mv adito-0.9.1/ server/
 +
cd server
 +
wget adito-0.9.1-patch.zip (this is a zip file of changed files between source and install)
 +
wget adito-0.9.1-patch.zip
 +
unzip adito-0.9.1-patch.zip
 +
rm -f adito-0.9.1-patch.zip
 +
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/adito
 +
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/x86/wrapper
 +
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/x86-64/wrapper
 +
export WRAPPER_CONF="/var/hda/web-apps/myadito/server/conf/wrapper.conf"
 +
/var/hda/web-apps/myadito/server/install/platforms/linux/adito start
 +
 +
Once it started, I used FF and went to https://localhost.  The service only runs for about 10 sec, then shuts down, so have to be quick.  Once I got the

Revision as of 01:15, 17 June 2009

  • create a webapp (my-adito)
  • cd to it (cd /var/hda/web-apps/my-adito/
  • chmod -R 777 .
  • wget http://superb-east.dl.sourceforge.net/sourceforge/adito/adito-0.9.1-bin.tar.gz
  • tar -xjf adito-0.9.1-bin.tar.gz
  • mv adito-0.9.1/ server/
  • cd into server
  • cp conf/wrapper.conf.base conf/wrapper.conf
  • copy a valid, pre-configured database set of files to the db/ dir
  • chmod 777 install/platforms/linux/x86-64/wrapper
  • ./install/platforms/linux/x86-64/wrapper /var/hda/web-apps/myadito/server/conf/wrapper.conf wrapper.pidfile=my.pid wrapper.daemonize=FALSE

Summary of Manual Install

  • I did an actual install on a VirtualBox F10 32-bit VM with Amahi. I did an install, activated the service, and logged in once to ensure everything worked. Once finished, stopped the service and compared the install version with the original source version. Files that were different are listed below:
server/conf: default.keystore.jks
server/conf/prefs/system/extensions: prefs.properties
server/conf/prefs/system/extensions/versions: prefs.properties
server/conf/prefs/system: prefs.properties
server/conf/repository/keystore: default.keystore.jks
server/conf/repository/PKI: aditoadmin.prv
server/conf/repository/PKI: aditoadmin.pub
server/conf: webserver.properties
server/conf: wrapper.conf
server/db: explorer_configuration.backup
server/db: explorer_configuration.data
server/db: explorer_configuration.log
server/db: explorer_configuration.properties
server/db: explorer_configuration.script
server/db: upgrade.log
server/db: versions.log
server/lib: tools.jar
server/logs: 2009_06_15.request.log
server/logs: adito.log
server/logs: wrapper.log
server/tmp: availableCipherSuites.txt
server/tmp: extensions (this is a directory of files)
server/tmp: org  (this is a directory of files)
  • I then made a patch with the different files and started a clean VM. I followed the steps below to do the install:
yum -y install java-1.6.0-openjdk-devel
cd /var/hda/web-apps/
mkdir myadito
cd myadito
wget http://superb-west.dl.sourceforge.net/sourceforge/adito/adito-0.9.1-bin.tar.gz 
tar -xf adito-0.9.1-bin.tar.gz
rm -f adito-0.9.1-bin.tar.gz
mv adito-0.9.1/ server/
cd server
wget adito-0.9.1-patch.zip (this is a zip file of changed files between source and install)
wget adito-0.9.1-patch.zip
unzip adito-0.9.1-patch.zip
rm -f adito-0.9.1-patch.zip
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/adito
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/x86/wrapper
chmod a+x /var/hda/web-apps/myadito/server/install/platforms/linux/x86-64/wrapper
export WRAPPER_CONF="/var/hda/web-apps/myadito/server/conf/wrapper.conf"
/var/hda/web-apps/myadito/server/install/platforms/linux/adito start

Once it started, I used FF and went to https://localhost. The service only runs for about 10 sec, then shuts down, so have to be quick. Once I got the