<?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: ignite-root in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274634#M179271</link>
    <description>In my experiences with Ignite restores I have had weird and unusual problems occur after a restore of an Ignite backup that was performed in multi-user mode.  As general practice from now on I always shut down to single-user mode in order to ensure minimal files are open or in use and my backup is cleaner and finishes faster, too.&lt;BR /&gt;&lt;BR /&gt;You may want to rethink your backup strategy.  If you're trusting someone to do your system backups but you're not going to give him/her the root password in order to run the backup, it makes me kind of wonder ...</description>
    <pubDate>Thu, 13 May 2004 21:45:23 GMT</pubDate>
    <dc:creator>Dani Seely</dc:creator>
    <dc:date>2004-05-13T21:45:23Z</dc:date>
    <item>
      <title>ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274625#M179262</link>
      <description>Hi,  &lt;BR /&gt;I have this problem...  &lt;BR /&gt;I need to run manually the make_recovery  -Avi or make_tape_recovey -x...but I need him to run him an operator that should not have privileges of ROOT   &lt;BR /&gt;How can create a user that can run make_tape_recovey without priviliges of  ROOT, only creating the tape of Ignite.  &lt;BR /&gt;Also them...if they can lean on with the bestÂ´s practices for the creation of Ignites   &lt;BR /&gt;  Thanks everybody.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 May 2004 17:23:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274625#M179262</guid>
      <dc:creator>Emilio Brusa</dc:creator>
      <dc:date>2004-05-12T17:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274626#M179263</link>
      <description>It looks like make_recovery inturn checks the real UID of the user. So SUID will not work in this case.&lt;BR /&gt;&lt;BR /&gt;You can install sudo and allow the user to run only make_recovery&lt;BR /&gt;</description>
      <pubDate>Wed, 12 May 2004 17:41:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274626#M179263</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-05-12T17:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274627#M179264</link>
      <description>Best practice is to include everything in vg00. use the -ACvi option with make_recovery and -x inc_entire=vg00 when make_tape_recovery is used.</description>
      <pubDate>Wed, 12 May 2004 17:50:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274627#M179264</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-05-12T17:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274628#M179265</link>
      <description>Create a script something like this:&lt;BR /&gt;&lt;BR /&gt;# cat create_ignite_tape&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;# Replace the 0mn with your no-rewind tape drive&lt;BR /&gt;TAPE=/dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;# Rewind tape&lt;BR /&gt;mt -f ${TAPE} rew&lt;BR /&gt;&lt;BR /&gt;# Run make_tape_recovery&lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -a ${TAPE} -I -v -x inc_entire=vg00&lt;BR /&gt;&lt;BR /&gt;# Eject the tape when done&lt;BR /&gt;mt -f ${TAPE} offl&lt;BR /&gt;&lt;BR /&gt;# END OF SCRIP&lt;BR /&gt;&lt;BR /&gt;Now you have a couple of options:&lt;BR /&gt;&lt;BR /&gt;1) Install sudo as said above and set up the user so that he/she can run the create_ignite_tape script.  --- I would prefer this method&lt;BR /&gt;&lt;BR /&gt;2) Set the create_ignite_tape script so that it is owned by root and is a SUID script.&lt;BR /&gt;&lt;BR /&gt;# chmod 4555 create_ignite_tape&lt;BR /&gt;# ll create_ignite_tape&lt;BR /&gt;-r-sr-xr-x root sys .... create_ignite_tape&lt;BR /&gt;&lt;BR /&gt;I wouldn't necessarily recommend this as it could be a security hole (I don't like unnecessary SUID scripts lying around).  I am not even 100% sure it will work, but it might.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 May 2004 17:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274628#M179265</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-05-12T17:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274629#M179266</link>
      <description>Patrick, I tried the script before posting my FIRST reply. Apparently make_recovery has a real UID check builtin.</description>
      <pubDate>Wed, 12 May 2004 18:08:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274629#M179266</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-05-12T18:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274630#M179267</link>
      <description>&lt;BR /&gt;$ ls -lrt /root/m.sh&lt;BR /&gt;-r-sr-xr-x   1 root       sys             68 May 12 16:09 /root/m.sh&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;$  more /root/m.sh&lt;BR /&gt;#! /usr/bin/sh&lt;BR /&gt;/opt/ignite/bin/make_recovery -ACvi -d /dev/rmt/0mn &lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;$ /root/m.sh&lt;BR /&gt;make_recovery(201): Must have root capability to use make_recovery&lt;BR /&gt;$&lt;BR /&gt;</description>
      <pubDate>Wed, 12 May 2004 18:12:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274630#M179267</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-05-12T18:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274631#M179268</link>
      <description>Sundar and Patrick thanks,&lt;BR /&gt;&lt;BR /&gt;Where can i find SUDO...is software of hp??&lt;BR /&gt;&lt;BR /&gt;E.</description>
      <pubDate>Thu, 13 May 2004 16:39:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274631#M179268</guid>
      <dc:creator>Emilio Brusa</dc:creator>
      <dc:date>2004-05-13T16:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274632#M179269</link>
      <description>HP-UX 11.11 (11i) include a yellow label CD named Internet Express for HP-UX with sudo. Sudo is not released by HP, it is public domain.&lt;BR /&gt;&lt;BR /&gt;See also on the web&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/" target="_blank"&gt;http://hpux.cs.utah.edu/&lt;/A&gt;&lt;BR /&gt;sudo-1.6..7p5 (15 Oct 2003)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111" target="_blank"&gt;http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ciao&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 May 2004 17:08:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274632#M179269</guid>
      <dc:creator>Francesco Campalastri</dc:creator>
      <dc:date>2004-05-13T17:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274633#M179270</link>
      <description>You can download from this link&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Once installed, add an entry in the /etc/sudoers file &lt;BR /&gt; &lt;BR /&gt;  &lt;OPERATOR username=""&gt;  ALL=/opt/ignite/bin/make_recovery&lt;BR /&gt;&lt;BR /&gt;  Now the operator can use sudo to create recovery tape.&lt;BR /&gt;&lt;BR /&gt;operator&amp;gt; sudo /opt/ignite/bin/make_recovery -ACvi -d /dev/rmt/0mn&lt;BR /&gt;Password:&lt;BR /&gt;&lt;BR /&gt;Operator will be prompted for password. The password to be entered is the OPERATOR's password and NOT the root's password.&lt;/OPERATOR&gt;</description>
      <pubDate>Thu, 13 May 2004 18:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274633#M179270</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-05-13T18:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274634#M179271</link>
      <description>In my experiences with Ignite restores I have had weird and unusual problems occur after a restore of an Ignite backup that was performed in multi-user mode.  As general practice from now on I always shut down to single-user mode in order to ensure minimal files are open or in use and my backup is cleaner and finishes faster, too.&lt;BR /&gt;&lt;BR /&gt;You may want to rethink your backup strategy.  If you're trusting someone to do your system backups but you're not going to give him/her the root password in order to run the backup, it makes me kind of wonder ...</description>
      <pubDate>Thu, 13 May 2004 21:45:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274634#M179271</guid>
      <dc:creator>Dani Seely</dc:creator>
      <dc:date>2004-05-13T21:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274635#M179272</link>
      <description>But,&lt;BR /&gt;whenever to make a restore of a tape made with I Sudo, is the process the same one that when the tape make with root?&lt;BR /&gt;Or are any considireations for that ?&lt;BR /&gt;&lt;BR /&gt;Thanks everybody&lt;BR /&gt;&lt;BR /&gt;E.</description>
      <pubDate>Fri, 14 May 2004 09:08:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274635#M179272</guid>
      <dc:creator>Emilio Brusa</dc:creator>
      <dc:date>2004-05-14T09:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: ignite-root</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274636#M179273</link>
      <description>Emilio,&lt;BR /&gt;&lt;BR /&gt;There should be no difference in the restore process whether the tape was made by an actual root or a "sudo'd" root.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 14 May 2004 09:12:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ignite-root/m-p/3274636#M179273</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-05-14T09:12:39Z</dc:date>
    </item>
  </channel>
</rss>

