<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: ATG Installation on OS X</title>
	<atom:link href="http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html</link>
	<description>Java, ATG, Seam, and related Technologies</description>
	<pubDate>Sat, 22 Nov 2008 17:04:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Chuck</title>
		<link>http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html#comment-5141</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Fri, 18 Apr 2008 20:07:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html#comment-5141</guid>
		<description>I was able to install and patch ATG 2007.1 with the following as my config.xml (the short story is that I installed ATG2007.1 in Parallels on an XP virtual machine and copied the config.xml and edited it for the Mac)

&lt;pre lang="xml"&gt;
&#60;?xml version="1.0" encoding="UTF-8"?&#62;
&#60;config xmlns="*"&#62;
   &#60;install xmlns=""&#62;
       &#60;product name="ATG Adaptive Scenario Engine" version="2007.1"&#62;
           &#60;configure&#62;false&#60;/configure&#62;
       &#60;/product&#62;
       &#60;product name="ATG Consumer Commerce" version="2007.1"&#62;
           &#60;configure&#62;false&#60;/configure&#62;
       &#60;/product&#62;
       &#60;product name="ATG Content Administration" version="2007.1"&#62;
           &#60;configure&#62;false&#60;/configure&#62;
       &#60;/product&#62;
       &#60;product name="ATG Portal" version="2007.1"&#62;
           &#60;configure&#62;false&#60;/configure&#62;
       &#60;/product&#62;
       &#60;product name="ATG Business Commerce" version="2007.1"&#62;
           &#60;configure&#62;false&#60;/configure&#62;
       &#60;/product&#62;
   &#60;/install&#62;
   &#60;systemEnv xmlns=""&#62;
       &#60;rootDir&#62;/opt/atg/ATG2007.1&#60;/rootDir&#62;
       &#60;locale&#62;en&#60;/locale&#62;
       &#60;jBossListenPort&#62;8080&#60;/jBossListenPort&#62;
       &#60;docRoot&#62;/opt/atg/ATG2007.1/home/doc&#60;/docRoot&#62;
       &#60;platform&#62;Darwin&#60;/platform&#62;
       &#60;rmiPort&#62;8860&#60;/rmiPort&#62;
       &#60;appServer&#62;JBoss&#60;/appServer&#62;
       &#60;jBossHome&#62;/opt/jboss/current&#60;/jBossHome&#62;
       &#60;jBossVersion&#62;4.0.5&#60;/jBossVersion&#62;
       &#60;baseLevel&#62;ATG2007.1_228&#60;/baseLevel&#62;
&#60;ATGJRE&#62;/System/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/bin/java&#60;/ATGJRE&#62;
   &#60;/systemEnv&#62;
&#60;/config&#62;
&lt;/pre&gt;

To get ATG to recognize the Darwin platform, you will need to edit your $DYNAMO_HOME/bin/dynamoEnv.sh as outlines in ATG Solution atg33147 (http://www.atg.com/service/main.jsp;jsessionid=UGL1VTVN5H3DUCQCQCZCGWQKAKAGOJVC?_dyncharset=ISO-8859-1&#38;t=solutionTab&#38;solutionId=atg33147)  and create the $DYNAMO_HOME/home/localconfig/dasEnv.sh as outlined in step 4 in the following URL: http://blog.pulleman.com/2007/03/25/atg-jboss-and-mysql-on-mac-os-x/

Good luck....</description>
		<content:encoded><![CDATA[<p>I was able to install and patch ATG 2007.1 with the following as my config.xml (the short story is that I installed ATG2007.1 in Parallels on an XP virtual machine and copied the config.xml and edited it for the Mac)</p>
<pre lang="xml">
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;config xmlns="*"&gt;
   &lt;install xmlns=""&gt;
       &lt;product name="ATG Adaptive Scenario Engine" version="2007.1"&gt;
           &lt;configure&gt;false&lt;/configure&gt;
       &lt;/product&gt;
       &lt;product name="ATG Consumer Commerce" version="2007.1"&gt;
           &lt;configure&gt;false&lt;/configure&gt;
       &lt;/product&gt;
       &lt;product name="ATG Content Administration" version="2007.1"&gt;
           &lt;configure&gt;false&lt;/configure&gt;
       &lt;/product&gt;
       &lt;product name="ATG Portal" version="2007.1"&gt;
           &lt;configure&gt;false&lt;/configure&gt;
       &lt;/product&gt;
       &lt;product name="ATG Business Commerce" version="2007.1"&gt;
           &lt;configure&gt;false&lt;/configure&gt;
       &lt;/product&gt;
   &lt;/install&gt;
   &lt;systemEnv xmlns=""&gt;
       &lt;rootDir&gt;/opt/atg/ATG2007.1&lt;/rootDir&gt;
       &lt;locale&gt;en&lt;/locale&gt;
       &lt;jBossListenPort&gt;8080&lt;/jBossListenPort&gt;
       &lt;docRoot&gt;/opt/atg/ATG2007.1/home/doc&lt;/docRoot&gt;
       &lt;platform&gt;Darwin&lt;/platform&gt;
       &lt;rmiPort&gt;8860&lt;/rmiPort&gt;
       &lt;appServer&gt;JBoss&lt;/appServer&gt;
       &lt;jBossHome&gt;/opt/jboss/current&lt;/jBossHome&gt;
       &lt;jBossVersion&gt;4.0.5&lt;/jBossVersion&gt;
       &lt;baseLevel&gt;ATG2007.1_228&lt;/baseLevel&gt;
&lt;ATGJRE&gt;/System/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/bin/java&lt;/ATGJRE&gt;
   &lt;/systemEnv&gt;
&lt;/config&gt;
</pre>
<p>To get ATG to recognize the Darwin platform, you will need to edit your $DYNAMO_HOME/bin/dynamoEnv.sh as outlines in ATG Solution atg33147 (http://www.atg.com/service/main.jsp;jsessionid=UGL1VTVN5H3DUCQCQCZCGWQKAKAGOJVC?_dyncharset=ISO-8859-1&amp;t=solutionTab&amp;solutionId=atg33147)  and create the $DYNAMO_HOME/home/localconfig/dasEnv.sh as outlined in step 4 in the following URL: <a href="http://blog.pulleman.com/2007/03/25/atg-jboss-and-mysql-on-mac-os-x/" rel="nofollow">http://blog.pulleman.com/2007/03/25/atg-jboss-and-mysql-on-mac-os-x/</a></p>
<p>Good luck&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell</title>
		<link>http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html#comment-2637</link>
		<dc:creator>Russell</dc:creator>
		<pubDate>Fri, 16 Nov 2007 09:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalsanctuary.com/tech-blog/java/atg/atg-installation-on-os-x.html#comment-2637</guid>
		<description>one issue with copying the Solaris install - 
somewhere deep inside the Service module, there are some images - two to be specific. Solaris file systems is case sensitive, while default OS X is not. These images have the same name in the same directory except for capitalization.

So I installed ATG on the Solaris image, copied the install to the shared folder so I could mount it in OS X &#38; copy it over - copied the huge bugger over, and boom! fails. 

Fix one, and it will happen one more time. Fix that, and you're golden. Doesn't matter which of the images you delete, just delete one. Wish I had kept track of the actual files for this post</description>
		<content:encoded><![CDATA[<p>one issue with copying the Solaris install -<br />
somewhere deep inside the Service module, there are some images - two to be specific. Solaris file systems is case sensitive, while default OS X is not. These images have the same name in the same directory except for capitalization.</p>
<p>So I installed ATG on the Solaris image, copied the install to the shared folder so I could mount it in OS X &amp; copy it over - copied the huge bugger over, and boom! fails. </p>
<p>Fix one, and it will happen one more time. Fix that, and you&#8217;re golden. Doesn&#8217;t matter which of the images you delete, just delete one. Wish I had kept track of the actual files for this post</p>
]]></content:encoded>
	</item>
</channel>
</rss>
