Operating System - HP-UX
1748118 Members
3653 Online
108758 Solutions
New Discussion юеВ

Ignite Recovery Log: NOTE: <file> not World-Readable

 
SOLVED
Go to solution
D Block
Advisor

Ignite Recovery Log: NOTE: <file> not World-Readable

Make_Tape_Recovery, in Recovery.Log says:
NOTE: File: is not
world-readable, this may cause clients to fail to read it during an
installation.


If a Full Ignite had to be done, will the recovery fail from tape ?

Btw, I do not see any NOTE:'s like the above in the Clients recovery logs on the Ignite Server.

yea, my umask is 027.


@(#)Ignite-UX Revision C.6.10.97

* Passed pax tests.
* Checking Versions of Ignite-UX filesets
* Creating System Configuration.
* /opt/ignite/bin/save_config -f
/var/opt/ignite/recovery/2007-09-25,10:07/system_cfg vg00
NOTE: File: /var/opt/ignite/recovery/2007-09-25,10:07/system_cfg is not
world-readable, this may cause clients to fail to read it during an
installation.

NOTE: File: /var/opt/ignite/recovery/2007-09-25,10:07/archive_cfg is not
world-readable, this may cause clients to fail to read it during an
installation.
NOTE: File: /var/opt/ignite/recovery/2007-09-25,10:07/archive_cfg is not
world-readable, this may cause clients to fail to read it during an
installation.
* Saving the information about archive to
/var/opt/ignite/recovery/previews
* Creating The Tape Archive
NOTE: File: /var/opt/ignite/recovery/2007-09-25,10:07/system_cfg is not
world-readable, this may cause clients to fail to read it during an
installation.
NOTE: File: /var/opt/ignite/recovery/2007-09-25,10:07/control_cfg is not
world-readable, this may cause clients to fail to read it during an
installation.
NOTE: File: /var/tmp/tmp_cfg_file is not world-readable, this may cause
clients to fail to read it during an installation.
NOTE: File: /var/tmp/tmp_cfg_file is not world-readable, this may cause
clients to fail to read it during an installation.
50268+0 records in
50268+0 records out
* /opt/ignite/data/scripts/make_sys_image -c n -d /dev/rmt/0mn -t n -s
local -n 2007-09-25,10:07 -m t -w
/var/opt/ignite/recovery/2007-09-25,10:07/recovery.log -u -R -g
/var/opt/ignite/recovery/2007-09-25,10:07/flist -a 6057680

* Preparing to create a system archive.

* Archiving contents of SYSTEMA via tar image to local device/dev/rmt/0m
n.
* Creation of system archive complete.
NOTE: The following files are in the list of files that were on the
system, but they are no longer present. These files are not
included in the backup:
/var/tmp/ign_configure/make_sys_image.log

* Archive created and rewind the tape to beginning of tape.

make_tape_recovery completed successfully!


6 REPLIES 6
Sameer_Nirmal
Honored Contributor

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

Change the umask to 022 and try again.
D Block
Advisor

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

How do I do this? umask is set in /etc/profile.

umask 022
make_tape_recovery

is this the method ?
James R. Ferguson
Acclaimed Contributor

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

Hi:

You can simply (re)set your umask in your shell session and then run your 'make_tape_recovery'. A better approach might be to encapsulate your 'make_tape_recovery' command and options in a shell script in which the 'umask' is set too.

Regards!

...JRF...
D Block
Advisor

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

What do you mean by encapsulate ? Can you type an example ?
Dennis Handly
Acclaimed Contributor
Solution

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

>What do you mean by encapsulate? Can you type an example?

Put them together in one script:
do_make_tape_recovery:
#!/usr/bin/ksh
# set umask then do make_tape_recovery
umask 022
make_tape_recovery ...

http://searchnetworking.techtarget.com/sDefinition/0,,sid7_gci212060,00.html
DEFINITION - In general, encapsulation is the inclusion of one thing within another thing so that the included thing is not apparent.
D Block
Advisor

Re: Ignite Recovery Log: NOTE: <file> not World-Readable

thanks this is closed.