How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4

Size: px
Start display at page:

Download "How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4"

Transcription

1 How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 Download the software from Click on products then under Free products click on Starwind iscsi SAN Free Edition You will need to register to get the free serial key for the product. After installing the software Double click the icon on the desktop Starwind Management console Follow the below screenshot for step by setup instruction to configure Iscsi target I am using version 6.0 as per the screen shot above the status is Not logged in

2 Under Starwind Servers right click on the computer name show and click on connect Now the status is connected. We will configure a single target with 2 disk drive.

3 Under hostname right click on Targets and click on Add target Provide the Target Alias as I have given test1 then click on the check box allow multiple concurrent iscsi connections (Clustering) then click on next

4 If you want to make any changes you can click on back or you can click on next to continue. Now click on Finish

5 On the right had side under target list you can see our target test1 is added right click on test1 and click on add a new device to the target Click on Virtual Hard Disk and click on Next

6 Click on Image File Device and click on Next Click on create new virtual disk and click on Next

7 Input the disk name, required size and click on the browse button to save the disk image to the required folder (Please note the disk will be saved as a virtual disk file on the existing physical hard disk) Click on next

8 Keep the values default and click on next If you want to make any changes you can click back and edit the required details or click on next

9 Click on Finish Repeat the step to add one more device (Disk drive) You can see below under Devices if the virtual hard disk is added

10 As you can see I have added 2 disk of 1GB each on my target test1 Now log in to the Linux server where you need this two hard disk to be used as storage # my current hard disk partition [root@server2 ~]# fdisk -l Disk /dev/sda: 21.5 GB, bytes 255 heads, 63 sectors/track, 2610 cylinders Disk identifier: 0x00003bdc Device Boot Start End Blocks Id System /dev/sda1 * Linux Partition 1 does not end on cylinder boundary. /dev/sda e Linux LVM Disk /dev/sdb: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xa104481e

11 Device Boot Start End Blocks Id System /dev/sdb e Linux LVM Disk /dev/sdc: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xc9e6274b Device Boot Start End Blocks Id System /dev/sdc e Linux LVM Disk /dev/sdd: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xffb99b56 Device Boot Start End Blocks Id System /dev/sdd e Linux LVM Disk /dev/mapper/vg01-logvol01: 16.7 GB, bytes 255 heads, 63 sectors/track, 2024 cylinders Disk identifier: 0x Disk /dev/mapper/vg01-logvol00: 4294 MB, bytes 255 heads, 63 sectors/track, 522 cylinders Disk identifier: 0x Disk /dev/mapper/vg02-logvol00: 4294 MB, bytes 255 heads, 63 sectors/track, 522 cylinders Disk identifier: 0x [root@server2 ~]# ls -l /dev/sd?1 brw-rw root disk 8, 1 Aug 28 17:26 /dev/sda1

12 brw-rw root disk 8, 17 Aug 28 17:26 /dev/sdb1 brw-rw root disk 8, 33 Aug 28 17:26 /dev/sdc1 brw-rw root disk 8, 49 Aug 28 17:26 /dev/sdd1 # List the available iscsi package available from the yum repository [root@server2 ~]# yum list iscsi* Loaded plugins: refresh-packagekit, security Available Packages iscsi-initiator-utils.i686 ol6_latest iscsi-initiator-utils.x86_64 ol6_latest iscsi-initiator-utils-devel.i686 ol6_latest iscsi-initiator-utils-devel.x86_64 ol6_latest el el el el6 # Install the iscsi package [root@server2 ~]# yum install iscsi* Loaded plugins: refresh-packagekit, security Setting up Install Process Resolving Dependencies --> Running transaction check ---> Package iscsi-initiator-utils.x86_64 0: el6 will be installed ---> Package iscsi-initiator-utils-devel.x86_64 0: el6 will be installed --> Finished Dependency Resolution Dependencies Resolved ===================================================================================== ===================================================================================== Package Arch Version Repository Size ===================================================================================== ===================================================================================== ==================================== Installing: iscsi-initiator-utils x86_ el6 ol6_latest 677 k iscsi-initiator-utils-devel x86_ el6 ol6_latest 46 k Transaction Summary ===================================================================================== =====================================================================================

13 Install 2 Package(s) Total download size: 723 k Installed size: 2.5 M Is this ok [y/n]: y Downloading Packages: (1/2): iscsi-initiator-utils el6.x86_64.rpm 677 kb 00:04 (2/2): iscsi-initiator-utils-devel el6.x86_64.rpm 46 kb 00: Total 116 kb/s 723 kb 00:06 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : iscsi-initiator-utils el6.x86_64 1/2 Installing : iscsi-initiator-utils-devel el6.x86_64 2/2 Verifying : iscsi-initiator-utils-devel el6.x86_64 1/2 Verifying : iscsi-initiator-utils el6.x86_64 2/2 iscsi-initiator-utils- Installed: iscsi-initiator-utils.x86_64 0: el6 devel.x86_64 0: el6 Complete! # Start the Services [root@server2 ~]# service iscsi restart Stopping iscsi: [ OK ] [root@server2 ~]# service iscsid start [root@server2 ~]# chkconfig iscsid on [root@server2 ~]# chkconfig iscsi on # discover the iscsi targets the ip address given is my windows machine where I have install the starwind software and configured the target and disks. [root@server2 ~]# iscsiadm -m discovery -t st -p

14 :3260,-1 iqn com.starwindsoftware:sunil-pc-test1 # Login to the iscsi targets [root@server2 ~]# iscsiadm -m node -l Logging in to [iface: default, target: iqn com.starwindsoftware:sunil-pc-test1, portal: ,3260] (multiple) Login to [iface: default, target: iqn com.starwindsoftware:sunil-pc-test1, portal: ,3260] successful. # check the mapping which iscsi lun is mapped to the physical disk [root@server2 ~]# cd /dev/disk/by-path/ [root@server2 by-path]# ls -ltr total 0 lrwxrwxrwx. 1 root root 9 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:2:0 ->../../sdc lrwxrwxrwx. 1 root root 9 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:1:0 ->../../sdb lrwxrwxrwx. 1 root root 9 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:3:0 ->../../sdd lrwxrwxrwx. 1 root root 10 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:2:0-part1 ->../../sdc1 lrwxrwxrwx. 1 root root 10 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:1:0-part1 ->../../sdb1 lrwxrwxrwx. 1 root root 10 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:3:0-part1 ->../../sdd1 lrwxrwxrwx. 1 root root 9 Aug 28 17:26 pci-0000:00:07.1-scsi-1:0:0:0 ->../../sr0 lrwxrwxrwx. 1 root root 9 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:0:0 ->../../sda lrwxrwxrwx. 1 root root 10 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:0:0-part2 ->../../sda2 lrwxrwxrwx. 1 root root 10 Aug 28 17:26 pci-0000:00:10.0-scsi-0:0:0:0-part1 ->../../sda1 lrwxrwxrwx. 1 root root 9 Aug 28 20:28 ip :3260-iscsi-iqn com.starwindsoftware:sunil-pc-test1-lun-1 ->../../sdf lrwxrwxrwx. 1 root root 9 Aug 28 20:28 ip :3260-iscsi-iqn com.starwindsoftware:sunil-pc-test1-lun-0 ->../../sde sdf and sde are the two new disk. # Automatic login to iscsi target during boot [root@server2 by-path]# iscsiadm -m node -T iqn com.starwindsoftware:sunil-pc-test1 -p op update -n node.startup -v automatic # check the disk using fdisk [root@server2 /]# fdisk -l Disk /dev/sda: 21.5 GB, bytes 255 heads, 63 sectors/track, 2610 cylinders Disk identifier: 0x00003bdc

15 Device Boot Start End Blocks Id System /dev/sda1 * Linux Partition 1 does not end on cylinder boundary. /dev/sda e Linux LVM Disk /dev/sdb: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xa104481e Device Boot Start End Blocks Id System /dev/sdb e Linux LVM Disk /dev/sdc: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xc9e6274b Device Boot Start End Blocks Id System /dev/sdc e Linux LVM Disk /dev/sdd: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders Disk identifier: 0xffb99b56 Device Boot Start End Blocks Id System /dev/sdd e Linux LVM Disk /dev/mapper/vg01-logvol01: 16.7 GB, bytes 255 heads, 63 sectors/track, 2024 cylinders Disk identifier: 0x Disk /dev/mapper/vg01-logvol00: 4294 MB, bytes 255 heads, 63 sectors/track, 522 cylinders

16 Disk identifier: 0x Disk /dev/mapper/vg02-logvol00: 4294 MB, bytes 255 heads, 63 sectors/track, 522 cylinders Disk identifier: 0x Disk /dev/sdf: 1073 MB, bytes 34 heads, 61 sectors/track, 1011 cylinders Units = cylinders of 2074 * 512 = bytes Disk identifier: 0x Disk /dev/sde: 1073 MB, bytes 34 heads, 61 sectors/track, 1011 cylinders Units = cylinders of 2074 * 512 = bytes Disk identifier: 0x # now format the new detected disk [root@server2 /]# fdisk /dev/sdf Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel with disk identifier 0xea693bea. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won't be recoverable. Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to sectors (command 'u'). Command (m for help): n Command action e extended p primary partition (1-4) 1 Invalid partition number for type `1' Command action e extended

17 p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-1011, default 1): Using default value 1 Last cylinder, +cylinders or +size{k,m,g} (1-1011, default 1011): Using default value 1011 Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. [root@server2 /]# fdisk /dev/sde Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel Building a new DOS disklabel with disk identifier 0xc4c0bd58. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won't be recoverable. Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to sectors (command 'u'). Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-1011, default 1): Using default value 1 Last cylinder, +cylinders or +size{k,m,g} (1-1011, default 1011): Using default value 1011 Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. # create the ext4 filesystem [root@server2 /]# mkfs.ext4 /dev/sde1 mke2fs (17-May-2010) Filesystem label= OS type: Linux Block size=4096 (log=2)

18 Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks inodes, blocks blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks= block groups blocks per group, fragments per group 8192 inodes per group Superblock backups stored on blocks: 32768, 98304, , Writing inode tables: done Creating journal (4096 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 33 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. # create the ext4 filesystem [root@server2 /]# mkfs.ext4 /dev/sdf1 mke2fs (17-May-2010) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks inodes, blocks blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks= block groups blocks per group, fragments per group 8192 inodes per group Superblock backups stored on blocks: 32768, 98304, , Writing inode tables: done Creating journal (4096 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 37 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. [root@server2 /]# ls -l /dev/sd?1 brw-rw root disk 8, 1 Aug 28 20:33 /dev/sda1 brw-rw root disk 8, 17 Aug 28 20:33 /dev/sdb1

19 brw-rw root disk 8, 33 Aug 28 20:33 /dev/sdc1 brw-rw root disk 8, 49 Aug 28 20:33 /dev/sdd1 brw-rw root disk 8, 65 Aug 28 20:39 /dev/sde1 brw-rw root disk 8, 81 Aug 28 20:39 /dev/sdf1 # create the mount point directories [root@server2 /]# mkdir /data1 [root@server2 /]# mkdir /data2 # mount the disk to the mount directories [root@server2 /]# mount /dev/sde1 /data1 [root@server2 /]# mount /dev/sdf1 /data2 # create some files to test [root@server2 /]# cd /data1 [root@server2 data1]# touch test1 test2 test3 # create some files to test [root@server2 data1]# cd /data2 [root@server2 data2]# touch test4 test5 test6 [root@server2 data2]# ls -ltr total 16 drwx root root Aug 28 20:45 lost+found -rw-r--r--. 1 root root 0 Aug 28 20:46 test6 -rw-r--r--. 1 root root 0 Aug 28 20:46 test5 -rw-r--r--. 1 root root 0 Aug 28 20:46 test4 [root@server2 data2]# cd /data1 [root@server2 data1]# ls lost+found test1 test2 test3 [root@server2 data1]# ls -ltr total 16 drwx root root Aug 28 20:44 lost+found -rw-r--r--. 1 root root 0 Aug 28 20:46 test3 # Edit the fstab file [root@server2 data1]# vi /etc/fstab # /etc/fstab # Created by anaconda on Tue Aug 6 13:01: # # Accessible filesystems, by reference, are maintained under '/dev/disk' # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info #

20 /dev/mapper/vg01-logvol01 / ext4 defaults 1 1 UUID=7d ba7-a3cf-1aa99fc2e521 /boot ext4 defaults 1 2 /dev/mapper/vg01-logvol00 swap swap defaults 0 0 tmpfs /dev/shm tmpfs defaults 0 0 devpts /dev/pts devpts gid=5,mode= sysfs /sys sysfs defaults 0 0 proc /proc proc defaults 0 0 /dev/sde1 /data1 ext4 _netdev 1 1 /dev/sdf1 /data2 ext4 _netdev 1 1 The last 2 line is the newly added line for the iscsi which we mounted on /data1 and /data2 directories respectively

BackTrack Hard Drive Installation

BackTrack Hard Drive Installation BackTrack Hard Drive Installation BackTrack Development Team jabra [at] remote-exploit [dot] org Installing Backtrack to a USB Stick or Hard Drive 1 Table of Contents BackTrack Hard Drive Installation...3

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Support Procedures Seting Up iscsi volumes on CENTOS 5, RedHat 5, Fedora 7 and, Debian Ubutu Linux Legal Notices Warranty The only warranties for HP products

More information

Drobo How-To Guide. What You Will Need. Use a Drobo iscsi Array with a Linux Server

Drobo How-To Guide. What You Will Need. Use a Drobo iscsi Array with a Linux Server In today s IT environments, administrators need to learn and understand how to make all of the components that provide services to their users work together. These components include network devices, servers,

More information

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose

More information

How To Set Up Software Raid In Linux 6.2.2 (Amd64)

How To Set Up Software Raid In Linux 6.2.2 (Amd64) Software RAID on Red Hat Enterprise Linux v6 Installation, Migration and Recovery November 2010 Ashokan Vellimalai Raghavendra Biligiri Dell Enterprise Operating Systems THIS WHITE PAPER IS FOR INFORMATIONAL

More information

Parallels Virtuozzo Containers 4.7 for Linux

Parallels Virtuozzo Containers 4.7 for Linux Parallels Virtuozzo Containers 4.7 for Linux Deploying Clusters in Parallels-Based Systems Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd.

More information

On Disk Encryption with Red Hat Enterprise Linux

On Disk Encryption with Red Hat Enterprise Linux On Disk Encryption with Red Hat Enterprise Linux Author: Contact: Copyright: URL: Bowe Strickland, Curriculum Manager bowe@redhat.com Copyright 2011, Red Hat, Inc. All rights reserved. http://people.redhat.com/~bowe/summit/2011/tot/on_disk_encryption

More information

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012

StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 StarWind iscsi SAN: Configuring HA File Server for SMB NAS February 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which

More information

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

StarWind iscsi SAN Configuring HA File Server for SMB NAS

StarWind iscsi SAN Configuring HA File Server for SMB NAS Hardware-less VM Storage StarWind iscsi SAN Configuring HA File Server for SMB NAS DATE: FEBRUARY 2012 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software

More information

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox An Oracle White Paper July 2012 Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox Introduction... 1 Overview... 2 The Concept... 2 The Process Flow... 3 What You Need to Get Started...

More information

StarWind iscsi SAN Software: Using with Citrix XenServer

StarWind iscsi SAN Software: Using with Citrix XenServer StarWind iscsi SAN Software: Using with Citrix XenServer www.starwindsoftware.com Copyright 2008-2010. All rights reserved. COPYRIGHT Copyright 2008-2010. All rights reserved. No part of this publication

More information

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008 StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2008 www.starwindsoftware.com Copyright 2008-2012. All rights reserved. COPYRIGHT Copyright 2008-2012. All rights reserved.

More information

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk.

Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk. Linux Template Creation Guide How to build your own Linux VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Installing Xen Hypervisor... 2 2. Installing DomU (Paravirtualized)... 5 3. Installing

More information

FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection-

FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection- FUJITSU Storage ETERNUS DX Configuration Guide -Server Connection- (iscsi) for Linux This page is intentionally left blank. Preface This manual briefly explains the operations that need to be performed

More information

StarWind iscsi SAN Software: Using StarWind with VMware ESX Server

StarWind iscsi SAN Software: Using StarWind with VMware ESX Server StarWind iscsi SAN Software: Using StarWind with VMware ESX Server www.starwindsoftware.com Copyright 2008-2010. All rights reserved. COPYRIGHT Copyright 2008-2010. All rights reserved. No part of this

More information

StarWind Virtual SAN Installing & Configuring a SQL Server 2012 Failover Cluster

StarWind Virtual SAN Installing & Configuring a SQL Server 2012 Failover Cluster #1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Installing & Configuring a SQL Server 2012 Failover JANUARY 2015 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind

More information

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM laptop will need to have 10GB of free space to install download the latest VirtualBox software from www.sun.com make sure you pick

More information

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2003

StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2003 StarWind iscsi SAN Software: Using StarWind with MS Cluster on Windows Server 2003 www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

How to Restore a Linux Server Using Bare Metal Restore

How to Restore a Linux Server Using Bare Metal Restore How to Restore a Linux Server Using Bare Metal Restore This article refers to firmware version 5.4 and higher, and the Barracuda Linux Backup Agent 5.4 and higher. Use the steps in this article to restore

More information

Installing and Configuring a. SQL Server 2012 Failover Cluster

Installing and Configuring a. SQL Server 2012 Failover Cluster Installing and Configuring a SQL Server 2012 Failover Cluster Edwin M Sarmiento Applies to: SQL Server 2012 SQL Server 2014 P a g e 1 Copyright This document is provided as-is. Information and views expressed

More information

AlienVault Offline Key Activation

AlienVault Offline Key Activation Complete. Simple. Affordable Copyright 2014 AlienVault. All rights reserved. AlienVault, AlienVault Unified Security Management, AlienVault USM, AlienVault Open Threat Exchange, AlienVault OTX, Open Threat

More information

StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with Hyper-V Cluster

StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with Hyper-V Cluster #1 HyperConverged Appliance for SMB and ROBO StarWind Virtual SAN Installation and Configuration of Hyper-Converged 2 Nodes with MARCH 2015 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the

More information

RedHat (RHEL) System Administration Course Summary

RedHat (RHEL) System Administration Course Summary Contact Us: (616) 875-4060 RedHat (RHEL) System Administration Course Summary Length: 5 Days Prerequisite: RedHat fundamentals course Recommendation Statement: Students should have some experience with

More information

Oracle Databases on VMware RAC Deployment Guide. December 2011

Oracle Databases on VMware RAC Deployment Guide. December 2011 December 2011 This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more patents listed at http://www.vmware.com/download/patents.html.

More information

Configuring Offboard Storage Guide

Configuring Offboard Storage Guide Juniper Secure Analytics Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-12-03 Copyright Notice Copyright 2014 Juniper

More information

INSTALL ZENTYAL SERVER

INSTALL ZENTYAL SERVER GUIDE FOR Zentyal Server is a small business server based on Ubuntu s LTS server version 10.04 and the ebox platform. It also has the LXDE desktop installed with Firefox web browser and PCMAN File manager.

More information

ECT362 Installing Linux Virtual Machine in KL322

ECT362 Installing Linux Virtual Machine in KL322 ECT362 Installing Linux Virtual Machine in KL322 The steps below outline how to install Linux under Windows as a virtual machine. This install uses the Ubuntu 10.04 distribution of Linux along with the

More information

NI Real-Time Hypervisor for Windows

NI Real-Time Hypervisor for Windows QUICK START GUIDE NI Real-Time Hypervisor Version 2.1 The NI Real-Time Hypervisor provides a platform you can use to develop and run LabVIEW and LabVIEW Real-Time applications simultaneously on a single

More information

Shared Storage Setup with System Automation

Shared Storage Setup with System Automation IBM Tivoli System Automation for Multiplatforms Authors: Markus Müller, Fabienne Schoeman, Andreas Schauberer, René Blath Date: 2013-07-26 Shared Storage Setup with System Automation Setup a shared disk

More information

Install Solaris on Oracle Virtual Box:

Install Solaris on Oracle Virtual Box: Install Solaris on Oracle Virtual Box: Download software as below: Oracle Virtual Box Version: 4.2.18 (VirtualBox-4.2.18-88781-Win) http://www.oracle.com/technetwork/server-storage/virtualbox/downloads/index.html

More information

StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013

StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013 StarWind iscsi SAN & NAS: Configuring HA File Server on Windows Server 2012 for SMB NAS January 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks

More information

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0 LBNC Compute Cluster Installation and Configuration Author: Markus Baertschi Owner: Markus Baertschi Customer: LBNC Subject: LBNC Compute Cluster Installation and Configuration Page 1 of 14 Contents 1.

More information

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

Cluster Configuration Manual Cluster configuration on Database Servers

Cluster Configuration Manual Cluster configuration on Database Servers Cluster configuration on Database Servers - 1 - Table of Contents 1. PREREQUISITES BEFORE SETTING UP CLUSTER... 3 2. INSTALLING CLUSTER PACKAGES... 3 3. CLUSTER CONFIGURATION... 4 3.1 CREATE NEW CONFIGURATION...

More information

StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008

StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008 StarWind iscsi SAN Software: Using an existing SAN for configuring High Availability storage with Windows Server 2003 and 2008 www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT

More information

ucloud server User Guide v3.0 (2013.01)

ucloud server User Guide v3.0 (2013.01) ucloud server User Guide v3.0 (2013.01) KT Revision history Date of revision Version Cause of revision Contents of revision 2011.03.01 2012.02.01 2012.03.01 2012.05.01 2013.01.07 2013.01.08 1.0 2.0 2.1

More information

Navigating the Rescue Mode for Linux

Navigating the Rescue Mode for Linux Navigating the Rescue Mode for Linux SUPPORT GUIDE DEDICATED SERVERS ABOUT THIS GUIDE This document will take you through the process of booting your Linux server into rescue mode to identify and fix the

More information

Linux Development Environment Description Based on VirtualBox Structure

Linux Development Environment Description Based on VirtualBox Structure Linux Development Environment Description Based on VirtualBox Structure V1.0 1 VirtualBox is open source virtual machine software. It mainly has three advantages: (1) Free (2) compact (3) powerful. At

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

Cloud Computing. Command Line Tools

Cloud Computing. Command Line Tools Cloud Computing Command Line Tools AWS Command Line Tools Everybody (or nearly everybody) loves GUI. AWS web console is capable of performing many cloud computing functions, but lacks the power of advanced

More information

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system.

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system. Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) All commands run from terminal as super user. Default CentOS 6.3 installation with two hard drives, /dev/sda

More information

Partitioning and Formatting Reference Guide

Partitioning and Formatting Reference Guide Partitioning and Formatting Reference Guide This guide provides simple guidelines for the initial setup of your hard disk drive using the most common methods and utilities available within the following

More information

USB 2.0 Flash Drive User Manual

USB 2.0 Flash Drive User Manual USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6

More information

SteelEye Protection Suite for Linux: Apache/MySQL. Evaluation Guide

SteelEye Protection Suite for Linux: Apache/MySQL. Evaluation Guide : Apache/MySQL This document and the information herein is the property of SIOS Technology Corp. Any unauthorized use and reproduction is prohibited. SIOS Technology Corp. makes no warranties with respect

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

WES 9.2 DRIVE CONFIGURATION WORKSHEET WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may

More information

StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013

StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013 StarWind iscsi SAN & NAS: Configuring HA Shared Storage for Scale- Out File Servers in Windows Server 2012 January 2013 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software

More information

Automation Engine 14. Troubleshooting

Automation Engine 14. Troubleshooting 4 Troubleshooting 2-205 Contents. Troubleshooting the Server... 3. Checking the Databases... 3.2 Checking the Containers...4.3 Checking Disks...4.4.5.6.7 Checking the Network...5 Checking System Health...

More information

StarWind iscsi SAN: Global Deduplication with Veeam Backup&Replication

StarWind iscsi SAN: Global Deduplication with Veeam Backup&Replication StarWind iscsi SAN: Global Deduplication with Veeam Backup&Replication May 2012 TRADEMARKS StarWind, StarWind Software, and the StarWind and StarWind Software logos are trademarks of StarWind Software

More information

Backing up AIR to Microsoft Windows

Backing up AIR to Microsoft Windows Backing up AIR to Microsoft Windows Dear Valued Customer, Avaya realizes the importance of your data and the significance of a backup and restore strategy for this data. To assist you in performing a backup

More information

StarWind iscsi SAN: Configuring Global Deduplication May 2012

StarWind iscsi SAN: Configuring Global Deduplication May 2012 StarWind iscsi SAN: Configuring Global Deduplication May 2012 TRADEMARKS StarWind, StarWind Software, and the StarWind and StarWind Software logos are trademarks of StarWind Software that may be registered

More information

Configure NFS Staging for ACS 5.x Backup on Windows and Linux

Configure NFS Staging for ACS 5.x Backup on Windows and Linux Configure NFS Staging for ACS 5.x Backup on Windows and Linux Document ID: 119030 Contributed by Piotr Borowiec and Aditya Ganjoo, Cisco TAC Engineers. Jul 21, 2015 Contents Introduction Prerequisites

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright

More information

Using iscsi with BackupAssist. User Guide

Using iscsi with BackupAssist. User Guide User Guide Contents 1. Introduction... 2 Documentation... 2 Terminology... 2 Advantages of iscsi... 2 Supported environments... 2 2. Overview... 3 About iscsi... 3 iscsi best practices with BackupAssist...

More information

1. Data Domain Pre-requisites. 2. Enabling OST

1. Data Domain Pre-requisites. 2. Enabling OST 1. Data Domain Pre-requisites Before we begin to configure NetBackup, we need to verify the following:- Administrator rights and network access to the NetBackup master and media servers That the NetBackup

More information

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015)

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Access CloudStack web interface via: Internal access links: http://cloudstack.doc.ic.ac.uk

More information

StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012

StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012 StarWind iscsi SAN & NAS: Configuring HA Storage for Hyper-V October 2012 TRADEMARKS StarWind, StarWind Software and the StarWind and the StarWind Software logos are trademarks of StarWind Software which

More information

Setting up VMware ESXi for 2X VirtualDesktopServer Manual

Setting up VMware ESXi for 2X VirtualDesktopServer Manual Setting up VMware ESXi for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2

Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2 Installing and Configuring a SQL Server 2014 Multi-Subnet Cluster on Windows Server 2012 R2 Edwin Sarmiento, Microsoft SQL Server MVP, Microsoft Certified Master Contents Introduction... 3 Assumptions...

More information

StarWind iscsi SAN Software: Providing shared storage for Hyper-V's Live Migration feature on two physical servers

StarWind iscsi SAN Software: Providing shared storage for Hyper-V's Live Migration feature on two physical servers StarWind iscsi SAN Software: Providing shared storage for Hyper-V's Live Migration feature on two physical servers www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright

More information

SIOS Protection Suite for Linux v8.3.0. Postfix Recovery Kit Administration Guide

SIOS Protection Suite for Linux v8.3.0. Postfix Recovery Kit Administration Guide SIOS Protection Suite for Linux v8.3.0 Postfix Recovery Kit Administration Guide July 2014 This document and the information herein is the property of SIOS Technology Corp. (previously known as SteelEye

More information

Drobo How-To Guide. Topics. What You Will Need. Prerequisites. Deploy Drobo B1200i with Microsoft Hyper-V Clustering

Drobo How-To Guide. Topics. What You Will Need. Prerequisites. Deploy Drobo B1200i with Microsoft Hyper-V Clustering Multipathing I/O (MPIO) enables the use of multiple iscsi ports on a Drobo SAN to provide fault tolerance. MPIO can also boost performance of an application by load balancing traffic across multiple ports.

More information

Abstract. Microsoft Corporation Published: August 2009

Abstract. Microsoft Corporation Published: August 2009 Linux Integration Components Version 2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:

More information

Apache Hadoop Storage Provisioning Using VMware vsphere Big Data Extensions TECHNICAL WHITE PAPER

Apache Hadoop Storage Provisioning Using VMware vsphere Big Data Extensions TECHNICAL WHITE PAPER Apache Hadoop Storage Provisioning Using VMware vsphere Big Data Extensions TECHNICAL WHITE PAPER Table of Contents Apache Hadoop Deployment on VMware vsphere Using vsphere Big Data Extensions.... 3 Local

More information

USB bootable Ubuntu Kickstart Howto

USB bootable Ubuntu Kickstart Howto USB bootable Ubuntu Kickstart Howto (Version 1.0) 10(1)/2008-OTC/CHN-PROJECT - OPEN TECHNOLOGY CENTRE NATIONAL INFORMATICS CENTRE DEPARTMENT OF INFORMATION TECHNOLOGY CHENNAI Open Technology Centre, NIC,

More information

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption This is a step-by-step guide showing how to create an encrypted bootable Backtrack 4 USB thumb drive. I put quotes around full in the title

More information

SQL Tuning and Maintenance for the Altiris Deployment Server express database.

SQL Tuning and Maintenance for the Altiris Deployment Server express database. Article ID: 22953 SQL Tuning and Maintenance for the Altiris Deployment Server express database. Question Now Deployment Server is installed how do I manage the express database? Topics that will be covered

More information

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved. No

More information

Capturing a Forensic Image. By Justin C. Klein Keane <jukeane@sas.upenn.edu> 12 February, 2013

Capturing a Forensic Image. By Justin C. Klein Keane <jukeane@sas.upenn.edu> 12 February, 2013 Capturing a Forensic Image By Justin C. Klein Keane 12 February, 2013 Before you Begin The first step in capturing a forensic image is making an initial determination as to the

More information

StarWind iscsi SAN Software Hands- On Review

StarWind iscsi SAN Software Hands- On Review StarWind iscsi SAN Software Hands- On Review Luca Dell'Oca April 2011 I ve always been fascinated by those software that let you transform a computer into a SAN appliance. The available uses of this kind

More information

Add Disk Space to a VM when a Partition is Full

Add Disk Space to a VM when a Partition is Full Add Disk Sace to a VM when a Partition is Full Document ID: 119025 Contributed by Mike Dooley, Cisco TAC Engineer. Jun 29, 2015 Contents Introduction Background Information Procedure Section 1 Determine

More information

Installing Proview on an Windows XP machine

Installing Proview on an Windows XP machine Installing Proview on an Windows XP machine This is a guide for the installation of Proview on an WindowsXP machine using VirtualBox. VirtualBox makes it possible to create virtual computers and allows

More information

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family *5991-5301* Part number: 5991-5301 Edition: 3, E0406 Copyright 2006 Hewlett-Packard Development

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

Replacing a Laptop Hard Disk On Linux. Khalid Baheyeldin http://2bits.com. KWLUG, September 2015

Replacing a Laptop Hard Disk On Linux. Khalid Baheyeldin http://2bits.com. KWLUG, September 2015 Replacing a Laptop Hard Disk On Linux Khalid Baheyeldin http://2bits.com KWLUG, September 2015 About Khalid 30 years in software development and software consulting First computer: Sinclair ZX Spectrum

More information

Instructions for update installation of ElsaWin 5.00

Instructions for update installation of ElsaWin 5.00 Instructions for update installation of ElsaWin 5.00 Page 1 of 21 Contents 1. Requirements... 3 2. Updating to version 5.00... 4 3. Client update... 19 Page 2 of 21 1. Requirements ElsaWin 4.10 must be

More information

How To Set Up A Two Node Hyperv Cluster With Failover Clustering And Cluster Shared Volume (Csv) Enabled

How To Set Up A Two Node Hyperv Cluster With Failover Clustering And Cluster Shared Volume (Csv) Enabled Getting Started with Hyper-V and the Scale Computing Cluster Scale Computing 5225 Exploration Drive Indianapolis, IN, 46241 Contents Contents CHAPTER 1 Introduction to Hyper-V: BEFORE YOU START. vii Revision

More information

NATIONAL POPULATION REGISTER (NPR)

NATIONAL POPULATION REGISTER (NPR) NATIONAL POPULATION REGISTER (NPR) Project Name: NPR Version No: 1.0.0 Release Date: Group Name: NPR-ECIL Version Date: LINUX SERVER INSTALLATION AND CONFIGURATION FOR JAVA BASED NPR DATAENTRY SOFTWARE

More information

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature

Type Message Description Probable Cause Suggested Action. Fan in the system is not functioning or room temperature Table of Content Error Messages List... 2 Troubleshooting the Storage System... 3 I can t access the Manager... 3 I forgot the password for logging in to the Manager... 3 The users can t access the shared

More information

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS

STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS Notes: STATISTICA VERSION 10 STATISTICA ENTERPRISE SERVER INSTALLATION INSTRUCTIONS 1. The installation of the STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

Acronis Backup & Recovery 11

Acronis Backup & Recovery 11 Acronis Backup & Recovery 11 Quick Start Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows Workstation

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

iscsi Quick-Connect Guide for Red Hat Linux

iscsi Quick-Connect Guide for Red Hat Linux iscsi Quick-Connect Guide for Red Hat Linux A supplement for Network Administrators The Intel Networking Division Revision 1.0 March 2013 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

RSA Security Analytics Virtual Appliance Setup Guide

RSA Security Analytics Virtual Appliance Setup Guide RSA Security Analytics Virtual Appliance Setup Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks or

More information

GMS. 1 Create the virtual machine 2 Configure the virtual machine 3 Configure the virtual GMS server. Quick Start Guide. Microsoft Hyper-V Hypervisor

GMS. 1 Create the virtual machine 2 Configure the virtual machine 3 Configure the virtual GMS server. Quick Start Guide. Microsoft Hyper-V Hypervisor Quick Start Guide GMS If you re not using Hyper-V 2012, your screens may vary. Microsoft Hyper-V Hypervisor 2013 Silver Peak Systems, Inc. Before You Begin Comply with the GMS Host System Requirements

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

Stellar Phoenix Exchange Server Backup

Stellar Phoenix Exchange Server Backup Stellar Phoenix Exchange Server Backup Version 1.0 Installation Guide Introduction This is the first release of Stellar Phoenix Exchange Server Backup tool documentation. The contents will be updated periodically

More information

Configuring a Highly Available Linux Cluster for SAP Services

Configuring a Highly Available Linux Cluster for SAP Services Configuring a Highly Available Linux Cluster for SAP Services Clusters of Dell PowerEdge servers using Oracle9i Real Application Clusters (RAC) can provide SAP software environments with a flexible, scalable,

More information

How To Use 1Bay 1Bay From Awn.Net On A Pc Or Mac Or Ipad (For Pc Or Ipa) With A Network Box (For Mac) With An Ipad Or Ipod (For Ipad) With The

How To Use 1Bay 1Bay From Awn.Net On A Pc Or Mac Or Ipad (For Pc Or Ipa) With A Network Box (For Mac) With An Ipad Or Ipod (For Ipad) With The 1-bay NAS User Guide INDEX Index... 1 Log in... 2 Basic - Quick Setup... 3 Wizard... 3 Add User... 6 Add Group... 7 Add Share... 9 Control Panel... 11 Control Panel - User and groups... 12 Group Management...

More information

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer Virtual Appliance for VMware Server Getting Started Guide Revision 2.0.2 Warning and Disclaimer This document is designed to provide information about the configuration and installation of the CensorNet

More information

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip. Reflection DBR USER GUIDE 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Page 1 of 1 Table of Contents Overview 3 Reflection DBR Client and Console Installation 4

More information

How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade

How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade How to configure Failover Clustering for Hyper-V hosts on HP ProLiant c-class server blades with All-in-One SB600c storage blade Executive summary... 2 System requirements... 2 Hardware requirements...

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

Installation Instruction STATISTICA Enterprise Small Business

Installation Instruction STATISTICA Enterprise Small Business Installation Instruction STATISTICA Enterprise Small Business Notes: ❶ The installation of STATISTICA Enterprise Small Business entails two parts: a) a server installation, and b) workstation installations

More information

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED.

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *If you are using

More information

CycleServer Grid Engine Support Install Guide. version 1.25

CycleServer Grid Engine Support Install Guide. version 1.25 CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring

More information

SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror

SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror Technical Report SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror Nils Bauer, NetApp March 2014 TR-4279 The document describes the setup of a disaster

More information