<?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 start of netscape https server in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494088#M19892</link>
    <description>Hi all,&lt;BR /&gt;I need to create a script to automatic launch netscape https server.&lt;BR /&gt;Netscape has a script start to launch the server, but you need to enter a password for the certificate.&lt;BR /&gt;I think I need to pass the password from a file (maybe crypted with crypt) and put it on /sbin/init.d ana a S900 link on /sbin/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;start script is:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh &lt;BR /&gt;&lt;BR /&gt;SERVER_ROOT=/usr/netscape/suitespot &lt;BR /&gt;PRODUCT_NAME=https &lt;BR /&gt;PRODUCT_BIN=uxwdog &lt;BR /&gt;PRODUCT_SUBDIR=/usr/netscape/suitespot/https-open1 &lt;BR /&gt;  &lt;BR /&gt;cd $SERVER_ROOT/bin/$PRODUCT_NAME &lt;BR /&gt;./$PRODUCT_BIN -d $PRODUCT_SUBDIR/config $@ &lt;BR /&gt;if test $? -ne 0 ; then &lt;BR /&gt;        exit 1 &lt;BR /&gt;fi &lt;BR /&gt;dcfe02:/usr/netscape/suitespot/https-open1#&amp;gt;more start &lt;BR /&gt;#!/bin/sh &lt;BR /&gt;&lt;BR /&gt;SERVER_ROOT=/usr/netscape/suitespot &lt;BR /&gt;PRODUCT_NAME=https &lt;BR /&gt;PRODUCT_BIN=uxwdog &lt;BR /&gt;PRODUCT_SUBDIR=/usr/netscape/suitespot/https-open1 &lt;BR /&gt;  &lt;BR /&gt;cd $SERVER_ROOT/bin/$PRODUCT_NAME &lt;BR /&gt;./$PRODUCT_BIN -d $PRODUCT_SUBDIR/config $@ &lt;BR /&gt;if test $? -ne 0 ; then &lt;BR /&gt;        exit 1 &lt;BR /&gt;fi &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How can I implement my automatic script?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Roberto</description>
    <pubDate>Thu, 15 Feb 2001 09:26:24 GMT</pubDate>
    <dc:creator>Roberto Gallis</dc:creator>
    <dc:date>2001-02-15T09:26:24Z</dc:date>
    <item>
      <title>automatic start of netscape https server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494088#M19892</link>
      <description>Hi all,&lt;BR /&gt;I need to create a script to automatic launch netscape https server.&lt;BR /&gt;Netscape has a script start to launch the server, but you need to enter a password for the certificate.&lt;BR /&gt;I think I need to pass the password from a file (maybe crypted with crypt) and put it on /sbin/init.d ana a S900 link on /sbin/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;start script is:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh &lt;BR /&gt;&lt;BR /&gt;SERVER_ROOT=/usr/netscape/suitespot &lt;BR /&gt;PRODUCT_NAME=https &lt;BR /&gt;PRODUCT_BIN=uxwdog &lt;BR /&gt;PRODUCT_SUBDIR=/usr/netscape/suitespot/https-open1 &lt;BR /&gt;  &lt;BR /&gt;cd $SERVER_ROOT/bin/$PRODUCT_NAME &lt;BR /&gt;./$PRODUCT_BIN -d $PRODUCT_SUBDIR/config $@ &lt;BR /&gt;if test $? -ne 0 ; then &lt;BR /&gt;        exit 1 &lt;BR /&gt;fi &lt;BR /&gt;dcfe02:/usr/netscape/suitespot/https-open1#&amp;gt;more start &lt;BR /&gt;#!/bin/sh &lt;BR /&gt;&lt;BR /&gt;SERVER_ROOT=/usr/netscape/suitespot &lt;BR /&gt;PRODUCT_NAME=https &lt;BR /&gt;PRODUCT_BIN=uxwdog &lt;BR /&gt;PRODUCT_SUBDIR=/usr/netscape/suitespot/https-open1 &lt;BR /&gt;  &lt;BR /&gt;cd $SERVER_ROOT/bin/$PRODUCT_NAME &lt;BR /&gt;./$PRODUCT_BIN -d $PRODUCT_SUBDIR/config $@ &lt;BR /&gt;if test $? -ne 0 ; then &lt;BR /&gt;        exit 1 &lt;BR /&gt;fi &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How can I implement my automatic script?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Roberto</description>
      <pubDate>Thu, 15 Feb 2001 09:26:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494088#M19892</guid>
      <dc:creator>Roberto Gallis</dc:creator>
      <dc:date>2001-02-15T09:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: automatic start of netscape https server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494089#M19893</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Use Expect. Based on a substring of the "expected" output such as "password: ", you can use Expect to key in the password in the password field for you.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;=====================================&lt;BR /&gt;#!/usr/bin/expect &lt;BR /&gt;&lt;BR /&gt;spawn netscape-server-startup&lt;BR /&gt;expect "password: "&lt;BR /&gt;send "abcdef\n"&lt;BR /&gt;close&lt;BR /&gt;=====================================&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong&lt;BR /&gt;Brainbench MVP for Unix Admin&lt;BR /&gt;&lt;A href="http://www.brainbench.com" target="_blank"&gt;http://www.brainbench.com&lt;/A&gt;</description>
      <pubDate>Thu, 15 Feb 2001 09:41:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494089#M19893</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2001-02-15T09:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: automatic start of netscape https server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494090#M19894</link>
      <description>Sorry,&lt;BR /&gt;what's expect? is a unix command? I can't find it...</description>
      <pubDate>Thu, 15 Feb 2001 09:49:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494090#M19894</guid>
      <dc:creator>Roberto Gallis</dc:creator>
      <dc:date>2001-02-15T09:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: automatic start of netscape https server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494091#M19895</link>
      <description>expect is a freeware progam that's available from the HP-UX Liverpool archive:&lt;BR /&gt;&lt;BR /&gt;hpux.connect.org.uk&lt;BR /&gt;&lt;BR /&gt;Other useful programs for HP-UX sysadmins:&lt;BR /&gt;&lt;BR /&gt;lsof and sudo</description>
      <pubDate>Thu, 15 Feb 2001 12:40:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494091#M19895</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2001-02-15T12:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: automatic start of netscape https server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494092#M19896</link>
      <description>I've studied the netscape documentation&lt;BR /&gt;To start ssl server at boot you need to build password.conf in the ssl server config directory.&lt;BR /&gt;That's all&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;&lt;BR /&gt;Roberto</description>
      <pubDate>Thu, 15 Feb 2001 15:27:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-start-of-netscape-https-server/m-p/2494092#M19896</guid>
      <dc:creator>Roberto Gallis</dc:creator>
      <dc:date>2001-02-15T15:27:06Z</dc:date>
    </item>
  </channel>
</rss>

