<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Automatic (kickstart) install script in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254439#M207569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried now in between 100 or 200 times to install Alfresco on a virtual CentOS server. So far without a good result. Puzzling for me is the installer is working fine on the CentOS 6 platform: download the .bin file execute it and done! However, call me old fashioned, i want to deploy Alfresco on Tomcat myself using the .zip install.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have read all the CentOS documents in the wiki and all are not very useful and quite old actually. I suggest they should be removed because they are a waste of time and frustrating for new users. I mean, nobody uses CentOS 4 anymore or Tomcat 5. On the internet outside the wiki there are some blogs with more up to date information, but they are the typical blog-style install documents: a sum up of things you need to install and the blogger probably passes on work from somebody else. I can conclude that by far the best work i found on the web on installing a headless and gui-less Alfresco is located here: &lt;/SPAN&gt;&lt;A href="http://code.google.com/p/alfresco-ubuntu-qs/source/browse/trunk/install.sh" rel="nofollow noopener noreferrer"&gt;http://code.google.com/p/alfresco-ubuntu-qs/source/browse/trunk/install.sh&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, a script. At least there is one person, Will Abson, who seems to really know what it takes to install Alfesco. It is really great work he did, the script looks exceptional. For me unfortunately it has two challenges. First it is for Ubuntu (who still wants to use Ubuntu in 2011?) and second it requires user interaction. So i started to use Will's script as inspiration for my own script that installs Alfresco without user interaction in a so-called kickstart file (see below). This file will create a new virtual server, installs the necessary packages, downloads Alfresco, edits the configuration files, creates the MySQL database and finally reboots. Alfresco is then available at port 8080.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On a side note, my feeling is, maybe Alfresco is a bit picky about versions of software you use. Connector/J: 5.1.18, Tomcat 7.0.22 and 6.0.33 (share the same problems) and Oracle's MySQL 5.1.47 and JDK6. Are there issues know on these versions if any?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the script (i remove the openoffice and swf parts and if yo want to run it you must provide your own source server, mine is behind the firewall). Can anyone see what is wrong with it? Apart from copying a bunch of .sample files it seems pretty identical to me compared to what the .bin installer does or what Will's script does.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;install&lt;BR /&gt;reboot&lt;BR /&gt;lang en_US.UTF-8&lt;BR /&gt;keyboard us&lt;BR /&gt;skipx&lt;BR /&gt;%include /tmp/network-with-hostname.sh&lt;BR /&gt;rootpw linux&lt;BR /&gt;firewall –disabled&lt;BR /&gt;selinux –disabled&lt;BR /&gt;authconfig –enableshadow –enablemd5&lt;BR /&gt;timezone –isUtc Asia/Shanghai&lt;BR /&gt;bootloader –location=mbr&lt;BR /&gt;services –enabled=mysqld&lt;BR /&gt;bootloader –location=mbr&lt;BR /&gt;clearpart –all –initlabel&lt;BR /&gt;part swap –size=500 –ondisk=vda&lt;BR /&gt;part / –fstype ext4 –grow –size=100 –ondisk=vda&lt;BR /&gt;&lt;BR /&gt;%packages –excludedocs –instLangs=en&lt;BR /&gt;@core&lt;BR /&gt;-mdadm&lt;BR /&gt;curl&lt;BR /&gt;wget&lt;BR /&gt;gcc&lt;BR /&gt;make&lt;BR /&gt;openoffice.org-headless&lt;BR /&gt;&lt;BR /&gt;ImageMagick&lt;BR /&gt;&lt;BR /&gt;mysql-server&lt;BR /&gt;mysql&lt;BR /&gt;&lt;BR /&gt;#swftools dependencies&lt;BR /&gt;gcc-c++&lt;BR /&gt;zlib-devel&lt;BR /&gt;libjpeg-devel&lt;BR /&gt;giflib-devel&lt;BR /&gt;freetype-devel&lt;BR /&gt;%end&lt;BR /&gt;&lt;BR /&gt;%pre&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;wget -O - &lt;A href="http://office:90/flexshare/os/common/remove-firmware.sh" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/common/remove-firmware.sh&lt;/A&gt; | bash&lt;BR /&gt;wget -O - &lt;A href="http://office:90/flexshare/os/common/set-hostname.sh" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/common/set-hostname.sh&lt;/A&gt; | bash&lt;BR /&gt;%end&lt;BR /&gt;&lt;BR /&gt;%post –log=/root/post.log&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;export ALFRESCO=alfresco-community-4.0.a&lt;BR /&gt;service network restart&lt;BR /&gt;chkconfig crond off&lt;BR /&gt;chkconfig atd off&lt;BR /&gt;&lt;BR /&gt;wget -O - &lt;A href="http://office:90/flexshare/os/components/java/install.sh" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/components/java/install.sh&lt;/A&gt; | bash&lt;BR /&gt;wget -O - &lt;A href="http://office:90/flexshare/os/components/tomcat/install.sh" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/components/tomcat/install.sh&lt;/A&gt; | bash&lt;BR /&gt;. /etc/profile.d/tomcat.sh&lt;BR /&gt;echo "JAVA_OPTS=\"-Xms128m -Xmx1024m -Xss96k -XX:MaxPermSize=160m -Dalfresco.home=$CATALINA_HOME -Dcom.sun.management.jmxremote\"" &amp;gt;&amp;gt; /etc/profile.d/tomcat.sh&lt;BR /&gt;echo "TOMCAT6_SECURITY=no" &amp;gt;&amp;gt; /etc/profile.d/tomcat.sh&lt;BR /&gt;&lt;BR /&gt;echo "setup mysql"&lt;BR /&gt;sed -i 's/\[mysqld\]/&amp;amp;\&lt;BR /&gt;default-storage-engine=InnoDB/' /etc/my.cnf&lt;BR /&gt;sed -i 's/\[mysqld\]/&amp;amp;\&lt;BR /&gt;default-character-set=utf8/' /etc/my.cnf&lt;BR /&gt;service mysqld restart&lt;BR /&gt;mysql -uroot -e "CREATE DATABASE IF NOT EXISTS alfresco;"&lt;BR /&gt;mysql -uroot -e "GRANT ALL PRIVILEGES ON alfresco.* TO alfresco@localhost IDENTIFIED BY 'alfresco';"&lt;BR /&gt;#TODO weird: but this seems necessary&lt;BR /&gt;mysqladmin -uroot password alfresco&lt;BR /&gt;&lt;BR /&gt;echo "downloading alfresco"&lt;BR /&gt;mkdir /root/alfresco-down&lt;BR /&gt;cd /root/alfresco-down&lt;BR /&gt;wget -q &lt;A href="http://office:90/flexshare/os/alfresco/$ALFRESCO.zip" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/alfresco/$ALFRESCO.zip&lt;/A&gt;&lt;BR /&gt;unzip -q $ALFRESCO.zip&lt;BR /&gt;&lt;BR /&gt;echo "copying and unpacking the wars"&lt;BR /&gt;cp /root/alfresco-down/web-server/webapps/*.war $CATALINA_HOME/webapps&lt;BR /&gt;cd $CATALINA_HOME/webapps&lt;BR /&gt;unzip -q share.war -d share&lt;BR /&gt;unzip -q alfresco.war -d alfresco&lt;BR /&gt;#TODO i don't think we need the war archives anymore, so delete them&lt;BR /&gt;#rm -f *.war&lt;BR /&gt;&lt;BR /&gt;echo "copying alfresco files to $CATALINA_HOME"&lt;BR /&gt;cp /root/alfresco-down/bin/* $CATALINA_HOME/bin&lt;BR /&gt;rm -rf /root/alfresco-down&lt;BR /&gt;&lt;BR /&gt;echo "config alfresco web apps"&lt;BR /&gt;mkdir -p $CATALINA_HOME/shared/classes&lt;BR /&gt;cd $CATALINA_HOME/shared/classes&lt;BR /&gt;wget -q &lt;A href="http://office:90/flexshare/os/alfresco/alfresco-global.properties" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/alfresco/alfresco-global.properties&lt;/A&gt;&lt;BR /&gt;cd $CATALINA_HOME/lib&lt;BR /&gt;wget -q &lt;A href="http://office:90/flexshare/os/alfresco/mysql-connector-java-5.1.18-bin.jar" rel="nofollow noopener noreferrer"&gt;http://office:90/flexshare/os/alfresco/mysql-connector-java-5.1.18-bin.jar&lt;/A&gt;&lt;BR /&gt;sed -i 's/shared.loader=/shared.loader=${catalina.home}\/shared\/classes/g' $CATALINA_HOME/conf/catalina.properties&lt;BR /&gt;&lt;BR /&gt;chown -R tomcat.tomcat $CATALINA_HOME&lt;BR /&gt;&lt;BR /&gt;mkdir -p /var/alfresco/alf_data&lt;BR /&gt;chown -R tomcat.tomcat /var/alfresco&lt;BR /&gt;&lt;BR /&gt;#default logging traps into a permission problem, set the path&lt;BR /&gt;sed -i 's/&lt;A href="http://alfresco.log/${catalina.home}\/logs\/alfresco-share.log/g" rel="nofollow noopener noreferrer"&gt;alfresco.log/${catalina.home}\/logs\/alfresco-share.log/g&lt;/A&gt;' $CATALINA_HOME/webapps/share/WEB-INF/classes/log4j.properties&lt;BR /&gt;sed -i 's/&lt;A href="http://alfresco.log/${catalina.home}\/logs\/alfresco-alfresco.log/g" rel="nofollow noopener noreferrer"&gt;alfresco.log/${catalina.home}\/logs\/alfresco-alfresco.log/g&lt;/A&gt;' $CATALINA_HOME/webapps/alfresco/WEB-INF/classes/log4j.properties&lt;BR /&gt;%end&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the mayor problem is memory related. There are loads of these messages:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;15:47:27,046 WARN&amp;nbsp; [org.alfresco.util.AbstractTriggerBean] Job ehCacheTracerJob is not active/enabled&lt;BR /&gt;15:47:36,402 ERROR [org.springframework.beans.factory.support.DefaultListableBeanFactory] Destroy method on bean with name 'replicationParams' threw an exception&lt;BR /&gt;java.lang.OutOfMemoryError: PermGen space&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at java.lang.Class.getDeclaredConstructors0(Native Method)&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;When both share and alfresco are deployed it can happen Tomcat will crash on startup. However this forum tells me to ignore them and i have tried several JAVA_OPTS but it did not resolve. The other often recurring issue are the database connections.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;16:06:25,327&amp;nbsp; WARN&amp;nbsp; [hibernate.cfg.SettingsFactory] Could not obtain connection metadata&lt;BR /&gt;org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Communications link failure&lt;BR /&gt;&lt;BR /&gt;The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1225)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;No idea what that means, the alfresco DB should be accessible. And sometimes it manages create the tables in the DB, but mostly it fails.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Oct 2011 08:33:46 GMT</pubDate>
    <dc:creator>sakkaje</dc:creator>
    <dc:date>2011-10-20T08:33:46Z</dc:date>
    <item>
      <title>Automatic (kickstart) install script</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254439#M207569</link>
      <description>Hi,I have tried now in between 100 or 200 times to install Alfresco on a virtual CentOS server. So far without a good result. Puzzling for me is the installer is working fine on the CentOS 6 platform: download the .bin file execute it and done! However, call me old fashioned, i want to deploy Alfres</description>
      <pubDate>Thu, 20 Oct 2011 08:33:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254439#M207569</guid>
      <dc:creator>sakkaje</dc:creator>
      <dc:date>2011-10-20T08:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic (kickstart) install script</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254440#M207570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;H there,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you haven't done so already, try running the Alfresco Environmental Validation Tool that can be found on Google Code at &lt;/SPAN&gt;&lt;A href="http://code.google.com/p/alfresco-environment-validation/" rel="nofollow noopener noreferrer"&gt;http://code.google.com/p/alfresco-environment-validation/&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; It might alert you to problems with your configuration or environment.&amp;nbsp; And if you have an Alfresco subscription, check out the Zero Day Configuration Guide at &lt;/SPAN&gt;&lt;A href="http://support.alfresco.com/ics/support/default.asp?deptID=15026" rel="nofollow noopener noreferrer"&gt;http://support.alfresco.com/ics/support/default.asp?deptID=15026&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Darryl&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2011 17:30:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254440#M207570</guid>
      <dc:creator>darryl_staflund</dc:creator>
      <dc:date>2011-10-30T17:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic (kickstart) install script</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254441#M207571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You need to increase the permgen memory (-XX:MaxPermSize=200M).&amp;nbsp;&amp;nbsp; I can't see that in your script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And a second point, as and when you find the wiki is incomplete or out of date then please go ahead and correct it, that way it gets better &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2011 18:47:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/automatic-kickstart-install-script/m-p/254441#M207571</guid>
      <dc:creator>mrogers</dc:creator>
      <dc:date>2011-10-30T18:47:40Z</dc:date>
    </item>
  </channel>
</rss>

