Netbackup question: Scheduling in CLI


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Netbackup question: Scheduling in CLI
# 1  
Old 07-14-2010
Netbackup question: Scheduling in CLI

Hi there

Is there a way to customize scheduling in Netbackup 7 via the command line? I have tried it using the GUI and can specify multiple schedules for one policy. Does anyone have a link for me which I can refer to to read up on? Or if you know how please let me know.
Running on Solaris 10

Thanks!

---------- Post updated 07-14-10 at 09:59 AM ---------- Previous update was 07-13-10 at 12:16 PM ----------

Solved. bpplsched is the command.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Need steps for Netbackup Update from 7.1 to 7.5

Hello Friends, I need a document with steps to upgrade Symantec Netbackup from 7.1 to 7.5. Would you please help me on this. I have Symantec provided pdf but looks like reference book. I need only steps which is needed to be followed. Please guide me. Information about my Server My... (11 Replies)
Discussion started by: manalisharmabe
11 Replies

2. Shell Programming and Scripting

Question: Automatic launching of a CLI menu upon login (OpenBSD)

Hi all, I am OpenBSD newbie and currently need to manage some OpenBSD firewalls running pf. The OpenBSD version is 4.8 As the other sys admins are not so familiar with OpenBSD, so I have an idea across in my mind on how to minimize the root account usage and other unnecessary access and make... (9 Replies)
Discussion started by: lcxpics
9 Replies

3. UNIX for Dummies Questions & Answers

Netbackup Report

Would I be able to get the report (text format) of an activity monitor view of a netbackup via command line? I am trying to make a script out of it that would be run daily an be saved in a txt document which would could be viewed for history purpose. I need minimal details only like policy name,... (0 Replies)
Discussion started by: ryan_estiya
0 Replies

4. Solaris

veritas netbackup

Hi All, We are currently running Veritas netbackup. We are currently having a few issues where were unable to log in due to several errors. Out usual fix for this is to recycle the backup servers however due to the nature of the information being backed up this is done by someone else and... (1 Reply)
Discussion started by: rickyclayton201
1 Replies

5. UNIX for Dummies Questions & Answers

Netbackup 6 Question

What is the command to find out if a policy has been run and if it has the date it was last run? (0 Replies)
Discussion started by: mr_crosby
0 Replies

6. Filesystems, Disks and Memory

Netbackup Questions

I have 2 questions maybe those netbackup experts and gurus in the house can help. Firstly, is there a particular location maybe under /usr/openv where I can find a diretory or file which contains all the backup policy information, so lets say If someone were to physically delete all the... (3 Replies)
Discussion started by: sparcguy
3 Replies

7. HP-UX

Netbackup Installation

Hello all. I have a HP-UX 11.11 system that I need to install Netbackup 6.5 onto. After I mount the cd drive and run the 'install' command, it comes back with the following error: usage: install file WHAT options is it talking about? When I look at the documentation from Netbackup, it... (4 Replies)
Discussion started by: impunchdrunk
4 Replies

8. Solaris

Netbackup on Solaris 8

Hi, Anyone know netbackup 3.4 on Solaris 8 . Currently I use root to perform backup / monitoring ...etc . Can I create a user call "backup" and perform the same task What permission should I give the "backup" user . (1 Reply)
Discussion started by: civic2005
1 Replies

9. Filesystems, Disks and Memory

Netbackup question

Hello, I am setting up scripts to do shadow image backups but have found a pitfall I cannot figure out how to work around. Basically what I need to figure out is how to launch a bunch of bpbackups, and then have the script pause until all of the children have exited. The problem is that bpbackup... (2 Replies)
Discussion started by: 98_1LE
2 Replies

10. UNIX for Dummies Questions & Answers

Veritas NetBackup

Veritas NetBackup, how does it work?? I mean, I know it is used for backups and restores but really, can anybody give me a brief or any explanation that sums up basically what it is about besides the fact that it does backups and restores??? Please, if you have any information, I would appreciate... (2 Replies)
Discussion started by: TRUEST
2 Replies
Login or Register to Ask a Question
PTHREAD_ATTR_SETSCHEDPARAM(3)				     Linux Programmer's Manual				     PTHREAD_ATTR_SETSCHEDPARAM(3)

NAME
pthread_attr_setschedparam, pthread_attr_getschedparam - set/get scheduling parameter attributes in thread attributes object SYNOPSIS
#include <pthread.h> int pthread_attr_setschedparam(pthread_attr_t *attr, const struct sched_param *param); int pthread_attr_getschedparam(pthread_attr_t *attr, struct sched_param *param); Compile and link with -pthread. DESCRIPTION
The pthread_attr_setschedparam() function sets the scheduling parameter attributes of the thread attributes object referred to by attr to the values specified in the buffer pointed to by param. These attributes determine the scheduling parameters of a thread created using the thread attributes object attr. The pthread_attr_getschedparam() returns the scheduling parameter attributes of the thread attributes object attr in the buffer pointed to by param. Scheduling parameters are maintained in the following structure: struct sched_param { int sched_priority; /* Scheduling priority */ }; As can be seen, only one scheduling parameter is supported. For details of the permitted ranges for scheduling priorities in each schedul- ing policy, see sched_setscheduler(2). RETURN VALUE
On success, these functions return 0; on error, they return a nonzero error number. ERRORS
POSIX.1 documents EINVAL and ENOTSUP errors for pthread_attr_setschedparam(). On Linux these functions always succeed (but portable and future-proof applications should nevertheless handle a possible error return). CONFORMING TO
POSIX.1-2001. NOTES
See pthread_attr_setschedpolicy(3) for a list of the thread scheduling policies supported on Linux. EXAMPLE
See pthread_setschedparam(3). SEE ALSO
sched_get_priority_min(2), sched_setscheduler(2), pthread_attr_init(3), pthread_attr_setinheritsched(3), pthread_attr_setschedpolicy(3), pthread_create(3), pthread_setschedparam(3), pthread_setschedprio(3), pthreads(7) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2012-03-15 PTHREAD_ATTR_SETSCHEDPARAM(3)