Installing Plone 3 with the Unified Installer
This Tutorial applies to:
Plone 3.0.x
This Tutorial is intended for:
Server Administrators
smcmahon
All content on one page (useful for printing, presentation mode etc.)
- What is the Unified Installer? A brief introduction to the installer, the case for using it, its options and recent changes.
- Root or User Install? The cases for and against installation as the root user.
- To ZEO or Not to Zeo? The Unified Installer will install Zope to either run in a Client/Server or stand-alone configuration. Here are the merits of each.
- Running the Unified Installer Preparing to run and running the Unified Installer
- Creating New Instances The Unified Installer may be used to create additional Zope/Plone instances.
- Command-Line Options Some less commonly used Unified Installer options that may still be useful to you.
Installing on Solaris 10 (SPARC)
This is needed to include libssl in python build
Install on Solaris 10 (x86)
for getting the installation done on Solaris 10 (x86) I had to
change some lines in install.sh
#!/bin/bash
...
#Build Python
...
if [ $NEED_LOCAL -eq 1 ]
then
...
else
export LD_LIBRARY_PATH=/usr/local/lib
./configure \
--prefix=$PY_HOME \
--with-readline \
--with-zlib \
--disable-tk \
--with-gcc="$GCC" \
--with-cxx="$GPP"
fi