Plone is an excellent enterprise Content Management System (CMS). It has enterprise-class features, is scalable, and comes with many exciting modules right out of the box. So if you need an enterprise CMS platform for your company, Plone might be a great place to start.
Plone Content Services is built on an open-source core with support for open standards, which might be very useful in helping you run your digital content.
This CMS platform is designed for ease of use to allow enterprises and business owners to collaborate and automate engaging experiences with users across multiple devices, including mobile.
For more about Plone, please check their Homepage.
To get started with installing Plone, follow the steps below:
Install Required Libraries
To install Plone, you must have some required libraries installed. Run the commands below to install all the requirements for the installation to be successful.
sudo apt-get update apt-get install build-essential gcc libjpeg-dev readline-common libssl-dev libxml2-dev libxslt1-dev python2.7 python-dev
Download and Install Plone
Now that the required packages are installed, run the commands below to download Plone’s latest packages. As of today, the newest version is at 5.1.2
You can download the file from the link below
Or use this command.
cd /tmp && wget https://launchpad.net/plone/5.1/5.1.2/+download/Plone-5.1.2-UnifiedInstaller.tgz
Next, run the commands below to extract the downloaded file and move it to the installation directory.
tar -xzf Plone-5.1.2-UnifiedInstaller.tgz sudo mv Plone-5.1.2-UnifiedInstaller /usr/local/plone
After that, change into the installation directory by running the commands below.
cd /usr/local/plone
Then run the commands below to begin the installation.
sudo ./install.sh standalone --target=/usr/local/plone --password=new_password_here --with-python=/usr/bin/python2.7
The installation may take a while. So be patient. After the installation, you should get a message that it’s done.
###################### Installation Complete ######################
Plone successfully installed at /usr/local/plone
See /usr/local/plone/zinstance/README.html
for startup instructions.
Use the account information below to log into the Zope Management Interface
The account has full 'Manager' privileges.
Username: admin
Password: password_here
This account is created when the object database is initialized. If you change
the password later (which you should!), you'll need to use the new password.
Next, run the commands below to start Plone.
sudo /usr/local/plone/zinstance/bin/plonectl start
Now open your browser and browse to the server hostname or IP address followed by port 8080
http://localhost:8080

Enjoy!
You may also like the post below: