<?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: Shutdown script spanning more than one server in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770969#M261256</link>
    <description>Hmmm, I still get the "require: not found" and the multiple "use:  not found" errors after providing the symbolic link you listed.</description>
    <pubDate>Thu, 13 Apr 2006 17:04:39 GMT</pubDate>
    <dc:creator>Dan Sargis</dc:creator>
    <dc:date>2006-04-13T17:04:39Z</dc:date>
    <item>
      <title>Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770949#M261236</link>
      <description>I am preparing to formulate a script which will start on my application server, shutting down all applications then telnet to the database server to stop the database.  &lt;BR /&gt;&lt;BR /&gt;Then when the DB backup is complete, start the database, exit back to the application server and start the applications.&lt;BR /&gt;&lt;BR /&gt;Does anyone have an example script of how to accomplish this?</description>
      <pubDate>Wed, 12 Apr 2006 12:16:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770949#M261236</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T12:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770950#M261237</link>
      <description>You can do this easily with secure shell (or an expect script).&lt;BR /&gt;&lt;BR /&gt;If you use ssh, you should configure public key authentication without password, then just create a script:&lt;BR /&gt;&lt;BR /&gt;stopapp&lt;BR /&gt;ssh databasehost stopdb&lt;BR /&gt;ssh databasehost startdb&lt;BR /&gt;startapp</description>
      <pubDate>Wed, 12 Apr 2006 12:22:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770950#M261237</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-12T12:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770951#M261238</link>
      <description>Thank you Ivan for the reply.&lt;BR /&gt;&lt;BR /&gt;I am uncertain what ssh is.   I did a "man ssh" and nothing came back.  You provide a little more info?&lt;BR /&gt;&lt;BR /&gt;Thank you very much in advance for you reply.</description>
      <pubDate>Wed, 12 Apr 2006 12:31:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770951#M261238</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T12:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770952#M261239</link>
      <description>Remsh or ssh commands make much more sense than telnet's. However, I can think of a way that's even better. Suppose that you stop your application(s), shutdown the database, take vxfs snapshots of the database files and of the application files; restart the database, and restart the applications. You then backup the snapshot mounts and unmount the snapshots when finsihed. You could then have "cold" backups with almost all the uptime of a "hot" backup because vxfs snapshot mounts take only seconds to complete.&lt;BR /&gt;&lt;BR /&gt;I described this process along with the synchronization tools needed in this&lt;BR /&gt;article: &lt;A href="http://www.samag.com/documents/s=7898/sam0304a/0304a.htm" target="_blank"&gt;http://www.samag.com/documents/s=7898/sam0304a/0304a.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The perl semaphore server and client tools are also available at that website.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 12:32:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770952#M261239</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T12:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770953#M261240</link>
      <description>SSH is the secure shell. Get it from:&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Essentially, it's the encrypted version of remsh and ftp in that the data sent over the network are encrypted. You may or may not need that level of security within your own network but in any event the scripting will be much easier using remsh or ssh than with telnet.</description>
      <pubDate>Wed, 12 Apr 2006 12:37:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770953#M261240</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T12:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770954#M261241</link>
      <description>Thank you, Mr. Stephenson. &lt;BR /&gt;&lt;BR /&gt;I am reading your article right now.   I was originally leaning toward "remsh".  &lt;BR /&gt;&lt;BR /&gt;We have and HP SAN and have yet to implement snapshots but would LOVE to.  Would you happen to have an example of your "createsnapshot.sh" script?&lt;BR /&gt;&lt;BR /&gt;I am reading on .....</description>
      <pubDate>Wed, 12 Apr 2006 12:40:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770954#M261241</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T12:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770955#M261242</link>
      <description>Probably, you don't have it installed, check it with:&lt;BR /&gt;&lt;BR /&gt;# swlist -l product |grep -i secure&lt;BR /&gt;&lt;BR /&gt;  Secure_Shell          A.03.10.007    HP-UX Secure Shell&lt;BR /&gt;&lt;BR /&gt;You can download it from the hp software download page.</description>
      <pubDate>Wed, 12 Apr 2006 12:42:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770955#M261242</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-12T12:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770956#M261243</link>
      <description>You really don't need a script to show you how to create vxfs snapshot mounts; man mount_vxfs will tell you (almost) everything you need to know. The thing that it doesn't tell you is how big the snapshot buffer raw device should be. For backups completed in a reasonable amount of time (a few hours) and a filesystem that is undergoing moderate levels of updates during this interval (moderate means fairly heavy), a snapshot buffer 15% the size of the original filesystem should more than suffice.&lt;BR /&gt;&lt;BR /&gt;My convention is that snapshot mountpoints are prefixed via "snap" so if your original filesystem is "/PrdOra/oradata1" then your snapshot mount point will be "/PrdOra/snaporadata1". Now for those mounts using a snapshot buffer, /dev/vg03/lvol7 the commands are:&lt;BR /&gt;&lt;BR /&gt;mkdir /PrdOra/snaporadata1&lt;BR /&gt;mount -F vxfs -o snapof=/PrdOra/oradata1 /dev/vg03/lvol7 /PrdOra/snaporadata1&lt;BR /&gt;&lt;BR /&gt;Now you backup /PrdOra/snaporadata1&lt;BR /&gt;and when finished:&lt;BR /&gt;&lt;BR /&gt;umount /PrdOra/snaporadata1&lt;BR /&gt;rmdir /PrdOra/snaporadata1&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 13:49:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770956#M261243</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T13:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770957#M261244</link>
      <description>What software package does "snapof" come with?&lt;BR /&gt;&lt;BR /&gt;We have our SAN but evidently are missing some software.</description>
      <pubDate>Wed, 12 Apr 2006 14:31:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770957#M261244</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T14:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770958#M261245</link>
      <description>You need OnlineJFS but that is a package that no HP-UX box should be without. In additional to more mount options it also allows you to change the size of a filesystem "on the fly" while the filesystem is in use. &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3929CA" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3929CA&lt;/A&gt;</description>
      <pubDate>Wed, 12 Apr 2006 14:35:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770958#M261245</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T14:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770959#M261246</link>
      <description>Note that "snapof" is not a separate command; it is simply a vxfs mount option. Man mount_vxfs and you should see it described whether or not OnlineJFS is installed.</description>
      <pubDate>Wed, 12 Apr 2006 15:06:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770959#M261246</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T15:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770960#M261247</link>
      <description>yeah, since my last post I realized that snapof was a continuation of the mount statement.&lt;BR /&gt;&lt;BR /&gt;I think that the only thing I'm missing is how to create the snapshot buffer.&lt;BR /&gt;&lt;BR /&gt;Here's my syntax and error:&lt;BR /&gt;&lt;BR /&gt;atlas03:/s01# mount -F vxfs -o snapof=/s01/oradata /dev/vgs01/slvol1 /s01/snaporadata&lt;BR /&gt;mount: /dev/vgs01/slvol1 is already mounted on /s01/snaporadata&lt;BR /&gt;atlas03:/s01# bdf .&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vgs01/slvol1  153600000 68066672 84865120   45% /s01&lt;BR /&gt;atlas03:/s01#</description>
      <pubDate>Wed, 12 Apr 2006 16:06:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770960#M261247</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T16:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770961#M261248</link>
      <description>The snapshot buffer can be any raw BLOCK (as opposed to character) device (e.g. a whole physical disk or LUN, /dev/dsk/c5t2d0; an LVM logical volume; /dev/vg04/lvol1; or a VxVM subdisk). &lt;BR /&gt;&lt;BR /&gt;For example, if you are using LVM, you would lvcreate a new LVOL but not install a filesystem on it (or make an entry in /etc/fstab for it). Any raw block device&lt;BR /&gt;can be used -- just make sure that this device is not used for anything else. Every snapof mount will need its own snapshot buffer raw block device.</description>
      <pubDate>Wed, 12 Apr 2006 16:23:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770961#M261248</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T16:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770962#M261249</link>
      <description>Wow this is a really cool option of which I was previously unaware. &lt;BR /&gt;&lt;BR /&gt;Let me gain a little better understanding of "snapof".   As you indicated, a great use of this is for cold back-up.   However, would you not want to keep the DB down until the tape backup is completed?   Otherwise, won't the /snaporadata buffer be updated as transactions continue to flow with the DB up and a tape backup going simultaneously?</description>
      <pubDate>Wed, 12 Apr 2006 19:26:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770962#M261249</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-12T19:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770963#M261250</link>
      <description>No, not at all. That why it's called a snapshot. It's a frozen image of the filesystem as it was at the time the snapshot was taken. Here's how it works. The snapshot doesn't actually copy anything initially; that's why it can complete in seconds even for a huge filesystem. Reads from the snapshot mountpoint are a composite of unchanged blocks in the original filesystem plus changed blocks read from the snapshot buffer. When a read() is done for, say, block 100. The change map is consulted. If block 100 has not been updated then the block is read directly from the original filesystem. Now suppose that block 303 has been updated by an operation in the original filesystem. Just before the write() operation occurs in the original filesystem for that block, the original unchanged contents of that block are written to the snapshot buffer and the change map reflects that block 303 has been changed and it also indicates what block in the change buffer to read instead. Only the first change to block 303 need be recorded in the snapshot buffer because all we care about from the point of view of the snapshot mount is what block 303 looked like when the snapshot was taken. Now when block 303 is being read by your backup software, the OS examines the change map  to see if block 303 has been changed. Yes, so go fetch it from the indexed location in the snapshot buffer. All of this takes place in the background and is completely invisible to processes accessing eith the original filesystem or the snapshot filesystem. This means that your database can be restarted and in use while from the point of view of the snapshot, the database is still in the shutdown state.&lt;BR /&gt;&lt;BR /&gt;It should be obvious that most of the read()'s for the backup occur in the original filesystem. That's why the snapshot buffer need only be about .15X the size of the original filesystem.&lt;BR /&gt;&lt;BR /&gt;It is essential that all the filesystems associated with the database be snapshoted before restarting the database so that you have a valid "cold" backup. You really have all the "warm, fuzzy" of a cold backup for almost all the uptime of a "hot" backup.&lt;BR /&gt;&lt;BR /&gt;One "gotcha" I should warn you about is that the snapshot buffer should be mirrored or otherwise highly available (e.g. an array LUN) because if for some reason the snapshot buffer device fails, the original filesystem can hang. Of course, if a disk in the original filesystem fails the same thing can occur. I'm just pointing out that &lt;BR /&gt;just as the original filesystem should be mirrored (or otherwise highly available) so should the snapshot buffer device.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 20:04:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770963#M261250</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T20:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770964#M261251</link>
      <description>Now to really confuse you: It's possible to do a second snapof= mount using a different snapshot buffer and a different snapshot mountpoint of that same original filesystem while the first snapof= mount is still in effect. The first will be a snapshot as the&lt;BR /&gt;filesystem was at point in time it was snapped and the second will be a snapshot at the point in time that it was snapped. I've only used that feature a few times but it has great "coolness".&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 20:10:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770964#M261251</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-12T20:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770965#M261252</link>
      <description>This is great news regarding "snapof".   I discussed it with my systems staff and in the words of our senior sysadmin "I knew we should be getting more for what we're paying for JFS".  They never showed us this in HP-UX System administration class. &lt;BR /&gt;&lt;BR /&gt;Anyway, I'm going to review your article related to scripting using semaphores and I'll get back to you with questions.&lt;BR /&gt;&lt;BR /&gt;Thanks again.</description>
      <pubDate>Thu, 13 Apr 2006 12:18:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770965#M261252</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-13T12:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770966#M261253</link>
      <description>I don't think snapshots are talked about until the "Ligical Volume Manager and Mirror/UX" class (or whatever the name actually is) but that's no excuse. The man pages (from end to end) are required reading for anyone who calls oneself a Sysadmin. My favorite is Section 2 (the system calls -- it's a real page turner) but in any event, it's amazing what one can learn by reading all the man pages rather than just consulting them when needed.</description>
      <pubDate>Thu, 13 Apr 2006 12:35:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770966#M261253</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-13T12:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770967#M261254</link>
      <description>OK, back to the original question (I'm getting two for the price of one!).&lt;BR /&gt;&lt;BR /&gt;I downloaded both server.pl and client.pl to one of my servers just to, as you put it, get a feel for how they work.&lt;BR /&gt;&lt;BR /&gt;By the way the version of Perl on the Unix server is:&lt;BR /&gt;&lt;BR /&gt;atlas03:/usr/contrib/bin# swlist | grep perl&lt;BR /&gt;  perl                          B.5.6.1.C      Perl Programming Language &lt;BR /&gt;atlas03:/usr/contrib/bin#&lt;BR /&gt;&lt;BR /&gt;When I try running server.pl -P 7777 #, it just returns the following:&lt;BR /&gt;&lt;BR /&gt;atlas03:/usr/contrib/bin# server.pl -P 7777  &lt;BR /&gt;server.pl[4]: require:  not found.&lt;BR /&gt;server.pl[10]: use:  not found.&lt;BR /&gt;server.pl[11]: use:  not found.&lt;BR /&gt;server.pl[12]: use:  not found.&lt;BR /&gt;server.pl[13]: use:  not found.&lt;BR /&gt;server.pl[14]: use:  not found.&lt;BR /&gt;server.pl[15]: use:  not found.&lt;BR /&gt;server.pl[16]: use:  not found.&lt;BR /&gt;server.pl[18]: Syntax error at line 19 : `newline or ;' is not expected.&lt;BR /&gt;atlas03:/usr/contrib/bin# &lt;BR /&gt;&lt;BR /&gt;Now, I admit that I'm very GREEN with Perl and it looks as if this will be my launching pad into the language but must I comment these lines out before the script will work?&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 16:50:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770967#M261254</guid>
      <dc:creator>Dan Sargis</dc:creator>
      <dc:date>2006-04-13T16:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Shutdown script spanning more than one server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770968#M261255</link>
      <description>The version of Perl found under /usr/contrib/bin is very archaic. /usr/contrib/bin probably appears early in your PATH setting.&lt;BR /&gt;&lt;BR /&gt;Probably the best fix is to create a symbolic link in /usr/bin for the "good" version of Perl. &lt;BR /&gt;&lt;BR /&gt;cd /usr/bin&lt;BR /&gt;ln -s /opt/perl/bin/perl perl &lt;BR /&gt;&lt;BR /&gt;That should fix you.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 16:57:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shutdown-script-spanning-more-than-one-server/m-p/3770968#M261255</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-04-13T16:57:21Z</dc:date>
    </item>
  </channel>
</rss>

