ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahq_5.4.0.1/rzahqadvisor14.htm

215 lines
7.9 KiB
HTML
Raw Normal View History

2024-04-02 14:02:31 +00:00
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
<html>
<head>
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
<!-- 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. -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>Windows Server installation advisor--Message logging</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var errMess2 = "If you log messages to a server message queue, you must specify the name of the message queue.";
var errMess4 = "Enter the name of a library.";
var errMess1 = "The message queue name is not in a valid format. The first character must be a letter (A-Z), dollar sign ($), pound sign (#), or 'at' sign (@). The remaining characters can contain these characters as well as digits (0-9), underscores (_), and periods (.).";
var errMess3 = "The library name is not in a valid format. The first character must be a letter (A-Z), dollar sign ($), pound sign (#), or 'at' sign (@). The remaining characters can contain these characters as well as digits (0-9), underscores (_), and periods (.).";
//START NON-TRANSLATABLE
//Obtain name of HTML file in parent frame.
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
function checkFrame() {
//Is the hidden frame already loaded with the correct html?
if (parentUrl != "rzahqadvisor1.htm") {
window.location = "rzahqadvisor1.htm"; //load advisor frameset
return;
} else {
//Obtain name of HTML file in hidden frame.
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
if (hiddenUrl != "rzahqadvhidden.htm") {
//Correct HTML not loaded, load it
parent.hidden.window.location = "rzahqadvhidden.htm";
} else { //already loaded
getData();
}
}
}
function getData() {
if (!isEmpty(parent.hidden.v1[20])) {
if (parseInt(parent.hidden.v1[20]) == 2) {
document.form1.rad[1].checked = true;
} else {
if (parseInt(parent.hidden.v1[20]) == 3) {
document.form1.rad[2].checked = true;
if (!isEmpty(parent.hidden.v1[21])) {
document.form1.msg.value = parent.hidden.v1[21];
}
if (parseInt(parent.hidden.v1[22]) == 2) {
document.form1.raddy[1].checked = true;
} else {
if (parseInt(parent.hidden.v1[22]) == 3) {
document.form1.raddy[2].checked = true;
if (!isEmpty(parent.hidden.v1[23])) {
document.form1.otherspec.value = parent.hidden.v1[23];
}
}
}
}
}
}
}
function onNext() {
parent.hidden.v1[20] = "";
parent.hidden.v1[21] = "";
parent.hidden.v1[22] = "";
parent.hidden.v1[23] = "";
//Save data
if (document.form1.rad[0].checked == true) {
parent.hidden.v1[20] = "1";
} else {
if (document.form1.rad[1].checked == true ) {
parent.hidden.v1[20] = "2";
} else {
//log messages to server message queue
parent.hidden.v1[20] = "3"
if (!isEmpty(document.form1.msg.value)) {
if (isValidName(document.form1.msg.value) == false) {
alert(errMess1);
return;
} else {
parent.hidden.v1[21] = document.form1.msg.value;
}
} else {
alert(errMess2);
document.form1.msg.focus();
return;
}
if (document.form1.raddy[0].checked == true) {
parent.hidden.v1[22] = "1";
} else {
if (document.form1.raddy[1].checked == true) {
parent.hidden.v1[22] = "2";
} else {
parent.hidden.v1[22] = "3";
if (!isEmpty(document.form1.otherspec.value)) {
if (isValidName(document.form1.otherspec.value) == false) {
alert(errMess3);
return;
} else {
parent.hidden.v1[23] = document.form1.otherspec.value;
}
} else {
alert(errMess4);
document.form1.otherspec.focus();
return;
}
}
}
}
}
//Next page
window.location = "rzahqadvisor15.htm";
}
function onBack() {
if (parent.hidden.v1[3] == "iSCSI")
window.location = "rzahqadvisor13_5b.htm";
else
window.location = "rzahqadvisor13_5.htm";
}
function selectTwoRadios() {
selectRadio(2);
document.form1.raddy[2].checked = true;
}
//END NON-TRANSLATABLE
////////// -->
</script>
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
</head>
<body onLoad="checkFrame()">
<h2>Windows Server installation advisor</h2>
<strong>Message logging</strong>
<p>The message queue is where all event logs and errors associated with the server are
sent. Message logging is used to specify whether messages
are to be stored and the name of the message queue and the library where the event logs and errors will be sent.
If the message queue does not already exist, the INSWNTSVR (Install Windows Server) command creates it.
You should specify a message queue name and library. You can also specify <b>Log messages to a job log</b>, which sends non severe errors
to the job log of the user administration monitor job and severe errors to QSYSOPR. If you specify <b>Do not log messages</b>, non severe errors are not sent
to i5/OS, and severe errors are sent to QSYSOPR.</p>
<p>How do you want to log messages?</p>
<form name="form1">
<blockquote>
<table>
<tr>
<td><input type="radio" name="rad" value="tojoblog" id="tojoblog" checked></td>
<td><label for="tojoblog">Log messages to job log</label></td>
</tr>
<tr>
<td><input type="radio" name="rad" value="nolog" id="nolog"></td>
<td><label for="nolog">Do not log messages</label></td>
</tr>
<tr>
<td><input type="radio" name="rad" value="toserver" id="toserver"></td>
<td><label for="toserver">Log messages to server message queue</label></td>
</tr>
<tr>
<td></td>
<td><label for="msg">Message queue name:</label> <INPUT type="text" size="20" maxlength="10" name="msg" id="msg" onKeyPress="selectRadio(2)"></td>
</tr>
<tr>
<td></td>
<td>Message queue library</td>
</tr>
<tr>
<td></td>
<td>
<blockquote>
<table>
<tr>
<td><input type="radio" name="raddy" value="liblist" id="liblist" checked onClick="selectRadio(2)"></td>
<td><label for="liblist">Library list</label></td>
</tr>
<tr>
<td><input type="radio" name="raddy" value="current" id="current" onClick="selectRadio(2)"></td>
<td><label for="current">Current library</label></td>
</tr>
<tr>
<td><input type="radio" name="raddy" value="other" id="library" onClick="selectRadio(2)"></td>
<td><label for="library">Other library name:</label>
<input type="text" name="otherspec" id="library" size="20" maxlength="10" onKeyPress="selectTwoRadios()"></td>
</tr>
</table>
</blockquote>
</td>
</tr>
</table>
</blockquote>
<br><br>
<center>
<input type="button" value="&lt;&lt; Back" onClick="onBack()">
<input type="button" value="Next &gt;&gt;" onClick="onNext()">
</center>
</form>
</body>
</html>