58 lines
3.4 KiB
HTML
58 lines
3.4 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html lang="en-us" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow" />
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<meta name="DC.Type" content="topic" />
|
|
<meta name="DC.Title" content="Example: Make independent disk pool available at startup" />
|
|
<meta name="DC.Relation" scheme="URI" content="rzalyhowiaspswork.htm" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 2002, 2006" />
|
|
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2002, 2006" />
|
|
<meta name="DC.Format" content="XHTML" />
|
|
<meta name="DC.Identifier" content="rzalystartup" />
|
|
<meta name="DC.Language" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
|
|
<link rel="stylesheet" type="text/css" href="./ic.css" />
|
|
<title>Example: Make independent disk pool available at startup</title>
|
|
</head>
|
|
<body id="rzalystartup"><a name="rzalystartup"><!-- --></a>
|
|
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
|
|
<h1 class="topictitle1">Example: Make independent disk pool available at startup</h1>
|
|
<div><p>If you need your independent disk pools to be made available in most cases
|
|
when your server is restarted, you might want to consider including the following
|
|
control language (CL) at the beginning of your Start Up Program (QSTRUP).
|
|
If you do not want the independent disk pools to be made available when you
|
|
restart the server, you can either Delete the Data Area (<a href="../cl/dltdtaara.htm">DLTDTAARA</a>) or Rename it (<a href="../cl/rnmobj.htm">RNMOBJ</a>). However,
|
|
you need to remember to either Create the Data Area (<a href="../cl/crtdtaara.htm">CRTDTAARA</a>) again or Rename it (RNMOBJ) back to the data
|
|
area being checked in your Start Up Program. Only the QSYSWRK subsystem should
|
|
be started before making the independent disk pools available. Then other
|
|
work will not compete for system resources while your independent disk pools
|
|
are being made available. </p>
|
|
<p>In this example, the data area VARYONIASP is used. You can name your data
|
|
area whatever you like. Also, in this example the QRECOVERY library contains
|
|
the data area; however, you may choose a different library that resides on
|
|
the system disk pool. </p>
|
|
<div class="p"> <pre> MONMSG MSGID(CPF0000)
|
|
QSYS/STRSBS SBSD(QSYSWRK)
|
|
QSYS/CHKOBJ OBJ(QRECOVERY/VARYONIASP) OBJTYPE(*DTAARA)
|
|
MONMSG MSGID(CPF9801) EXEC(GOTO SKIPVRYCFG)
|
|
QSYS/VRYCFG CFGOBJ(IASP1) CFGTYPE(*DEV) STATUS(*ON)
|
|
QSYS/VRYCFG CFGOBJ(IASP2) CFGTYPE(*DEV) STATUS(*ON)
|
|
SKIPVRYCFG:</pre>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="familylinks">
|
|
<div class="parentlink"><strong>Parent topic:</strong> <a href="rzalyhowiaspswork.htm">How independent disk pools work</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |