<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>semioticpixels &#187; plone</title> <atom:link href="http://www.semioticpixels.com/tag/plone/feed/" rel="self" type="application/rss+xml" /><link>http://www.semioticpixels.com</link> <description></description> <lastBuildDate>Thu, 12 Jan 2012 08:43:04 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>installing plone on ubuntu/slicehost</title><link>http://www.semioticpixels.com/linux-server-administration/installing-plone-on-slicehost/</link> <comments>http://www.semioticpixels.com/linux-server-administration/installing-plone-on-slicehost/#comments</comments> <pubDate>Wed, 02 Sep 2009 02:00:19 +0000</pubDate> <dc:creator>chris</dc:creator> <category><![CDATA[crib notes]]></category> <category><![CDATA[linux server administration]]></category> <category><![CDATA[plone]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.semioticpixels.com/?p=36</guid> <description><![CDATA[Setting up the Slicehost Account Update everything sudo apt-get update sudo apt-get upgrade install vim full so you can edit files apt-get install vim-full update the &#8220;locate&#8221; db sudo updatedb Change the root password sudo passwd Set up Users useradd &#8230; <a href="http://www.semioticpixels.com/linux-server-administration/installing-plone-on-slicehost/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h3>Setting up the Slicehost Account</h3><p><strong>Update everything</strong><br /> <code>sudo apt-get update</code><br /> <code>sudo apt-get upgrade</code><span id="more-36"></span></p><p><strong>install vim full so you can edit files</strong><br /> <code>apt-get install vim-full</code></p><p><strong>update the &#8220;locate&#8221; db</strong><br /> <code>sudo updatedb</code></p><p><strong>Change the root password</strong><br /> <code>sudo passwd</code></p><p><strong>Set up Users</strong><br /> <code>useradd zope</code> (I like useradd because there&#8217;s no reason to have a home directory. If you want your user to have a home directory then use <code>adduser</code> or <code>useradd -D zope</code> to create ~/home/zope)<br /> <code>passwd zope</code><br /> <code>useradd -m  -c "real name" -s /bin/bash auserwithsudoers</code> The flags create a home directory with skel profile defaults and this account is linked to the defaults for bash shell, which is important if you like syntax coloring and tab completion.<br /> <code>passwd auserwithsudoers</code><br /> <code>sudo visudo </code><br /> Find the line that says #User Privilege specification and add<br /> <code>auserwithsudoers ALL=(ALL) ALL</code><br /> <code>shift ZZ </code> to save and exit</p><p>Now log out as root and login as your new admin user and test sudo<br /> <code>su auserwithsudoers</code><br /> <code>sudo bash</code></p><p><strong> Disable root login</strong><br /> <code>su root</code><br /> <code>sudo vim /etc/ssh/sshd_config</code><br /> Change &#8220;PermitRootLogin yes&#8221; to &#8220;PermitRootLogin no&#8221;</p><p><strong>Reload the ssh config</strong><br /> <code>sudo /etc/init.d/ssh reload</code></p><h3>Ok! Now we&#8217;re ready to think about plone</h3><ol><li>Follow the plone install instructions <a href="http://www.semioticpixels.com/2007/12/install-plone-3-on-ubuntu-7-10/">here</a></li><li>install some products (<a href="http://plone.org/documentation/tutorial/third-party-products/installing">see plone documentation </a>on using buildout).  Here&#8217;s what I did to install a Press Release product<ol><li>download the product. If there&#8217;s a choice of files, choose the one with the naming convention Products.package.tar.gz.  This is a python egg.</li><li><code>su zope<br /> vi /usr/local/Plone/zeocluster/buildout.cfg</code><br /> add the following:</p><pre><code>[buildout]
...
eggs =
Products.PressRelease</code></pre><p>and save (<code>ctrl + ZZ</code>)</li><li><code>sudo /usr/local/Plone/zeocluster/bin/buildout</code></li><li><code>sudo /usr/local/Plone/zeocluster/bin/plonectl restart</code></li><li>In each Plone site where you want to install the Product, go Site Setup&gt;Add/Remove Products and install the Product.</li></ol></li></ol> ]]></content:encoded> <wfw:commentRss>http://www.semioticpixels.com/linux-server-administration/installing-plone-on-slicehost/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>install plone 3 on ubuntu 7.10</title><link>http://www.semioticpixels.com/linux-server-administration/install-plone-3-on-ubuntu-7-10/</link> <comments>http://www.semioticpixels.com/linux-server-administration/install-plone-3-on-ubuntu-7-10/#comments</comments> <pubDate>Wed, 12 Dec 2007 17:19:46 +0000</pubDate> <dc:creator>chris</dc:creator> <category><![CDATA[crib notes]]></category> <category><![CDATA[linux server administration]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[plone]]></category> <category><![CDATA[ubuntu]]></category><guid isPermaLink="false">http://www.semioticpixels.com/?p=3</guid> <description><![CDATA[This is on a freshly installed Ubuntu 7.10 (Gutsy Gibbon). Modify version numbers as needed install g++ sudo apt-get install linux-headers-`uname -r` build-essential xinetd download plone unified installer or in your terminal type: wget https://launchpad.net/plone/3.0/3.0.4/+download/Plone-3.0.4-UnifiedInstaller.tar.gz --no-check-certificate tar -xvzf Plone-3.0.4-Unifiedinstaller-Rev3.tar.gz cd &#8230; <a href="http://www.semioticpixels.com/linux-server-administration/install-plone-3-on-ubuntu-7-10/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>This is on a freshly installed Ubuntu 7.10 (Gutsy Gibbon). Modify version numbers as needed</p><ol><li>install g++<br /> <code>sudo apt-get install linux-headers-`uname -r` build-essential xinetd</code></li><p><span id="more-3"></span></p><li>download <a href="http://plone.org/products/plone">plone unified installer</a> or in your terminal  type:<br /> <code>wget https://launchpad.net/plone/3.0/3.0.4/+download/Plone-3.0.4-UnifiedInstaller.tar.gz --no-check-certificate</code></li><li><code>tar -xvzf Plone-3.0.4-Unifiedinstaller-Rev3.tar.gz</code><br /> <code>cd Plone-3.0.4-Unifiedinstaller</code><br /> If you need to change the install path for Plone, edit the PLONE_HOME variable in install.sh. I changed mine to /usr/local/Plone304</li><li><code>sudo ./install.sh zeo</code></li><li> <code>cd /usr/local/Plone304/zeocluster</code><br /> and<br /> <code>sudo vi adminPassword.txt</code><br /> to view admin password</li><li> start Plone (first time will take a few minutes):<br /> <code> sudo /usr/local/Plone304/zeocluster/bin/startcluster.sh</code></li><li> navigate to localhost:8080 to check that zope is working</li><li> in localhost:8080/manage go to Root Folder, click on acl_users=&gt;users=&gt;admin and change admin password to something you&#8217;ll remember</li><li> from dropdown menu select Plone Site to create a new site</li><li> navigate to plone site: localhost:8080/ploneSiteName</li><li>navigate to zmi by: localhost:8080/ploneSiteName/manage</li></ol> ]]></content:encoded> <wfw:commentRss>http://www.semioticpixels.com/linux-server-administration/install-plone-3-on-ubuntu-7-10/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 13/25 queries in 0.060 seconds using disk: basic
Object Caching 384/405 objects using disk: basic

Served from: www.semioticpixels.com @ 2012-02-04 23:04:58 -->
