Plone Installation in linux Server.

August 5, 2008 on 12:45 pm | In Plone CMS | No Comments

Get the source

================
wget http://launchpad.net/plone/3.1/3.1.4/+download/Plone-3.1.4-UnifiedInstaller.tgz
tar -zxf Plone-3.1.4-UnifiedInstaller.tgz
cd Plone-3.1.4-UnifiedInstaller

================

Find the README.txt for more information. You can install Plone as standallone (server wide) or for a user.
Here we are dealing with stand alone or serverwide installation.

Make sure that you have gcc and g++ installed.
Else install it using yum of up2date.

====Optional====
yum install gcc
yum install gcc-c++.i386

================

You can list the available packages using the command

================
yum list | grep gcc
================

Once you have both gcc and g++ its easy.

run as root

================
./install.sh standalone
================

This will install plone in /opt/Plone-3.1/
You can start plone using the command

================
/opt/Plone-3.1/zinstance/bin/instance start
================

================
Access your zope settings at http://serverIP:8080/zope
Access you  Plone at http://serverIP:8080/Plone

The login will be given at the end of installation. Alternatively you can find it at /opt/Plone-3.1/zinstance/adminPassword.txt

(To change your password go to http://serverIP:8080/acl_users/users/manage_users   click the “Password” link for the admin)
================

To get information about changing port and other setting, open the file /opt/Plone-3.1/zinstance/README.txt

Thats all :)