- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: How to understand the SLS backup running proce...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 05:29 PM
09-07-2005 05:29 PM
so, i can run an individual backup job by $stor startup system_backup SYSBAK.COM
but, if i want to run a scheduled automatical job for backup. how can i do ? how does the system know when the backup should be started ?(the start_time parameter is in SYSBAK file,how does system get this time and run the job on time ?)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 07:40 PM
09-07-2005 07:40 PM
Re: How to understand the SLS backup running process
!
!but, if i want to run a scheduled automatical !job for backup. how can i do ? how does the !system know when the backup should be started !?(the start_time parameter is in SYSBAK !file,how does system get this time and run the !job on time ?)
You could simply create a command file with the STORAGE STARTUP command, and SUBMIT the "wrapper" command file.
I haven't played with SLS in a few years, but IIRC, you can create .BAK files that contain time of day and day of week "symbol" assignments, as well. There is, I recall, a detached job run by SLS once per night, that looks for these .BAK files, and "schedules" them to run.
Folks who currently use SLS can fill in any details I have left out - I haven't used it since 2002.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 08:26 PM
09-07-2005 08:26 PM
Re: How to understand the SLS backup running process
$ STORAGE START SYSTEM_BACKUP XXXX
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 08:29 PM
09-07-2005 08:29 PM
Re: How to understand the SLS backup running process
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 08:39 PM
09-07-2005 08:39 PM
Re: How to understand the SLS backup running process
!At midnight or when you restart SLS then SLS will at SLS$SYSBAK:XXXX_SBK.COM files and schedule batch jobs in the SLS batch queue according to the parameters in the file.
you mean that the parameter(TIME_1) will actually control the backup starting time and submit it into batch queue, right ?
BTW, if my BAK.COM file is not in SLS$SYSBAK directory. how can i submit a individual job? $stor startup system_backup [directory]***.bak.com ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2005 11:12 PM
09-07-2005 11:12 PM
Re: How to understand the SLS backup running process
See HELP STORAGE START SYSTEM_BACKUP
The TIME_1,DAYS_1, parameters control when the batch job will be queued for.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 12:52 PM
09-08-2005 12:52 PM
Re: How to understand the SLS backup running process
and i have other parameters can not be understood...
1.could you explain this one by one for me?
qualifiers :== /record/since=backup/igno=(interlock,nobackup)/media_format=compaction/bloack_size=65024/fast
2.DENSITY :== 0
(1)this means no compaction, right? but why it's ")/media_format=compaction" in the Question-1?
(2)the default value is 6250(from SYSBAK.TEMPLATE),what's the unit of 6250?
3.REEL_SIZE == 2400
what's the reel size ?
4.QUICHLOAD_RETRIES == 80
it's 80 seconds or 80 trials ?
(if it's 80 sec)it will try to mount the disk which is in the drive? if it cannot mount it on or the disk is not free, after the 80 sec, what will it do ? try to load the next tape in and mount? (if it's right, after trying all tapes in the slot
5.SAVESET_GEN == "F$EXTRA(0,15,DO_DISK)+"".BAK"""
there are many """" here, i cannot seperate them, could you tell me the function of quote marks one by one?
many questions,... hehe~ sorry for that, i'm a green hand :P
thanks indeed in advance !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 02:08 PM
09-08-2005 02:08 PM
Re: How to understand the SLS backup running process
qualifiers :== /record/since=backup/igno=(interlock,nobackup)/media_format=compaction/blo
ack_size=65024/fast
These are all qualifiers for BACKUP - record, fast, and since=backup all indicate an incremental backup. igno=interlock is standard, ignore=nobackup is not - has the potential for making backups a lot longer than they need to be. block_size=65024 is close to the maximum blocking factor for files to be put on tape. The various qualifiers for the BACKUP command are important to learn - I suggest study of the relevant section(s) of the System Manager's Manual to gain a better understanding of BACKUP. SLS will be easier to understand with this background.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 02:12 PM
09-08-2005 02:12 PM
Re: How to understand the SLS backup running process
(1)this means no compaction, right? but why it's ")/media_format=compaction" in the Question-1?
(2)the default value is 6250(from SYSBAK.TEMPLATE),what's the unit of 6250?
3.REEL_SIZE == 2400
what's the reel size ?
Also, study of the SLS manuals will be helpful here, as well. The 6250 value refers to bpi - a measurement important in the day of reel-to-reel tape drives. 2400 refers to the number of feet on the tape reel. I'm not sure if these parameters are important today, but a check of the SLS manual(s) may help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 03:13 PM
09-08-2005 03:13 PM
Re: How to understand the SLS backup running process
but i cannot find "SLS" in system manual, is there any special document for SLS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 08:35 PM
09-08-2005 08:35 PM
Re: How to understand the SLS backup running process
I use DENSITY:= COMP which results in /MEDIA=COMPACT being added to my backup commands.
REEL_SIZE is really relevant - leave it as 2400.
You need to find a copy of the SLS Documentation - there are several manuals. SLS is a strange and complicated product until you get used to it.
QUICKLOAD_RETRIES is number of retries.
The SAVESET_GEN is taking the first 15 characters of the disk name and adding .BCK
Remove the outer " then replace each "" by " and it may be clearer. Read the DCL manual on the fun with quotes as that line is just a DCL symbol assignment statement.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 11:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 12:43 AM
09-09-2005 12:43 AM
Re: How to understand the SLS backup running process
another confused thing
in the BAK file here,
DENSITY = 0
QUALIFIER :== /BACKUP=COMPACTION
i think there's a conflict here...
what's your idea on it ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 12:49 AM
09-09-2005 12:49 AM
Re: How to understand the SLS backup running process
the URL you give me is not listing the SLS document... maybe i have no idea to use it :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 12:50 AM
09-09-2005 12:50 AM
Re: How to understand the SLS backup running process
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 02:55 AM
09-09-2005 02:55 AM
Re: How to understand the SLS backup running process
DENSITY = 0 (means no compact, right?)
QUALIFIER :== /BACKUP=COMPACTION (means having compact, right?)
why did you say no conflict on these two sentences?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2005 05:51 AM
09-09-2005 05:51 AM
Re: How to understand the SLS backup running process
The URL should bring you to a page that lists the three SLS manuals; the icons to the left of the names of the manuals are "clickable". There are PDF and Bookreader versions of each of those manuals. Just click on the icons to view them.
--Brad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2005 03:28 AM
09-10-2005 03:28 AM
Re: How to understand the SLS backup running process
As I said SLS is a strange and confusing product at times and you need to spend some time with the manuals.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2005 05:48 PM
09-11-2005 05:48 PM
Re: How to understand the SLS backup running process
i got the files..
but, do you have following guide? i cannot find them on HP website
Media and Device Management Services
for OpenVMS Guide to Operations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2005 11:01 PM
09-11-2005 11:01 PM
Re: How to understand the SLS backup running process
Google is your friend. I found this at a site in AU (warning - URL wrapped):
http://www.sysworks.com.au/disk$vaxdocsep961
/decw$book/d3zuaa42.decw$book
Good luck!
--Brad