<?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 Re: Upgrading Apache? in Appliance Servers</title>
    <link>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34018#M8</link>
    <description>Carsten,&lt;BR /&gt;
&lt;BR /&gt;
Excellent instructions, but the sa1100 runs Linux 6.2.  Your instructions would work very well on HP-UX.</description>
    <pubDate>Mon, 29 Jul 2002 16:07:09 GMT</pubDate>
    <dc:creator>CA175698</dc:creator>
    <dc:date>2002-07-29T16:07:09Z</dc:date>
    <item>
      <title>Upgrading Apache?</title>
      <link>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34015#M5</link>
      <description />
      <pubDate>Thu, 01 Nov 2001 14:29:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34015#M5</guid>
      <dc:creator>Ron Penna</dc:creator>
      <dc:date>2001-11-01T14:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading Apache?</title>
      <link>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34016#M6</link>
      <description>Sorry...hit enter by mistake :)&lt;BR /&gt;
&lt;BR /&gt;
We have a (couple) SA1100's. I was looking to install a newer version of PHP on the machine than the 4.0.0 that comes with it. Unfortunately it looks like mod_so is not compiled into the stock apache. Since that sinks my hopes of installing any modules without recompiling, how would I go about recompiling the web server?</description>
      <pubDate>Thu, 01 Nov 2001 14:32:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34016#M6</guid>
      <dc:creator>Ron Penna</dc:creator>
      <dc:date>2001-11-01T14:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading Apache?</title>
      <link>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34017#M7</link>
      <description>Hi Ron,&lt;BR /&gt;
&lt;BR /&gt;
you need to download and install the following software (or newer versions):&lt;BR /&gt;
&lt;BR /&gt;
- From HP-Software ( &lt;A href="http://gatekeep.cs.utah.edu/hppd/" target="_blank" rel="nofollow"&gt;http://gatekeep.cs.utah.edu/hppd/&lt;/A&gt; ) Downloads as Software-Depots&lt;BR /&gt;
 gcc 2.95.2&lt;BR /&gt;
 binutils 2.9.1&lt;BR /&gt;
 bash 2.0.4&lt;BR /&gt;
 fileutils 4.0.31&lt;BR /&gt;
 bison 1.21.5&lt;BR /&gt;
- From HP-Software ( &lt;A href="http://gatekeep.cs.utah.edu/hppd/" target="_blank" rel="nofollow"&gt;http://gatekeep.cs.utah.edu/hppd/&lt;/A&gt; ) Downloads as tar-archives&lt;BR /&gt;
 Flex 3.0.3 (als source tar.gz archive)&lt;BR /&gt;
- From &lt;A href="http://www.php.net" target="_blank" rel="nofollow"&gt;www.php.net&lt;/A&gt; as tar-archives&lt;BR /&gt;
 PHP 4.0.4.pl1 (als source tar.gz archive)&lt;BR /&gt;
- From &lt;A href="http://www.apache.org" target="_blank" rel="nofollow"&gt;www.apache.org&lt;/A&gt; as tar-archive&lt;BR /&gt;
 Apache 1.3.17 (als source tar.gz archive)&lt;BR /&gt;
&lt;BR /&gt;
After Downloading you have to install the &lt;BR /&gt;
Software Depots with "swinstall" or SAM.&lt;BR /&gt;
&lt;BR /&gt;
Then you have to extract Apache TAR-Archive&lt;BR /&gt;
and just _configure_ it:&lt;BR /&gt;
&lt;BR /&gt;
Unpack TAR-archive to /usr/local/src:&lt;BR /&gt;
# cd /usr/local/src&lt;BR /&gt;
# gzip ???d apache_1.3.17.tar.gz&lt;BR /&gt;
# tar ???xvf apache_1.3.17.tar&lt;BR /&gt;
Configure the install scripts&lt;BR /&gt;
# cd /usr/local/src/apache_1.3.17&lt;BR /&gt;
# ./configure --prefix=/opt/apache --activate-module=src/modules/php4/libphp4.a &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Afterwards install PHP:&lt;BR /&gt;
- Unpacking Tar-Archive&lt;BR /&gt;
to /usr/local/src as "root":&lt;BR /&gt;
# cd /usr/local/src&lt;BR /&gt;
# gzip ???d php-4.0.4.pl1.tar.gz&lt;BR /&gt;
# tar ???xvf php-4.0.4.pl1.tar&lt;BR /&gt;
- Konfigurieren des Installscripts&lt;BR /&gt;
# cd /usr/local/src/php-4.0.4.pl1&lt;BR /&gt;
# ./configure --with-apache=/usr/local/src/apache_1.3.17 --prefix=/opt/php4 --verbose &lt;BR /&gt;
- Compile PHP and measure time &lt;BR /&gt;
# time make &lt;BR /&gt;
=&amp;gt; (Reference Compile Time:A-Class 5m11.011s)&lt;BR /&gt;
- install PHP&lt;BR /&gt;
# make install&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Now install Apache:&lt;BR /&gt;
- Compile Apache (the PHP module will now be integretated ??? hope so ;-) )&lt;BR /&gt;
# make&lt;BR /&gt;
- Install Apache&lt;BR /&gt;
# make install&lt;BR /&gt;
&lt;BR /&gt;
DONE. (hopefully :-) )&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Carsten&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jan 2002 14:39:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34017#M7</guid>
      <dc:creator>Carsten Cimander_1</dc:creator>
      <dc:date>2002-01-18T14:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading Apache?</title>
      <link>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34018#M8</link>
      <description>Carsten,&lt;BR /&gt;
&lt;BR /&gt;
Excellent instructions, but the sa1100 runs Linux 6.2.  Your instructions would work very well on HP-UX.</description>
      <pubDate>Mon, 29 Jul 2002 16:07:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/appliance-servers/upgrading-apache/m-p/34018#M8</guid>
      <dc:creator>CA175698</dc:creator>
      <dc:date>2002-07-29T16:07:09Z</dc:date>
    </item>
  </channel>
</rss>

