Skip to content
yqjiang edited this page May 22, 2013 · 4 revisions

Islandora Installation

Installation of VM:

When the download is completed, here are the steps that need to perform to install the Virtual Machine.
Steps:
1. Run the .exe file that was downloaded.
2. A security warning will show up, please press “yes” to that.
3. Oracle VM setup will show up, press “Next” on that window. You can browse out the location, where to install the VM by clicking the “Browse” button and selecting the location from there.
4. the next window will give us the option to create a shortcut on the desktop and create a shortcut in the quick Launch bar. Select both of them. Press “Next”.
5. Press “Yes” on the warning window.
6. Press “Install” on the next window. By pressing install button, it will install the virtualBox.
9. During the installing process there will be couple of warnings, allow them to install the Virtual mechine into your computer.
10. when the installation is complete, there will be a pop window, press “Finish” and select the start Oracle Virtualbox. By clicking the finish, it will launch the VirtualBox.
Download Islandora from:

http://islandora.ca/sites/islandora.ca/files/islandoraDownloadVM/Islandora-v6-x-12.2.0-and-7.x-1.0-taverna_centos_32bit_vm_v1_1_1.ova

Installing Islandora into the VM:

Steps:
1. From the open virtualBox, from the file tab select the import Appliances.
2. It will allow you to choose the downloaded islandora repository that we have previously downloaded.
3. By selecting the file, it will start installing the Islandora into the Virtual machine.
4. That’s it. We are all set.

Run Islandora:

You can Run Islandora by clicking the Start. when you run Islandora for the first time it will show that it can not find a network. To fix that we have to select the Bridge adapter from the network.
Once Bridge Adapter is selected, it will start running.
For our project purpose:
username: islandora

Taverna service installation

Soap/Pear

SOAP is a protocol for messaging between web services (e.g. Taverna). Web communication consists of passing simple strings back and forth, but complex web services like Taverna need to be able to express and understand strongly typed data. This is what SOAP is useful for - it can encode and decode data so that it can be sent across a network connection while retaining strong typing and object semantics. PEAR is PHP Extension and Application Repository. It’s a framework and distribution system for reusable PHP components.
Install Pear
Quick answer: Call the following command to install the current SOAP server Beta version which was tested with this system:
pear install channel://pear.php.net/SOAP-0.13.0 SOAP
More detailed information:
The general command to install a PEAR package named “foo” is
$ pear install foo
If the package is already installed, it will provide a message by saying “ignoring installation”
To upgrade:
$ pear upgrade foo
Upgrading to a specific version:
$ pear upgrade foo-1.2.3
You can use any of the version for stability:
Alpha, beta, stable, devel.
Command for this is:
$ pear config-set preferred-state alpha
Various help documents can be found to facilitate the learning of pear commands which aid in the installation and use of the PEAR soap server framework
PEAR help command:
$ pear help
Gives you list of commands.
To get help on installing the pear:
$pear help install
Configuring PEAR setup:
To display configuration information:
$ pear config-show
To read a single value:
$ pear config-show php_dir
To change a value:
$ pear config-set preferred_state beta
Once install is completed the system should be almost up and running. One thing to remember is to run the setuplogs.sh script that is mentioned in the logging section of the manual. This will create any necessary log files in the proper locations and set the permissions as required.
Clone this wiki locally