<?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: Web Pages for System Documentation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685610#M932069</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you have 11i version it can be found on the application CD's, so it can be installed using 'swinstall' or from the porting centre.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Networking/WWW/apache-1.3.23/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Networking/WWW/apache-1.3.23/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Michael</description>
    <pubDate>Mon, 18 Mar 2002 22:26:55 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2002-03-18T22:26:55Z</dc:date>
    <item>
      <title>Web Pages for System Documentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685607#M932066</link>
      <description>I'm looking for a easy tool that will allow me to host our system documentation on Web pages for internal use by our System Administrators. I'm tired of our NT hosted document server going down.</description>
      <pubDate>Mon, 18 Mar 2002 21:55:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685607#M932066</guid>
      <dc:creator>Henry Weldon</dc:creator>
      <dc:date>2002-03-18T21:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Web Pages for System Documentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685608#M932067</link>
      <description>Use apache. &lt;BR /&gt;&lt;BR /&gt;Download the apache from HP's web site as depot and install it using &lt;BR /&gt;#swinstall &lt;BR /&gt;&lt;BR /&gt;Installation will create a file called apache in /sbin/init.d directory. If it is not there you can create it. &lt;BR /&gt;Don't forget to check paths for the variable APACHE_HOME, CONF_FILE and PIDFILE in this file.&lt;BR /&gt;&lt;BR /&gt; #!/sbin/sh&lt;BR /&gt; #&lt;BR /&gt; # Copyright (c) 1999 by Sun Microsystems, Inc.&lt;BR /&gt; # All rights reserved.&lt;BR /&gt; #&lt;BR /&gt; #ident  "@(#)apache.sh  1.3     99/11/10 SMI"&lt;BR /&gt;&lt;BR /&gt; APACHE_HOME=/opt/apache&lt;BR /&gt; CONF_FILE=/opt/apache/etc/httpd.conf&lt;BR /&gt; PIDFILE=/opt/apache/adm/httpd.pid&lt;BR /&gt;&lt;BR /&gt; if [ ! -f ${CONF_FILE} ]; then&lt;BR /&gt;         exit 0&lt;BR /&gt; fi&lt;BR /&gt;&lt;BR /&gt; case "$1" in&lt;BR /&gt; start)&lt;BR /&gt;         /bin/rm -f ${PIDFILE}&lt;BR /&gt;         cmdtext="starting"&lt;BR /&gt;         ;;&lt;BR /&gt; restart)&lt;BR /&gt;         cmdtext="restarting"&lt;BR /&gt;         ;;&lt;BR /&gt; stop)&lt;BR /&gt;         cmdtext="stopping"&lt;BR /&gt;         ;;&lt;BR /&gt; *)&lt;BR /&gt;         echo "Usage: $0 {start|stop|restart}"&lt;BR /&gt;         exit 1&lt;BR /&gt;         ;;&lt;BR /&gt; esac&lt;BR /&gt;&lt;BR /&gt; echo "httpd $cmdtext."&lt;BR /&gt;&lt;BR /&gt; status=`${APACHE_HOME}/bin/apachectl $1 2&amp;gt;&amp;amp;1`&lt;BR /&gt;&lt;BR /&gt; if [ $? != 0 ]; then&lt;BR /&gt;         echo "$status"&lt;BR /&gt;         exit 1&lt;BR /&gt; fi&lt;BR /&gt; exit 0&lt;BR /&gt;&lt;BR /&gt;Create a link in /sbin/rc3.d to ensure that httpd starts at boot time&lt;BR /&gt;# ln -s /sbin/init.d/apache /sbin/rc3.d/S150apache&lt;BR /&gt;#ls -la /sbin/rc3.d |grep apache&lt;BR /&gt;lrwxrwxrwx   1 root       sys             19 Mar  8 11:54 S150apache -&amp;gt; /sbin/init.d/apache&lt;BR /&gt;&lt;BR /&gt;Edit the /opt/apache/etc/httpd.conf file and change that directive.&lt;BR /&gt;&lt;BR /&gt;User www&lt;BR /&gt;Group www&lt;BR /&gt;ServerName xyz.com &lt;BR /&gt;DocumentRoot "/WWW"&lt;BR /&gt;&lt;BR /&gt;Apache looks for port 80 by default so in /etc/services file uncomment following&lt;BR /&gt;http          80/tcp  www            # World Wide Web HTTP&lt;BR /&gt;http          80/udp  www            # World Wide Web HTTP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Start the httpd server&lt;BR /&gt;#/etc/rc3.d/S150apache start&lt;BR /&gt;&lt;BR /&gt;Put all your http files in /WWW including idex.html.&lt;BR /&gt;&lt;BR /&gt;As soon as you types xyz.com on your IE or Netscape's address bar it will shows you index.html.&lt;BR /&gt;&lt;BR /&gt;Sachin&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Mar 2002 22:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685608#M932067</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2002-03-18T22:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Web Pages for System Documentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685609#M932068</link>
      <description>Yes, Apache is a good choice and it is as easy as it gets, plus it's free.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B9415AAPA1319" target="_blank"&gt;http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B9415AAPA1319&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Mar 2002 22:15:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685609#M932068</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-03-18T22:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Web Pages for System Documentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685610#M932069</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you have 11i version it can be found on the application CD's, so it can be installed using 'swinstall' or from the porting centre.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Networking/WWW/apache-1.3.23/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Networking/WWW/apache-1.3.23/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Michael</description>
      <pubDate>Mon, 18 Mar 2002 22:26:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685610#M932069</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-03-18T22:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Web Pages for System Documentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685611#M932070</link>
      <description>Hi,&lt;BR /&gt;And once you've got the Apache ... use this free tool to generate all the information you ever wanted :&lt;BR /&gt;&lt;A href="http://members.tripod.com/rose_swe/cfg/cfg.html" target="_blank"&gt;http://members.tripod.com/rose_swe/cfg/cfg.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Tom Geudens</description>
      <pubDate>Tue, 19 Mar 2002 05:38:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/web-pages-for-system-documentation/m-p/2685611#M932070</guid>
      <dc:creator>Tom Geudens</dc:creator>
      <dc:date>2002-03-19T05:38:09Z</dc:date>
    </item>
  </channel>
</rss>

