[go: up one dir, main page]

Menu

[r3]: / www / help.php  Maximize  Restore  History

Download this file

114 lines (99 with data), 5.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
VMLMAT: VM Linux Management and Archival Tool.
Copyright (c) 2007, Ronnie Michael, BMC Software Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the BMC Software Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<html><head><title>VMLMAT VM Linux Management and Archival Tool</title>
<link rel="stylesheet" type="text/css" href="/templates/astyle.css" title="standard"/>
</head><body>
<div id="banner"><h1><a href="index.php">VMLMAT</a></h1><h2>Linux Management System</h2></div>
<div id="leftcontent">
</div>
<div id="centercontent">
<p><b> HELP PAGE</b></p>
<p>
The user can click on the top upper menu title at any time to return to the main page.<br />
<br />
The user is provided a list of standard clone images and user backups.<br />
On the upper right are four menu functions: <br />
<b>My List:</b> Displays the hostnames that a user is an owner of and can bring up or down.<br />
<b>Hostname:</b> Displays all the hostnames that can be brought up or down and their status.<br />
<b>Admin:</b> Support page for maintenance.<br />
<b>Help:</b> This page.<br />
<br />
If a user clicks on the "backup list of images" they will be directed to a page to specify the user's directory of their backups.<br />
<br />
If a user clicks on a standard image, they can restore a standard image onto their machine.<br />
<br />
The user presses the image link and has a form to fill out.
<br />
This form submits a job. It takes from 2 to 15 minutes for the process to complete.
<br />
During the restore process job, the target hostname linux machine is automatically logged off.
<br />
During a typical restore, the entire minidisk that contained / (the /dev/dasda1 device) is formatted, mkfile, tarball is loaded, and the hostname and ip address is modified.
<br />
The target hostname system is started, and the user is notified when the process is complete. The user may then log in with SSH, etc.
<br />
If the restore was from a standard image, the default access, root, and password are provided.
<br />
If a User backup was made then all /etc personality, user accts, passwords, and other configurations of the machine remain as when the backup was taken except the hostname and IP addr are changed to the specified hostname on the restore form.
<br />
<br />
User backups list can be accessed by userid or group name and from this list, a restore can be made.
<br />
The user has a "START A BACKUP" right menu function link to setup a backup job. The user is informed that their system will be shutdown and logged off.
<br />
After the job is finished, the user has the option to have the system bring their machine up.
<br />
The user has a "DELETE A BACKUP" right menu function link to delete a backup. The user is provided their list of backups as buttons and may press one to delete that specific backup. The user can only delete backups that they have Backup or Admin rights as owners of the hostname that the backup was taken from.
<br />
To help facilate the user and Disaster Recovery, this same user can also setup Auto-Backups on a scheduled basis and keep the latest backups by specifying the number of generations to keep. The system will automatically delete all older generations. Since VMLMAT uses a web portal and if the SysAdmin moves images for you to other VMLMAT installations, you may specify that url and manage Disaster Recovery on that host.
<br />
VMLMAT is a request processing system so the user may submit as many requests as they want at a time.
<br />
</p>
</div>
<div id="rightcontent">
<?
/* if they bookmark this throw them out if not already validated through auth.php */
session_start();
$user=$_SESSION['user'];
if (empty($user)){
#issue error message
$_SESSION['errmsg']="autherr";
session_write_close();
header("Location: http://".$_SERVER['HTTP_HOST']."/errmsg.php");
exit;
}
print "<p><b>Support links</b><br />";
$rfile = "rlinks.txt";
$fh = fopen($rfile, 'r');
if ($fh) {
while (!feof($fh)) {
$strdata = fgets($fh);
print "$strdata";
}
fclose($fh);
}
print "</p>";
?>
</div>
</body>
</html>