<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
        <title>dimer.tamu.edu</title>
        <link>http://dimer.tamu.edu/simplog/index.php?blogid=1</link>
        <description>blogging the tweaking of a server</description>
        <language>en-us</language>
        <managingEditor>jimhu@tamu.edu(Jim Hu)</managingEditor>
        <webMaster>jimhu@tamu.edu(Jim Hu)</webMaster>
        <lastBuildDate>Wed, 03 Sep 2008 20:02:54 -0500</lastBuildDate>
	<atom:link href="http://dimer.tamu.edu/simplog/rss2.php?blogid=1" rel="self" type="application/rss+xml" />        
        <item>
            <title>Manatee on genomics03</title>
            <description># adjust httpd.conf 
sudo -s  
emacs /etc/apache2/httpd.conf  
 
insert the following near beginning (above #Serverroot) 
&lt;code&gt;#manatee extras 
setenv WEBSERVER_TMP /tmp 
ScriptAlias /tigr-scripts/ &quot;/Library/WebServer/CGI-Executables/&quot; 
Alias /webserver_tmp/ &quot;/tmp/&quot; 
&amp;lt;Directory &quot;/tmp&quot;&gt; 
   Allow from all 
&amp;lt;/Directory&gt; 
&lt;/code&gt; 


apachectl restart 
 
On genomics02 in /Downloads 
make tgz for manatee already modified 
scp manatee_mac.tgz genomics03.bio.tamu.edu: 
 
On genomics03 
copy back to /Downloads 
untar 
./install_perl.pl 
 
in phpmyadmin, create manatee user 
 
configure failed - need Date:Manip 
install from CPAN 
./configure HTTPD_SERVER_CONFIG_FILE=/etc/apache2/httpd.conf HTTPD_DOC_HOME=/Library/WebServer/Documents  
make 
make install 
 
#install demo db 
On genomics02, scp database_install_mac.tgz to genomics03 
copy to /Downloads 
untar  
cd into itc 
./install_demo /usr/local/mysql/data/ /usr/local/search_data mysql5 
 
Not working... 

reinstall 32 bit mySQL over 64 bit version 5.0.67

cd to ~jimhu/.cpan/build/DBD-xxx 

perl Makefile.PL --testuser=&lt;user&gt; --testpassword=&lt;passwd&gt; --mysql_config=/usr/local/mysql/bin/mysql_config 

make
make test
make install</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6480</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6480</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6480</comments>
            <pubDate>Wed, 03 Sep 2008 20:02:54 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee on genomics03            </source>
        </item>
        <item>
            <title>chado version of Manatee</title>
            <description>Move and install files in CGI-executables and Documents/tdb for chado_prok_manatee 
 
Put data in /usr/local/manatee/data 
 
symlink: sudo ln -s /usr/bin/perl perl 
 
 
 </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6479</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6479</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6479</comments>
            <pubDate>Wed, 27 Aug 2008 09:46:53 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                chado version of Manatee            </source>
        </item>
        <item>
            <title>Install Manatee demo dbs for class iMacs</title>
            <description>History: 
 
173  cd database_install 
174  ls -G 
175  ./install_demo /usr/local/mysql/data/ /usr/local/search_data mysql5 
176  cd /usr/local/mysql/data/ 
177  ls -lG 
178  chown -R _mysql * 
 
Seems to work! </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6478</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6478</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6478</comments>
            <pubDate>Wed, 27 Aug 2008 01:27:47 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Install Manatee demo dbs for class iMacs            </source>
        </item>
        <item>
            <title>Manatee on class imacs</title>
            <description>Starting on genomics02 
Edit the httpd.conf 
restart apache: apachectl restart 
 
curl -o ftp://ftp.tigr.org/pub/data/manatee/database_installation/database_install.tgz  
 
failed.  Transferred from my laptop using scp 
 
Check for expat - need it. transferred from laptop, installed with ./configure, make. make install. 
 
copy and unpack manatee source distro 
./install_perl.pl - installs needed modules (I hope). 
 
edit  
configure 
 
line 1455 
MYSQLSERVER=`ps -ax | grep '$MYSQLD'`  
 
also added a semicolon after line 1459 to give: 
 
MYSQL_ISRUNNING=1; 
 
install_src (remove final slashes) 
cp -R $SRCDIR $DESTDIR 
 
Manatee.conf in both euk and prok Manatee 
GZCAT=/usr/bin/zcat  
GUNZIP=/usr/bin/gunzip  
 
bash-3.2# ./configure HTTPD_SERVER_CONFIG_FILE=/etc/apache2/httpd.conf HTTPD_DOC_HOME=/Library/WebServer/Documents HTTPD_SCRIPT_HOME=/Library/WebServer/CGI-Executables 
 
previously, had extra spaces around '=' 
 
&lt;a href=&quot;http://genomics02.bio.tamu.edu/tdb/prok_manatee/&quot; target=&quot;_blank&quot;&gt;http://genomics02.bio.tamu.edu/tdb/prok_manatee/&lt;/a&gt;  
 
redirects correctly!! whoop! 
 
Now need to install demo db and chado db 
 
 
 </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6477</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6477</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6477</comments>
            <pubDate>Wed, 27 Aug 2008 01:10:10 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee on class imacs            </source>
        </item>
        <item>
            <title>genomics04, genomics05</title>
            <description>cd to /Downloads 
sudo -s 
install libgd without freetype 
perl -MCPAN -e shell 
install Bundle::CPAN 
install LWP::Simple 
force install GD 
oops, forgot to adjust the path </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6476</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6476</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6476</comments>
            <pubDate>Mon, 25 Aug 2008 20:47:21 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                genomics04, genomics05            </source>
        </item>
        <item>
            <title>Bioperl and gbrowse</title>
            <description>on genomics02 
Do Bioperl from svn 
 
$ svn co svn://code.open-bio.org/bioperl/bioperl-live/trunk bioperl-live
 
./Build 
./Build test 
./Build install 
 
then do the net install script 
 
fails due to GD problem.   
 
Try this on genomics03, which hasn't had fink stuff. 
 
install Bundle::CPAN to make sure we're up to date 
install LWP::Simple 
install GD 
 
need to do libpng and libgd apparently. 

do installations ./configure, make, make install
force install GD on cpan

---- 
back to 02 
export PATH=/usr/local/bin:$PATH 
seems to solve GD problem... sort of... 
but gbrowse still not working...
Can't locate object method &quot;Tiny&quot; via package &quot;GD::Font&quot; 
 
----
Solution: recompile libgd without freetype ./configure --without-freetype           </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6475</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6475</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
      <category>BioPerl</category>            <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6475</comments>
            <pubDate>Mon, 25 Aug 2008 19:51:45 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Bioperl and gbrowse            </source>
        </item>
        <item>
            <title>MAKER continued</title>
            <description>check the CPAN prereqs 
 
*URI:Escape 
*threads v1.71 or higher (only needed for mpi_maker, otherwise ignore this) 
 
Have these already 
 
mpi_maker 
 
&lt;a href=&quot;http://www.mcs.anl.gov/research/projects/mpich2/&quot; target=&quot;_blank&quot;&gt;http://www.mcs.anl.gov/research/projects/mpich2/&lt;/a&gt; 
 
install with  
./configure --enable-sharedlibs=osx-gcc 

done..

now what?</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6449</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6449</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6449</comments>
            <pubDate>Thu, 07 Aug 2008 22:26:23 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                MAKER continued            </source>
        </item>
        <item>
            <title>Exonerate - needed for MAKER</title>
            <description>&lt;a href=&quot;http://www.ebi.ac.uk/~guy/exonerate/&quot; target=&quot;_blank&quot;&gt;http://www.ebi.ac.uk/~guy/exonerate/&lt;/a&gt; 
 
./configure 
 
failed - needs glib2 
 
&lt;a href=&quot;http://www.gtk.org/download.html&quot; target=&quot;_blank&quot;&gt;http://www.gtk.org/download.html&lt;/a&gt; 
 
Is this it?  Not exactly.  Need subversion checkout 
 
svn checkout &lt;a href=&quot;http://svn.gnome.org/svn/glib/trunk&quot; target=&quot;_blank&quot;&gt;http://svn.gnome.org/svn/glib/trunk&lt;/a&gt; glib No... 
 
&lt;a href=&quot;http://ftp.gnome.org/pub/GNOME/sources/glib/2.16/&quot; target=&quot;_blank&quot;&gt;http://ftp.gnome.org/pub/GNOME/sources/glib/2.16/&lt;/a&gt; 
 
Looks better.. but now I need something else... 
 
&lt;a href=&quot;http://www.freedesktop.org/software/pkgconfig/&quot; target=&quot;_blank&quot;&gt;http://www.freedesktop.org/software/pkgconfig/&lt;/a&gt; 
 
Installing pkgconfig seemed to go OK.  Now I need

http://www.gnu.org/software/gettext/gettext.html

Found at Texas mirror http://gnu.inetbridge.net/gettext/

OK, exonerate installed
Downloaded v 017
The installation of this takes a long time, it seems!

OK, now I can do glib2

I think these worked, but I'm not sure...


</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6448</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6448</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6448</comments>
            <pubDate>Thu, 07 Aug 2008 22:26:03 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Exonerate - needed for MAKER            </source>
        </item>
        <item>
            <title>Repeatmasker</title>
            <description>This is needed for MAKER 
Has prereq TRF 
 
&lt;a href=&quot;http://tandem.bu.edu/trf/trf.download.html&quot; target=&quot;_blank&quot;&gt;http://tandem.bu.edu/trf/trf.download.html&lt;/a&gt; 
 
Downloaded the leopard version. placed in /usr/local/TRF 
symlinked 
 
Repeatmasker config seems to have worked... </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6447</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6447</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6447</comments>
            <pubDate>Thu, 07 Aug 2008 20:20:48 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Repeatmasker            </source>
        </item>
        <item>
            <title>MAKER</title>
            <description>let's also try to set up &lt;a href='http://www.yandell-lab.org/software/index.html'&gt;Mark Yandell's MAKER&lt;/a&gt; on my laptop. 
 
Install wu-blast in /usr/local/wu-blast 
 
download SNAP from &lt;a href=&quot;http://homepage.mac.com/iankorf/&quot; target=&quot;_blank&quot;&gt;http://homepage.mac.com/iankorf/&lt;/a&gt; 
make.  
moved to usr/local/snap 
export ZOE=/usr/local/snap/Zoe 
 
That's it?  Test with: 
&lt;code&gt;./snap HMM/thale DNA/thale.dna.gz 
scoring.....decoding.10.20.30.40.50.60.70.80.90.100 done 
scoring.....decoding.10.20.30.40.50.60.70.80.90.100 done 
&gt;At1g01040.0 
Einit 1007 1954 + 85.269 0 0 1 At1g01040.0-snap.1 
Exon 2024 2137 + 8.926 0 0 1 At1g01040.0-snap.1 
Exon 2234 2444 + 20.788 0 1 1 At1g01040.0-snap.1 
Exon 2523 2917 + 35.162 2 0 1 At1g01040.0-snap.1 
Exon 3006 3225 + 34.428 0 1 2 At1g01040.0-snap.1 
Exon 3307 3479 + 14.790 2 0 2 At1g01040.0-snap.1 
Exon 3563 3685 + 4.678 0 0 1 At1g01040.0-snap.1 
Exon 3774 3934 + 10.179 0 2 2 At1g01040.0-snap.1 
Exon 4025 4258 + 25.991 1 2 2 At1g01040.0-snap.1 
Exon 4344 4506 + 4.289 1 0 0 At1g01040.0-snap.1 
Exon 4581 4763 + 28.696 0 0 2 At1g01040.0-snap.1 
Exon 4854 5015 + 15.217 0 0 2 At1g01040.0-snap.1 
Exon 5100 5195 + 23.205 0 0 2 At1g01040.0-snap.1 
Eterm 5285 5917 + 45.878 0 0 1 At1g01040.0-snap.1 
Einit 6086 6144 + 6.596 0 2 1 At1g01040.0-snap.2 
Exon 6190 6287 + 22.495 1 1 1 At1g01040.0-snap.2 
Exon 6372 6562 + 17.809 2 0 1 At1g01040.0-snap.2 
Exon 6642 6803 + 16.407 0 0 2 At1g01040.0-snap.2 
Exon 6828 7547 + 69.159 0 0 2 At1g01040.0-snap.2 
Exon 7629 7793 + 40.262 0 0 2 At1g01040.0-snap.2 
Exon 7892 8298 + 46.310 0 2 1 At1g01040.0-snap.2 
Eterm 8384 8561 + 17.079 1 0 2 At1g01040.0-snap.2 
&lt;/code&gt; 
I guess that's good... 
 
Repeatmasker: 
&lt;a href=&quot;http://www.repeatmasker.org/RMDownload.html&quot; target=&quot;_blank&quot;&gt;http://www.repeatmasker.org/RMDownload.html&lt;/a&gt; 
 
Wow, the latest release is from today!

Finding the libraries on the GIRI site was a bit nonobvious... they're in the RepBase section: http://www.girinst.org/server/RepBase/index.php

Getting this requires registration, which is reviewed - takes 1-2 days... I guess I'll see if I can get the other stuff in the meantime.</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6446</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6446</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6446</comments>
            <pubDate>Thu, 07 Aug 2008 20:09:35 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                MAKER            </source>
        </item>
        <item>
            <title>Manatee - what breaks now</title>
            <description>Tried to search protein name for &quot;hsp70&quot; got blank result.  Clicked on gene_name and got a crash 
 
&lt;a href=&quot;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi?db=gvc&amp;sortby=gene_name&amp;search_str=hsp70&amp;search_type=gene%20name&quot; target=&quot;_blank&quot;&gt;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi?db=gvc&amp;sortby=gene_name&amp;search_str=hsp70&amp;search_type=gene%20name&lt;/a&gt; 
 
&lt;blockquote&gt;[Thu Aug 07 11:32:01 2008] [error] [client ::1] [Thu Aug  7 11:32:01 2008] search_ident.cgi: could not find ParserDetails.ini in /Library/Perl/5.8.8/XML/SAX, referer: &lt;a href=&quot;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&quot; target=&quot;_blank&quot;&gt;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&lt;/a&gt; 
[Thu Aug 07 11:32:02 2008] [error] [client ::1] Can't use an undefined value as an ARRAY reference at shared/Coati/Sorters.pm line 32., referer: &lt;a href=&quot;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&quot; target=&quot;_blank&quot;&gt;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&lt;/a&gt; 
[Thu Aug 07 11:32:02 2008] [error] [client ::1] Premature end of script headers: search_ident.cgi, referer: &lt;a href=&quot;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&quot; target=&quot;_blank&quot;&gt;http://localhost/cgi-bin/tigr-scripts/prok_manatee/search_ident.cgi&lt;/a&gt; 
&lt;/blockquote&gt; 
This looks like a validation bug, actually. </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6442</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6442</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6442</comments>
            <pubDate>Thu, 07 Aug 2008 11:36:08 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee - what breaks now            </source>
        </item>
        <item>
            <title>Manatee - current status</title>
            <description>Needed new MySQL 
Patches to configure may not have been sufficient, but basic core works after copying prok-manatee to CGI-executables and tweaking the files. 
Mostly had to adjust the more than 100 places where the cgi-bin was missing from a file path. 
Had to adjust permissions on /tmp 
Still need to do some path adjustment - would help to understand where the paths are kept. 
&lt;ul&gt; 
&lt;li&gt;some are specified by some xml files&lt;/li&gt; 
&lt;li&gt;others are hard-coded&lt;/li&gt; 
&lt;/ul&gt; 
 Some solutions may be in: http://manatee.sourceforge.net/troubleshooting.shtml
 
Modifying httpd.conf gets the ORF view to work.
Modified permissions on the manatee directory in /usr/local to see the data files.
Changed conf to correct gzcat /usr/bin/gzcat, not /usr/local/bin/gzcat

Wondering if there is a way to test all without manually clicking every link...</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6441</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6441</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6441</comments>
            <pubDate>Thu, 07 Aug 2008 11:33:30 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee - current status            </source>
        </item>
        <item>
            <title>Manatee installation - progress!</title>
            <description>It looks like there was a problem with some Perl module and the version of MySQL I had (mysql-standard-5.0.24-osx10.3-powerpc, presumably runningin emulation mode).  Installed 5.0.51b and moved the data directory.   
 
After this, login.cgi redirected to gateway.cgi, but the URL is wrong. Correcting it by hand gave a Manatee welcome screen. 
 
I also did cpan upgrade to make sure all modules were up to date. 
 
But... all this worked before I left work and it's failing from home. 
 
&lt;code&gt;[Wed Aug 06 23:27:43 2008] [error] [client ::1] Died with 'Invalid username/password/db access %%Database login%%The database server [hu-pismo.tamu.edu] denied access to the username [manatee].  Please check the username/password and confirm you have permissions to access the [gvc] database%%Can't connect to MySQL server on 'hu-pismo.tamu.edu' (60)%%gvc 
&lt;/code&gt; 
 
I suspect something weird with hostnames - off the tamu network, I suspect that hu-pismo.tamu.edu doesn't mean anything.  Changed to localhost - seems to get the Welcome screen back. 
 
Searching from there gives a bad URL. 
 
Searched for &quot;/tigr-scripts and replaced with &quot;/cgi-bin/tigr-scripts in 106 places... but that didn't fix things.  I think the docs want me to do a redirect in the apache conf file... which I'd rather avoid.  OK, repeating the search replace with single quotes helps. 

But its not enough.  ORF_infopage.cgi?db=gvc&amp;orf=ORFA00901 can't find the png file.  </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6440</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6440</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6440</comments>
            <pubDate>Thu, 07 Aug 2008 10:56:29 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee installation - progress!            </source>
        </item>
        <item>
            <title>Manatee - source install continued</title>
            <description>&lt;blockquote&gt;edit config file src/prok_manatee/conf/Manatee.conf:   
GZCAT=/usr/bin/zcat  
GUNZIP=/usr/bin/gunzip  
# both conffiles will have the full hostname of the local machine as db server   
# other optional settings in both: CLUSTALW, SIGNAL_P paths, IPRSCAN_DIR  
 &lt;/blockquote&gt; 
Weirdness:
&lt;blockquote&gt;bash-3.2# make
Converting perl path where needed to /usr/bin/perl
bash-3.2# make install
make: `install' is up to date.
&lt;/blockquote&gt;
based on http://cygwin.com/ml/cygwin-xfree/2001-q3/msg01084.html

&lt;code&gt;bash-3.2# mv INSTALL INSTALL2
bash-3.2# make install
Found content directory
Installing euk_manatee scripts
usage: touch [-acfm] [-r file] [-t [[CC]YY]MMDDhhmm[.SS]] file ...
Installing euk_manatee content
Saving previous script install to /Library/WebServer/Documents/tdb/euk_manatee.old
Installing prok_manatee scripts
usage: touch [-acfm] [-r file] [-t [[CC]YY]MMDDhhmm[.SS]] file ...
Installing prok_manatee content
Saving previous script install to /Library/WebServer/Documents/tdb/prok_manatee.old


--------------------------------------------------
**The euk_manatee configuration file resides at 

/euk_manatee/conf/Manatee.conf 

Please confirm settings in the configuration file before continuing.
**The prok_manatee configuration file resides at 

/prok_manatee/conf/Manatee.conf 

Please confirm settings in the configuration file before continuing.
--------------------------------------------------
After configuration is complete, enter the following URLs to begin using Manatee
For eukaryotic databases
http://SERVER:PORT/tdb/euk_manatee/
For prokaryotic databases
http://SERVER:PORT/tdb/prok_manatee/

See http://manatee.sourceforge.net/installation.html for more installation information&lt;/code&gt;
But this is still hosed.  Nothing got copied to cgi-bin, and the redirect doesn't have cgi-bin in the path.

Manually copy prok_manatee to CGI-executables, and navigate to:

http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi

I get a login screen.

Tried to login using manatee:manatee and common as db.  White screen -&gt; error log:

[Tue Aug 05 15:34:49 2008] [error] [client ::1] dyld: lazy symbol binding failed: Symbol not found: _mysql_server_init, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1]   Referenced from: /Library/Perl/5.8.8/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1]   Expected in: dynamic lookup, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1] , referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1] dyld: Symbol not found: _mysql_server_init, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1]   Referenced from: /Library/Perl/5.8.8/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1]   Expected in: dynamic lookup, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:34:49 2008] [error] [client ::1] , referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi

added -w flag to login.cgi:

&lt;blockquote&gt;[Tue Aug 05 15:38:25 2008] [error] [client ::1] &quot;my&quot; variable $ipr_obj masks earlier declaration in same scope at Manatee/GetInterPro.pm line 185., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:25 2008] [error] [client ::1] Subroutine search_properties_by_name redefined at Manatee.pm line 1648., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:25 2008] [error] [client ::1] Subroutine search_properties_by_role redefined at Manatee.pm line 1676., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:25 2008] [error] [client ::1] Subroutine search_properties_by_GO redefined at Manatee.pm line 1704., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:25 2008] [error] [client ::1] &quot;my&quot; variable $ev_type masks earlier declaration in same scope at Manatee.pm line 2575., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:25 2008] login.cgi: Odd number of elements in hash assignment at Coati/Logger.pm line 89., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: &quot;my&quot; variable $url masks earlier declaration in same scope at /Library/WebServer/CGI-Executables/tigr-scripts/prok_manatee/shared/login.cgi line 135., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Useless use of reference constructor in void context at ..//Manatee/ProkManateeDB.pm line 159., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: &quot;my&quot; variable $query masks earlier declaration in same scope at ..//Manatee/ProkManateeDB.pm line 347., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: &quot;my&quot; variable $ret masks earlier declaration in same scope at ../shared/Coati/Coati/ProkCoatiDB.pm line 316., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Subroutine get_gene_id_to_frameshifts redefined at ../shared/Coati/Coati/ProkCoatiDB.pm line 632., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Subroutine get_db_to_roles redefined at ../shared/Coati/Coati/ProkCoatiDB.pm line 1015., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: &quot;my&quot; variable $query masks earlier declaration in same scope at ../shared/Coati/Coati/ProkCoatiDB.pm line 1688., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Use of uninitialized value in concatenation (.) or string at Manatee.pm line 69., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Use of uninitialized value in concatenation (.) or string at Manatee.pm line 69., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:26 2008] [error] [client ::1] [Tue Aug  5 15:38:26 2008] login.cgi: Use of uninitialized value in concatenation (.) or string at Manatee.pm line 69., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] [Tue Aug  5 15:38:27 2008] login.cgi: Use of uninitialized value in string ne at ..//Manatee/GetManateeTemplate.pm line 76., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] [Tue Aug  5 15:38:27 2008] login.cgi: Use of uninitialized value in string ne at ..//Manatee/GetManateeTemplate.pm line 88., referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] dyld: lazy symbol binding failed: Symbol not found: _mysql_server_init, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1]   Referenced from: /Library/Perl/5.8.8/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1]   Expected in: dynamic lookup, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] , referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] dyld: Symbol not found: _mysql_server_init, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1]   Referenced from: /Library/Perl/5.8.8/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1]   Expected in: dynamic lookup, referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
[Tue Aug 05 15:38:27 2008] [error] [client ::1] , referer: http://localhost/cgi-bin/tigr-scripts/prok_manatee/shared/login.cgi
&lt;/blockquote&gt;</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6439</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6439</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6439</comments>
            <pubDate>Tue, 05 Aug 2008 15:39:47 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee - source install continued            </source>
        </item>
        <item>
            <title>Manatee - source install again continued</title>
            <description>Change correction from double quotes to single quotes 
 
MYSQLSERVER=`ps -ax | grep '$MYSQLD'` 

also added a semicolon after line 1459 to give:

      MYSQL_ISRUNNING=1;

 
&lt;code&gt;bash-3.2# ./configure HTTPD_SERVER_CONFIG_FILE = /etc/apache2/httpd.conf HTTPD_DOC_HOME = /Library/WebServer/Documents HTTPD_SCRIPT_HOME = /Library/WebServer/CGI-Executables
configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /etc/apache2/httpd.conf
configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /Library/WebServer/Documents
configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /Library/WebServer/CGI-Executables
checking for perl... /usr/bin/perl
checking for httpd... /usr/sbin/httpd
checking for /private/etc/apache2/httpd.conf... yes
   60 ??         0:11.48 /usr/sbin/httpd -D FOREGROUND
   63 ??         0:23.55 /usr/sbin/httpd -D FOREGROUND
  219 ??         0:20.31 /usr/sbin/httpd -D FOREGROUND
 4719 ??         0:20.16 /usr/sbin/httpd -D FOREGROUND
10922 ??         0:24.35 /usr/sbin/httpd -D FOREGROUND
10924 ??         0:16.75 /usr/sbin/httpd -D FOREGROUND
10925 ??         0:24.30 /usr/sbin/httpd -D FOREGROUND
15864 ttys000    0:00.00 grep /usr/sbin/httpd
checking for mysql... /usr/local/mysql/bin/mysql
checking for safe_mysqld... /usr/local/mysql/bin/safe_mysqld
configure: WARNING: /usr/local/mysql/bin/safe_mysqld is running on this server. Saving default mysql host  hu-pismo.tamu.edu  in conf/Manatee.conf
checking for perl module CGI... yes
checking for perl module DBI... yes
checking for perl module DBD::mysql... yes
checking for perl module XML::Parser... yes
checking for perl module XML::Twig... yes
checking for perl module XML::Simple... yes
checking for perl module XML::Writer... yes
checking for perl module HTML::Template... yes
checking for perl module Tree::DAG_Node... yes
checking for perl module File::Spec... yes
checking for perl module GD... yes
checking for perl module GD::Text... yes
checking for perl module GD::Graph... yes
checking for perl module Storable... yes
checking for perl module Date::Manip... yes
checking for perl module IO::Tee... yes
checking for perl module Log::Log4perl... yes
checking for perl module MLDBM... yes
checking for perl module DBD::Sybase... no
checking for src/euk_manatee/conf/Manatee.conf... yes
checking for src/prok_manatee/conf/Manatee.conf... yes
configure: creating ./config.status
config.status: creating stamp-h
config.status: creating Makefile
bash-3.2# 

&lt;/code&gt; 
This is still throwing warnings, but detecting mysqld is a step in the right direction. I'm concerned about the one for line 597</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6438</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6438</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6438</comments>
            <pubDate>Tue, 05 Aug 2008 15:05:09 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee - source install again continued            </source>
        </item>
        <item>
            <title>Manatee - source install (again)</title>
            <description>I've done this before, but need to try it again... 
From manatee expanded archive, modify notes at: 
 
&lt;a href=&quot;http://sourceforge.net/forum/forum.php?thread_id=1562985&amp;forum_id=394634&quot; target=&quot;_blank&quot;&gt;http://sourceforge.net/forum/forum.php?thread_id=1562985&amp;forum_id=394634&lt;/a&gt; 
 
&lt;blockquote&gt;hack configure script line 1457 to use ps ax | grep ... | grep -v grep  
and quote the variable, so it detects mysqld running.  
&lt;/blockquote&gt; 
This seems to be line 1455 in the current release.  Changed to

MYSQLSERVER=`ps -ax | grep &quot;$MYSQLD&quot;`

&lt;blockquote&gt;hack install_src: change cp -R $SRCDIR/ ... to ... $SRCDIR ...  
(OS X cp -R is like rsync)  
mv INSTALL INSTALL.txt # Makefile target...  
./configure MYSQLD=/sw/bin/mysqld_safe HTTPD=/sw/sbin/httpd  
(don't let it use apache1 /usr/sbin/httpd) &lt;/blockquote&gt;
I read that as saying remove the final / after SRCDIR and DESTDIR:

cp -R $SRCDIR $DESTDIR


From shell:
 ./configure HTTPD_SERVER_CONFIG_FILE = /etc/apache2/httpd.conf HTTPD_DOC_HOME = /Library/WebServer/Documents HTTPD_SCRIPT_HOME = /Library/WebServer/CGI-Executables


&lt;code&gt;configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /etc/apache2/httpd.conf
configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /Library/WebServer/Documents
configure: WARNING: you should use --build, --host, --target
./configure: line 597: =: command not found
export DISPLAY=&quot;/tmp/launch-R7t2bC/:0&quot;
export EDITOR=&quot;emacs&quot;
export HOME=&quot;/Users/jimhu&quot;
export LOGNAME=&quot;root&quot;
export OLDPWD
export PATH=&quot;/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/user/local/graphviz/bin&quot;
export PWD=&quot;/Users/jimhu/genomics installs/manatee&quot;
export SHELL=&quot;/bin/sh&quot;
export SHLVL=&quot;2&quot;
export SSH_AUTH_SOCK=&quot;/tmp/launch-X8zHv0/Listeners&quot;
export SUDO_COMMAND=&quot;/bin/bash&quot;
export SUDO_GID=&quot;501&quot;
export SUDO_UID=&quot;501&quot;
export SUDO_USER=&quot;jimhu&quot;
export TERM=&quot;xterm-color&quot;
export USER=&quot;root&quot;
export __CF_USER_TEXT_ENCODING=&quot;0x1F5:0:0&quot;
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /Library/WebServer/CGI-Executables
checking for perl... /usr/bin/perl
checking for httpd... /usr/sbin/httpd
checking for /private/etc/apache2/httpd.conf... yes
   60 ??         0:11.46 /usr/sbin/httpd -D FOREGROUND
   63 ??         0:23.55 /usr/sbin/httpd -D FOREGROUND
  219 ??         0:20.31 /usr/sbin/httpd -D FOREGROUND
 4719 ??         0:20.16 /usr/sbin/httpd -D FOREGROUND
10922 ??         0:24.35 /usr/sbin/httpd -D FOREGROUND
10924 ??         0:16.75 /usr/sbin/httpd -D FOREGROUND
10925 ??         0:24.30 /usr/sbin/httpd -D FOREGROUND
15031 ttys000    0:00.00 grep /usr/sbin/httpd
checking for mysql... /usr/local/mysql/bin/mysql
checking for safe_mysqld... /usr/local/mysql/bin/safe_mysqld
./configure: line 1457: test: too many arguments
checking for perl module CGI... yes
checking for perl module DBI... yes
checking for perl module DBD::mysql... yes
checking for perl module XML::Parser... yes
checking for perl module XML::Twig... yes
checking for perl module XML::Simple... yes
checking for perl module XML::Writer... yes
checking for perl module HTML::Template... yes
checking for perl module Tree::DAG_Node... yes
checking for perl module File::Spec... yes
checking for perl module GD... yes
checking for perl module GD::Text... yes
checking for perl module GD::Graph... yes
checking for perl module Storable... yes
checking for perl module Date::Manip... yes
checking for perl module IO::Tee... yes
checking for perl module Log::Log4perl... yes
checking for perl module MLDBM... yes
checking for perl module DBD::Sybase... no
checking for src/euk_manatee/conf/Manatee.conf... yes
checking for src/prok_manatee/conf/Manatee.conf... yes
configure: creating ./config.status
config.status: creating stamp-h
config.status: creating Makefile
&lt;/code&gt;
I see an error for line 597 and several warnings
</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6437</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6437</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6437</comments>
            <pubDate>Tue, 05 Aug 2008 14:59:50 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee - source install (again)            </source>
        </item>
        <item>
            <title>Manatee cont.  Sample dbs</title>
            <description>These will get replaced with Chado, but need for testing. 
 
Download from ftp://ftp.tigr.org/pub/data/manatee/database_installation/database_install.tgz 
 
I don't like the way this installer works - should use SQL dump not filecopy!! 

sudo ./install_demo /usr/local/mysql /usr/local/manatee mysql5

This is running a long time... wonder what's up...OK, it's back...but the files weren't copied.

sudo -s
cd /usr/local/mysql/data
cp -R ~/genomics installs/database_install/mysql5/* .
chown -R _mysql *

Note: there is no README file, despite the docs saying to consult it.</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6436</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6436</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6436</comments>
            <pubDate>Tue, 05 Aug 2008 16:09:30 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee cont.  Sample dbs            </source>
        </item>
        <item>
            <title>Manatee</title>
            <description>Manatee docs at: &lt;a href=&quot;http://manatee.sourceforge.net/&quot; target=&quot;_blank&quot;&gt;http://manatee.sourceforge.net/&lt;/a&gt; not clear if these are up to date. 
 
There's no OSX, so let's use Linux as the model. 
 
Sections on 
Apache 2 - got that already 
 GD Graphics Library Installation - got it already 
Expat XML Parser Installation - need that. 
 
Downloaded 2.0.1 from sourceforge. Installed with normal params.  Don't know how to test.</description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6430</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6430</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6430</comments>
            <pubDate>Tue, 05 Aug 2008 14:19:08 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                Manatee            </source>
        </item>
        <item>
            <title>testing again</title>
            <description>another test </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6106</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=6106</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=6106</comments>
            <pubDate>Mon, 03 Mar 2008 20:41:47 -0600</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                testing again            </source>
        </item>
        <item>
            <title>test</title>
            <description>test </description>
            <link>http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=5073</link>
	    <guid isPermaLink="true">http://dimer.tamu.edu/simplog/archive.php?blogid=1&amp;amp;pid=5073</guid>
            <author>jimhu@tamu.edu(Jim Hu)</author>
            
                  <comments>http://dimer.tamu.edu/simplog/comments.php?blogid=1&amp;amp;pid=5073</comments>
            <pubDate>Sat, 26 May 2007 13:55:04 -0500</pubDate>
            <source url="http://dimer.tamu.edu/simplog/rss.php?blogid=1">
                test            </source>
        </item>
    </channel>
</rss>


