RE: [Veritas-bu] Drive is not ready or inoperable

2005-12-21 Thread Paul Keating
Do they stay up till a backup jobs starts? Did this happen after a reboot or a new hardware install? FC or SCSI? The drives could be out of numeric order in the robot. (ie Netbackup config thinks robotic drive#1 is really #2 etchappened to be a couple times on unix systems when adding a

[Veritas-bu] windows to unix restore

2005-12-21 Thread Dave Markham
I have just tried restoring something backed up on windows box to a unix box for a test. When i tried an alternative destination directory it was saying not in the correct format. The policy type for windows is MS-WindowsNT so im not sure if that has a bearing. Has anyone restored files

RE: [Veritas-bu] windows to unix restore

2005-12-21 Thread Piszcz, Justin
Yes, You have to use backslashes. \home\admin\file.restore I believe. Or Host:\home\admin. Justin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Markham Sent: Wednesday, December 21, 2005 9:01 AM To: veritas-bu@mailman.eng.auburn.edu Subject:

Re: [Veritas-bu] list of all files backed up

2005-12-21 Thread a raja
bplist -B -C hostnames -t 0 -k policyname -R 100 -unix_files -s 12/20/2005 23:30:00 -e 12/21/2005 04:00:00 /filesystem/backup try this you will somthing i hope. regards raja --- Kilpatrick, Mark [EMAIL PROTECTED] wrote: I have been attempting to use one of the netbackup commands to provide

[Veritas-bu] port tunneling java gui UNIX

2005-12-21 Thread Dave Markham
Not sure if this is useful to anyone but i got this working today so am excited and thought someone may benefit. I admin things remotely and need to admin various netbackup installations. I have ssh access through to the backup servers but very rarely am allowed the Java gui ports open so i

Re: [Veritas-bu] port tunneling java gui UNIX

2005-12-21 Thread Dave Markham
Sorry people i had a session open when was doing final testing which was hidden behind other windows. Correction to below is you may get an error when trying to ssh -L 13722:localhost:13722 etc when sshing to the backup server itself. I seemed to get some 'channel 3: open failed:

[Veritas-bu] RE: +AFs-Veritas-bu+AF0- list of all files backed up

2005-12-21 Thread Mark . Donaldson
If you want a specific jobid's files, you'll have to cross-reference some stuff: bperror -jobid jobnum ...and search for the backupid: clientname_timestamp (on a line with successfully wrote backupid in my test here). Then you can query files in that backupid using bpflist: bpflist -backupid

[Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Piszcz, Justin
I need to backup an Oracle database and I will be using bp_start and bp_stop. However, I only want it to backup on a certain policy or schedule. Would I name it bp.start_Schedule-Name? Justin.

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Richard Hellier
Justin, In earlier versions of N/B, the form was: bpstart_notify.classname.schedulename So I guess you need something similar involving the policy name. Good Luck! Richard. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Piszcz, Justin Sent: 21

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Mark . Donaldson
it should be: bpstart_notify (all policies schedules) bpstart_notify.policyname (fixed policy, all schedules in that policy) bpstart_notify.policyname.schedulename (one policy, one sched in that policy) bpstop_notify has the same format. These go on the client, by the way. Policy schedule

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Mark . Donaldson
It will indeed run once for every image that's started. Multiplexing doesn't matter but multiple streams does. You have to code around this if that's not the behavior you want. For this there's a couple of environment variables that are set at script-run time. Search the docs for

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Piszcz, Justin
Thanks, I just verified this in the UNIX_MediaGuideII-- thanks! Odd though, I am not using multiplexing or multiple streams and I get multiple e-mails (I have it send me an email when it gets called), maybe it runs it fo reach partition of ALL_LOCAL_DRIVES, I will try it for a specific path.

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Piszcz, Justin
Backing up only 1 partition, it only executes the script once for the start part of it, but it runs the bpend_notify twice, any idea why? I will have to go lookup the STREAM option. -Original Message- From: Piszcz, Justin Sent: Wednesday, December 21, 2005 1:08 PM To: '[EMAIL

Re: [Veritas-bu] running out of memory on Solaris 8 master servers

2005-12-21 Thread Ed Gurski
On Wed, Dec 21, 2005 at 08:51:45AM -0700, King, Cheryl wrote: I have two Solaris 8 master servers running NetBackup 5.1 MP3S2. They keep running out of memory after a few months. I'm wondering if anyone else has this problem and if they fixed it. It started some time after going to

[Veritas-bu] Error 103?

2005-12-21 Thread Charles Ballowe
Has anybody ever seen an error 103? bperror isn't helpful with suggestions: root# bperror -S 103 -r error occurred during initialization, check configuration file None Try the following: None The client is a notes server running windows doing a notes restore. Server is solaris.

[Veritas-bu] Re: Error 103?

2005-12-21 Thread Charles Ballowe
Er... guess I should have dug a little deeper - we have a new notes guy and he didn't specify the path to the lotus ini file for the restore on a partitioned server. Problem solved On 12/21/05, Charles Ballowe [EMAIL PROTECTED] wrote: Has anybody ever seen an error 103? bperror isn't helpful

RE: [Veritas-bu] realt time to ctime

2005-12-21 Thread Mark . Donaldson
Fairly tough, really. You have to resort to another tool. I'd use the gnu-date function (your first list item): gdate --date=12/6/2005 19:36:09 +%s 1133922969 You'll have to convert the text to numeric reformat a bit. No doubt, the perl date function has something similar. -M

RE: [Veritas-bu] Question regarding bp_start and bp_stop.

2005-12-21 Thread Piszcz, Justin
Does anyone have it working so it only actually runs the bpend once? -Original Message- From: Piszcz, Justin Sent: Wednesday, December 21, 2005 1:08 PM To: '[EMAIL PROTECTED]'; veritas-bu@mailman.eng.auburn.edu Cc: Harvey, Brian Subject: RE: [Veritas-bu] Question regarding bp_start and

Re: [Veritas-bu] realt time to ctime

2005-12-21 Thread Christopher Costa
Decode the time from the 10-digit time (at the end of the backup ID) UNIX: # /usr/openv/netbackup/bin/bpdbm -ctime 10-digit ctime WINDOWS: Install path\NetBackup\bin\bpdbm -ctime 10 CC~ On 12/21/05, Bob Stump [EMAIL PROTECTED] wrote: How can I get the correct ctime equivalent for:assigned:Tue

Re: [Veritas-bu] port tunneling java gui UNIX

2005-12-21 Thread Dale King
On Wed, Dec 21, 2005 at 03:54:47PM +, Dave Markham wrote: What i have been trying to do is to redirect this all through ssh to i can point my gui to localhost and it forward requests through to the remote java gui on the backup server and all come up with much faster speed. If you

Re: [Veritas-bu] running out of memory on Solaris 8 master servers

2005-12-21 Thread K Chapman
--- King, Cheryl [EMAIL PROTECTED] wrote: I have two Solaris 8 master servers running NetBackup 5.1 MP3S2. They keep running out of memory after a few months. I'm wondering if anyone else has this problem and if they fixed it. It started some time after going to v5.1 I think.