iscsi storage is used as shared storage in Redhat cluster, VMware vsphere, Redhat Enterprise Virtualization Manager, Ovirt, etc.

Size: px
Start display at page:

Download "iscsi storage is used as shared storage in Redhat cluster, VMware vsphere, Redhat Enterprise Virtualization Manager, Ovirt, etc."

Transcription

1 Configure iscsi Target & Initiator on CentOS 7 / RHEL7 iscsi stands for Internet Small Computer Systems Interface, IP-based storage, works on top of internet protocol by carrying SCSI commands over IP network. iscsi transports block-level data between an iscsi initiator on a client machine and an iscsi target on a storage device (server). iscsi storage is used as shared storage in Redhat cluster, VMware vsphere, Redhat Enterprise Virtualization Manager, Ovirt, etc. Environment Server: server.itzgeek.local IP Address: OS: CentOS Linux release (Core) Client: node1.itzgeek.local IP Address: OS: CentOS Linux release (Core) Storage Configuration Here, we will create 5GB of LVM disk on the target server to use as shared storage for clients. Let s list the available disks attached to the target server using below command. If you want to use the whole disk for LVM, then skip the disk partitioning step. [root@server ~]# fdisk -l grep -i sd Disk /dev/sda: GB, bytes, sectors

2 /dev/sda1 * Linux /dev/sda e Linux LVM Disk /dev/sdb: 10.7 GB, bytes, sectors From the above output, you can see that my system has a 10GB of disk (/dev/sdb). We will create a 5GB partition on the above disk and will use it for LVM. [root@server ~]# fdisk /dev/sdb Welcome to fdisk (util-linux ). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Device does not contain a recognized partition table Building a new DOS disklabel with disk identifier 0x173dfa4d. Command (m for help): n --> New partition Partition type: p primary (0 primary, 0 extended, 4 free) e extended Select (default p): p --> Pimary partition Partition number (1-4, default 1): 1 - -> Partition number First sector ( , default 2048): --> Just enter Using default value 2048 Last sector, +sectors or +size{k,m,g} ( , default ): +5G --> Enter the size Partition 1 of type Linux and of size 5 GiB is set Command (m for help): t --> Change label Selected partition 1 Hex code (type L to list all codes): 8e --> Change it as LVM label Changed type of partition 'Linux' to 'Linux LVM' Command (m for help): w --> Save The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. Create a LVM with /dev/sdb1 partition (replace /dev/sdb1 with your disk name) [root@server ~]# pvcreate /dev/sdb1 [root@server ~]# vgcreate vg_iscsi /dev/sdb1 [root@server ~]# lvcreate -l 100%FREE -n lv_iscsi vg_iscsi

3 Configure iscsi target Now you have an option of creating target either with or without authentication. In this article, you can find steps for both scenarios. It is up to you to decide which one is suitable for your environment. Here, will configure iscsi target without CHAP authentication. Install the targetcli package on the server. ~]# yum install targetcli -y Once you installed the package, enter below command to get an iscsi CLI for an interactive prompt. ~]# targetcli Warning: Could not load preferences file /root/.targetcli/prefs.bin. targetcli shell version 2.1.fb41 Copyright by Datera, Inc and others. For help on commands, type 'help'. > Now use an existing logical volume (/dev/vg_iscsi/lv_iscsi) as a block-type backing store for storage object scsi_disk1_server. /> cd backstores/block /backstores/block> create scsi_disk1_server /dev/vg_iscsi/lv_iscsi Created block storage object scsi_disk1_server using /dev/vg_iscsi/lv_iscsi. Create a target. /backstores/block> cd /iscsi /iscsi> create iqn local.itzgeek.server:disk1 Created target iqn local.itzgeek.server:disk1. Created TPG 1. Global pref auto_add_default_portal=true Created default portal listening on all IPs ( ), port /iscsi> Create ACL for client machine (It s the IQN which clients use to connect).

4 /iscsi> cd /iscsi/iqn local.itzgeek.server:disk1/tpg1/acls /iscsi/iqn.20...sk1/tpg1/acls> create iqn local.itzgeek.server:node1node2 Created Node ACL for iqn local.itzgeek.server:node1node2 Create a LUN under the target. The LUN should use the previously mentioned backing storage object named scsi_disk1_server. /iscsi/iqn.20...er:disk1/tpg1> cd /iscsi/iqn local.itzgeek.server:disk1/tpg1/luns /iscsi/iqn.20...sk1/tpg1/luns> create /backstores/block/scsi_disk1_server Created LUN 0. Created LUN 0->0 mapping in node ACL iqn local.itzgeek.server:node1node2 Verify the target server configuration. /iscsi/iqn.20.../tpg1/portals> cd / /> ls o- / [...] o- backstores [...] o- block... [Storage Objects: 1] o- scsi_disk1_server... [/dev/vg_iscsi/lv_iscsi (5.0GiB) write-thru activated] o- fileio... [Storage Objects: 0] o- pscsi... [Storage Objects: 0] o- ramdisk... [Storage Objects: 0] o- iscsi... [ Targets: 1] o- iqn local.itzgeek.server:disk1.... [TPGs: 1] o- tpg1... [gen-acl s, no-auth] o- acls.... [ACLs: 1]

5 o- iqn local.itzgeek.server:node1node2... [Mapp ed LUNs: 1] o- mapped_lun0... [lun0 block/scsi_disk1_s erver (rw)] o- luns.... [LUNs: 1] o- lun0... [block/scsi_disk1_server (/dev/vg_iscsi /lv_iscsi)] o- portals... [ Portals: 1] o : [OK] o- loopback... [ Targets: 0]Save and exit from target CLI. /> saveconfig Last 10 configs saved in /etc/target/backup. Configuration saved to /etc/target/saveconfig.json /> exit Global pref auto_save_on_exit=true Last 10 configs saved in /etc/target/backup. Configuration saved to /etc/target/saveconfig.json Enable and restart the target service. [root@server ~]# systemctl enable target.service [root@server ~]# systemctl restart target.service Configure the firewall to allow iscsi traffic. [root@server ~]# firewall-cmd --permanent --add-port=3260/tcp [root@server ~]# firewall-cmd --reload

6 Configure Initiator Now, it s the time to configure a client machine to use the created target as storage. Install the below package on the client machine (node1). [root@node1 ~]# yum install iscsi-initiator-utils -y Edit the initiatorname.iscsi file. [root@node1 ~]# vi /etc/iscsi/initiatorname.iscsi Add the iscsi initiator name. InitiatorName=iqn local.itzgeek.server:node1node2 Discover the target using the below command. [root@node1 ~]# iscsiadm -m discovery -t st -p :3260,1 iqn local.itzgeek.server:disk1 Restart and enable the initiator service. [root@node1 ~]# systemctl restart iscsid.service [root@node1 ~]# systemctl enable iscsid.service Login to the discovered target. [root@node1 ~]# iscsiadm -m node -T iqn local.itzgeek.server:disk1 -p l Logging in to [iface: default, target: iqn local.itzgeek.server:disk1, portal: ,3260] (multiple) Login to [iface: default, target: iqn local.itzgeek.server:disk1, portal: ,3260] successful.

7 Create File System on ISCSI Disk After login (connecting) to discovered target, have a look at messages file. You would find similar output like below, from where you can find a name of the disk. [root@node1 ~]# cat /var/log/messages Feb 23 14:54:47 node2 kernel: sd 34:0:0:0: [sdb] byte logical blocks: (5.36 GB/4.99 GiB) Feb 23 14:54:47 node2 kernel: sd 34:0:0:0: [sdb] Write Protect is off Feb 23 14:54:47 node2 kernel: sd 34:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA Feb 23 14:54:48 node2 kernel: sdb: unknown partition table Feb 23 14:54:48 node2 kernel: sd 34:0:0:0: [sdb] Attached SCSI disk Feb 23 14:54:48 node2 iscsid: Could not set session2 priority. READ/WRITE throughout and latency could be affected. Feb 23 14:54:48 node2 iscsid: Connection2:0 to [target: iqn local.itzgeek.server:disk1, portal: ,326 0] through [iface: default] is operational now List down the attached disks. [root@node1 ~]# cat /proc/partitions major minor #blocks name sda sda sda sr dm dm dm sdb Format the new disk (for the sake of article, I have formatted whole disk instead of creating partition) root@node1 ~]# mkfs.xfs /dev/sdb

8 meta-data=/dev/sdb isize=256 agcount=8, agsize= blks = sectsz=512 attr=2, projid32bit=1 = crc=0 data = bsize=4096 blocks= , imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0 ftype=0 log =internal log bsize=4096 blocks=2560, version=2 = sectsz=512 sunit=0 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 Mount the disk. [root@node1 ~]# mount /dev/sdb /mnt Verify the disk is mounted using the below command. [root@node1 ~]# df -ht Filesystem Type Size Used Avail Use% Mounted on /dev/mapper/centos-root xfs 50G 955M 50G 2% / devtmpfs devtmpfs 908M 0 908M 0% /dev tmpfs tmpfs 914M 54M 861M 6% /dev/shm tmpfs tmpfs 914M 8.5M 905M 1% /run tmpfs tmpfs 914M 0 914M 0% /sys/fs/cgroup /dev/mapper/centos-home xfs 48G 33M 48G 1% /home /dev/sda1 xfs 497M 97M 401M 20% /boot /dev/sdb xfs 5.0G 33M 5.0G 1% /mnt Automount iscsi storage To automount the iscsi storage during every reboot, you would need to make an entry in /etc/fstab file.

9 Before updating the /etc/fstab file, get the UUID of the iscsi disk using the following command. Replace /dev/sdb with your iscsi disk name. blkid /dev/sdb /dev/sdb: LABEL="/" UUID="9df472f4-1b0f-41c0-a6eb-89574d2caee3" TYPE="xfs" Now, edit the /etc/fstab file. vi /etc/fstab Make an entry something like below. # # /etc/fstab # Created by anaconda on Tue Jan 30 02:14: # # 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 # UUID=9df472f4-1b0f-41c0-a6eb-89574d2caee3 / xfs defaults 0 0 UUID=c7469f92-75ec-48ac-b42d-d5b89ab75b39 /mnt xfs _netdev 0 0 Remove iscsi storage In case you want to de-attach the added disk, please follow the procedure (unmount and logout). [root@node1 ~]# umount /mnt/ [root@node1 ~]# iscsiadm -m node -T iqn local.itzgeek.server:disk1 -p u Logging out of session [sid: 1, target: iqn local.itzgeek.server:disk1, portal: ,3260] Logout of [sid: 1, target: iqn local.itzgeek.server:disk1, portal: ,3260] successful. That s All.

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command.

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command. How to Increase the size of a Linux LVM by adding a new disk This post will cover how to increase the disk space for a VMware virtual machine running Linux that is using logical volume manager (LVM). First

More information

SUSE Enterprise Storage 5 and iscsi

SUSE Enterprise Storage 5 and iscsi Whitepaper Storage www.suse.com SUSE Enterprise Storage 5 and iscsi Table of Contents Table of Contents... 2 Introduction... 3 The Ceph Storage System... 3 iscsi Block Storage... 4 lrbd... 5 Deployment

More information

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks JSA KVM SUPPORT Theodore Jencks, CSE KVM IMAGE SPECIFICATIONS Image is a compressed qcow2 image 16.5G in size when compressed Md5sum: Uncompressed the image is a 512G QCOW2 Ubuntu 18.04 LTS w/ KVM and

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL CONFIGURING iscsi AUGUST 2012 You can use a iscsi storage network in your STRM deployment. This document provides information on configuring and using iscsi devices with your deployment. Unless

More information

Changing user login password on templates

Changing user login password on templates Changing user login password on templates 1. Attach an ISO via the cloudstack interface and boot the VM to rescue mode. Click on attach iso icon highlighted below: A popup window appears from which select

More information

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Contents Introduction Prerequisites Requirements Components Used Background Information Configure Step 1. Prepare the firmware images (and

More information

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx.

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx. Adding a New Disk, page 1 Mounting the Replication Set from Disk to tmpfs After Deployment, page 3 Manage Disks to Accommodate Increased Subscriber Load, page 5 Adding a New Disk This section describes

More information

Adding a block devices and extending file systems in Linux environments

Adding a block devices and extending file systems in Linux environments Adding a block devices and extending file systems in Linux environments In this exercise we simulate situation where user files partition /home fills up and needs to be extended. Also we migrate from static

More information

This is sometimes necessary to free up disk space on a volume that cannot have extra disk space easily added.

This is sometimes necessary to free up disk space on a volume that cannot have extra disk space easily added. Movin g /var/log/ Article Number: 473 Rating: Unrated Last Updated: Tue, Mar 29, 2016 at 5:56 PM O ve r vie w This KB article will walk you through the steps of moving the /var/log directory to a new disk/volume

More information

Nested Home Lab Setting up Shared Storage

Nested Home Lab Setting up Shared Storage Nested Home Lab Setting up Shared Storage Andy Fox VCI VCAP-DCA VCP3 VCP4 Over the years teaching vsphere, several peers, colleagues and students have asked me how I setup shared storage in my nested test

More information

Using iscsi On Debian Lenny (Initiator And Target)

Using iscsi On Debian Lenny (Initiator And Target) By Falko Timme Published: 2009-03-10 20:05 Using iscsi On Debian Lenny (Initiator And Target) Version 1.0 Author: Falko Timme Last edited 02/24/2009 This guide explains how

More information

Getting Started with Pentaho and Cloudera QuickStart VM

Getting Started with Pentaho and Cloudera QuickStart VM Getting Started with Pentaho and Cloudera QuickStart VM This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Prerequisites... 1 Use Case: Development Sandbox for Pentaho and

More information

Assignment No. SAN. Title. Roll No. Date. Programming Lab IV. Signature

Assignment No. SAN. Title. Roll No. Date. Programming Lab IV. Signature Assignment No. Title (A-6) SAN Roll No. Class T.E. Date Subject Programming Lab IV Signature Assignment no: (A-6) Title: Study of Storage Area Network (SAN). Problem Statement: Design and Setup LAN with

More information

Cloning and Repartitioning sessionmgr Disks

Cloning and Repartitioning sessionmgr Disks This chapter describes the steps needed to repartition the sessionmgr disks so that the increased number of subscribers (> 10 million) can be accommodated. Cloning and Disk Repartitioning of Sessionmgr01

More information

SCSI RDMA Protocol. Introduction. Configuring SRP CHAPTER

SCSI RDMA Protocol. Introduction. Configuring SRP CHAPTER 4 CHAPTER This chapter describes SCSI RDMA protocol and includes the following sections: Introduction, page 4-1 Configuring SRP, page 4-1 Verifying SRP, page 4-7 See the Root and Non-root Conventions in

More information

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems This is Worksheet and Assignment 12 This is a combined Worksheet and Assignment.. Quizzes and tests may refer to work done in this Worksheet and Assignment; save your answers. You will use a checking program

More information

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck

More information

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER Higher Quality Better Service! Exam Actual QUESTION & ANSWER Accurate study guides, High passing rate! Exam Actual provides update free of charge in one year! http://www.examactual.com Exam : 050-710 Title

More information

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity:

More information

<Insert Picture Here> XFS The High Performance Enterprise File System. Jeff Liu

<Insert Picture Here> XFS The High Performance Enterprise File System. Jeff Liu XFS The High Performance Enterprise File System Jeff Liu Agenda About XFS Design Journal Self-describing metadata Performance ➏ What's new && in progress 2 General

More information

How To Resize ext3 Partitions Without Losing Data

How To Resize ext3 Partitions Without Losing Data By Falko Timme Published: 2007-01-07 17:12 How To Resize ext3 Partitions Without Losing Data Version 1.0 Author: Falko Timme Last edited 12/31/2006 This article is about

More information

Virtualization Provisioning & Centralized Management with iscsi. RACF Brookhaven National Laboratory James Pryor CHEP 2010

Virtualization Provisioning & Centralized Management with iscsi. RACF Brookhaven National Laboratory James Pryor CHEP 2010 RACF Brookhaven National Laboratory James Pryor CHEP 2010 Who we are & What we support Virtualization Provisioning & Management Past Present Future This is not about VM worker nodes or VM batch processing

More information

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume.

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume. OPS235 Lab 4 [1101] Sample/suggested Answers/notes (Please ask your professor if you need any clarification or more explanation on concepts you don't understand.) Investigation 1: How are LVMs managed

More information

BT Cloud Compute. Adding a Volume to an existing VM running Linux. The power to build your own cloud solutions to serve your specific business needs

BT Cloud Compute. Adding a Volume to an existing VM running Linux. The power to build your own cloud solutions to serve your specific business needs Adding a Volume to an existing VM running Linux BT Cloud Compute The power to build your own cloud solutions to serve your specific business needs Issue 3 Introduction This guide has been designed to walk

More information

Installing VMware ESXi and vcenter for Cisco RMS

Installing VMware ESXi and vcenter for Cisco RMS Installing VMware ESXi and vcenter for Cisco RMS This chapter explains how to install the VMware ESXi and vcenter for the Cisco RAN Management System. The following topics are covered in this chapter:

More information

Data Integrity & Security, & Privacy

Data Integrity & Security, & Privacy Data Integrity & Security, & Privacy LILUG 2008-11-11 Ilya S. (AKA dotcommie) Overview Security Disk Encryption Theory Discussion of software What to encrypt Demo Data Integrity* Malicious Altering Accidental

More information

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems Project 3: An Introduction to File Systems COP 4610 / CGS 5765 Principles of Operating Systems Introduction Project 3 learning objectives File system design and implementation File system testing Data

More information

Manually Mount Usb Flash Drive Linux Command Line Redhat

Manually Mount Usb Flash Drive Linux Command Line Redhat Manually Mount Usb Flash Drive Linux Command Line Redhat How to Format USB in Linux using Command Line. This article will help you to format USB Flash drive in Ubuntu systems via Command line. So first

More information

Link Gateway ISO Installation Manual

Link Gateway ISO Installation Manual Link Gateway ISO Installation Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. OPENFILER INSTALLATION...

More information

Red Hat Enterprise Linux 8.0 Beta

Red Hat Enterprise Linux 8.0 Beta Red Hat Enterprise Linux 8.0 Beta Configuring and managing storage hardware Deploying and configuring single-node storage in Red Hat Enterprise Linux 8 Last Updated: 2018-11-16 Red Hat Enterprise Linux

More information

1. Set up the storage to allow access to the LD(s) by the server following the NEC storage user guides.

1. Set up the storage to allow access to the LD(s) by the server following the NEC storage user guides. Overview Server running Red Hat Enterprise Linux (RHEL) must be configured to recognize and work with NEC storage systems. The following procedure demonstrates the steps necessary to configure multipath

More information

Disks, Filesystems 1

Disks, Filesystems 1 Disks, Filesystems 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck command /etc/fstab mounting file systems: mount command unmounting

More information

Bare Metal Server. User Guide. Issue 11 Date

Bare Metal Server. User Guide. Issue 11 Date Issue 11 Date 2018-03-30 Contents Contents 1 Getting Started... 1 1.1 Registering an Account in the Public Cloud System...1 1.2 Creating a Key Pair...1 1.3 Purchasing a BMS... 5 1.4 Logging In to a Linux

More information

High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers

High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers High-Availability Storage with GlusterFS on CentOS 7 - Mirror across two storage servers This tutorial exists for these OS versions CentOS 6.3 CentOS 5.4 On this page 1 Preliminary Note 2 Enable additional

More information

Magneto-Optical Disk Drive

Magneto-Optical Disk Drive SMO-F551 / RMO-S551 Magneto-Optical Disk Drive Installation Guide 1.3 Contents Installation Procedure on DOS and Windows3.1 3 Installation Procedure on Windows95/98 5 Installation Procedure on WindowsNT

More information

Reconfigure Offboard Storage During a JSA Upgrade

Reconfigure Offboard Storage During a JSA Upgrade Juniper Secure Analytics Reconfigure Offboard Storage During a JSA Upgrade Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published:

More information

Linux Howtos. Fedora 9 Install (114) CIS Fall Fedora 9 Install (114) Fedora 9 installation with custom partitions.

Linux Howtos. Fedora 9 Install (114) CIS Fall Fedora 9 Install (114) Fedora 9 installation with custom partitions. Linux Howtos Fedora 9 Install (114) CIS 191 - Fall 2008 Fedora 9 Install (114) Fedora 9 installation with custom partitions. Requirements: Fedora 9 DVD ISO files http://iso.linuxquestions.org/ VMWare Server

More information

Exadata Landing Pad: Migrating a Fibre Channel-based Oracle Database Using an Oracle ZFS Storage Appliance

Exadata Landing Pad: Migrating a Fibre Channel-based Oracle Database Using an Oracle ZFS Storage Appliance An Oracle Technical White Paper April 2014 Exadata Landing Pad: Migrating a Fibre Channel-based Oracle Database Using an Oracle ZFS Storage Appliance Introduction 2 Data Migration Architecture Using Oracle

More information

Blueprints. Installing Linux on a Multipath iscsi LUN on an IP Network

Blueprints. Installing Linux on a Multipath iscsi LUN on an IP Network Blueprints Installing Linux on a Multipath iscsi LUN on an IP Network Blueprints Installing Linux on a Multipath iscsi LUN on an IP Network Note Before using this information and the product it supports,

More information

istorage Server: High Availability iscsi SAN for Linux Server

istorage Server: High Availability iscsi SAN for Linux Server istorage Server: High Availability iscsi SAN for Linux Server Wednesday, July 24, 2013 KernSafe Technologies,Inc. www.kernsafe.com Copyright KernSafe Technologies 2006-2013.All right reserved Table of

More information

Getting Started with BeagleBoard xm

Getting Started with BeagleBoard xm Getting Started with BeagleBoard xm by Getting Started with BeagleBoard-xM 1. Beagleboard-xM BeagleBoard.org ก Texas Instruments DM3730 1 GHz ก ARM Cortex-A8 (DSP) (PowerVR) (RAM) 512 MB Serial Port, USB

More information

For personnal use only

For personnal use only Adding and Removing Disks From VMware RHEL7 Guests Without Rebooting Finnbarr P. Murphy (fpm@fpmurphy.com) Consider the following scenario. You are studying for your RHCSA or RHCE using one or more RHEL

More information

Installing VMware ESXi and vcenter for Cisco RMS

Installing VMware ESXi and vcenter for Cisco RMS Installing VMware ESXi and vcenter for Cisco RMS This chapter explains how to install the VMware ESXi and vcenter for the Cisco RAN Management System. The following topics are covered in this chapter:

More information

UUID and R1Soft. What is a UUID and what is it used for?

UUID and R1Soft. What is a UUID and what is it used for? UUID and R1Soft What is a UUID and what is it used for? A Universally Unique Identifier (UUID) is a 36-digit code that is used to identify or label something. For the purposes of this article, we will

More information

Block level VM backups Restore whole VM or individual files Instant restore of VMDKs Instant restore of whole VMs (requires Standard vsphere license)

Block level VM backups Restore whole VM or individual files Instant restore of VMDKs Instant restore of whole VMs (requires Standard vsphere license) 1 Block level VM backups Restore whole VM or individual files Instant restore of VMDKs Instant restore of whole VMs (requires Standard vsphere license) Two weeks of daily incremental backups Three months

More information

Project 3: An Introduction to File Systems. COP4610 Florida State University

Project 3: An Introduction to File Systems. COP4610 Florida State University Project 3: An Introduction to File Systems COP4610 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file system testing data serialization/de-serialization

More information

Red Hat Enterprise Linux 8.0 Beta

Red Hat Enterprise Linux 8.0 Beta Red Hat Enterprise Linux 8.0 Beta Configuring and managing file systems Creating, modifying, and administering file systems in Red Hat Enterprise Linux 8 Last Updated: 2019-01-11 Red Hat Enterprise Linux

More information

DESS. User Guide. Issue 06 Date HUAWEI TECHNOLOGIES CO., LTD.

DESS. User Guide. Issue 06 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 06 Date 2018-12-20 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Manual File System Check Linux Command Line

Manual File System Check Linux Command Line Manual File System Check Linux Command Line The traditional Unix environment is a CLI (command line interface), where you To move around the file system you will use cd. Nearly every command and application

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

Soma s Installation Notes

Soma s Installation Notes For Details, Contact: Thay Soma sundaram Telephone: 850-644-6448 E-mail: soma@sb.fsu.edu Soma s Installation Notes Kasha Laboratory of Biophysics Institute of Molecular Biophysics Florida State University

More information

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University Week 10 Project 3: An Introduction to File Systems Classes COP4610 / CGS5765 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 ubuntu Linux Download https://www.ubuntu.com/download/desktop http://gofile.me/3qiyp/pj6fzmojf 2 3 VMware Workstation Player (optional) Download https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

More information

OPS235. Linux File Systems Partitioning Mounting File Systems

OPS235. Linux File Systems Partitioning Mounting File Systems OPS235 Linux File Systems Partitioning Mounting File Systems 1 Lab 4 Part 1 Topics Linux File Systems (ext2 / ext3 / ext4) Linux Partitioning / Formatting Mounting Linux File Systems 2 Linux File Systems

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

Linux Diskless iscsi Boot HowTo ( V1.0)

Linux Diskless iscsi Boot HowTo ( V1.0) Linux Diskless iscsi Boot HowTo ( V1.0) This document describes using the Cisco Linux 3.4.2 iscsi initiator for diskless booting of Red Hat Linux 9 (RH9). EqualLogic has enhanced the initiator to provide

More information

Control Center Planning Guide

Control Center Planning Guide Release 1.2.0 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

jfield Documentation Release 1 Jason Field

jfield Documentation Release 1 Jason Field jfield Documentation Release 1 Jason Field Oct 25, 2017 Contents 1 linux 3 1.1 LVM................................................... 3 1.1.1 Create.............................................. 3 1.1.2

More information

NetApp Data Ontap Simulator Cookbook

NetApp Data Ontap Simulator Cookbook Hernán J. Larrea NetApp Data Ontap Simulator Cookbook HOW TO BUILD YOUR OWN VIRTUAL, ALL FUNCTIONAL STORAGE SIMULATOR, WITH UBUNTU OS AND ISCSI FEATURES. CONTENT Introduction... 3 Concepts... 3 Ingredients...

More information

Express Report Service Setup Guide (Linux/VMware)

Express Report Service Setup Guide (Linux/VMware) Express Report Service Setup Guide (Linux/VMware) Chapter 1 Setup Chapter 2 Routing of Report 10.111.01-119.04 NEC Corporation 2016 Contents Contents... 2 Notations... 4 Notations used in the text... 4

More information

Using ACLs with Fedora Core 2 (Linux Kernel 2.6.5)

Using ACLs with Fedora Core 2 (Linux Kernel 2.6.5) Using ACLs with Fedora Core 2 (Linux Kernel 2.6.5) Back to Index By Van Emery Table of Contents Introduction Assumptions Getting Started Using ACLs More setfacl Details and Examples Example Scenario The

More information

New RHEL 7.5 features: VDO, USBGuard, NBDE and AIDE. RHUG Q Marc Skinner Principal Solutions Architect 3/21/2018

New RHEL 7.5 features: VDO, USBGuard, NBDE and AIDE. RHUG Q Marc Skinner Principal Solutions Architect 3/21/2018 New RHEL 7.5 features: VDO, USBGuard, NBDE and AIDE RHUG Q1.2018 Marc Skinner Principal Solutions Architect 3/21/2018 RHEL7.5beta :: New Features Storage - Virtual Data Optimizer (VDO) Security - NBDE

More information

System Administration. Storage Systems

System Administration. Storage Systems System Administration Storage Systems Agenda Storage Devices Partitioning LVM File Systems STORAGE DEVICES Single Disk RAID? RAID Redundant Array of Independent Disks Software vs. Hardware RAID 0, 1,

More information

Controller Installation

Controller Installation The following describes the controller installation process. Installing the Controller, page 1 Controller Deployment, page 2 Controller Virtual Hard Disk Storage, page 4 Custom Controller Web UI Certificates,

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

Disk-Level Encryption

Disk-Level Encryption 2011-2017 Percona, Inc. 1 / 19 Disk-Level Encryption http://www.percona.com/training/ 2011-2017 Percona, Inc. 2 / 19 Introduction Clients in the PCI, HIPPA, or PHI space Encrypted "at rest" MySQL 5.7 InnoDB

More information

It is recommended to complete the tutorial using a web browser from the same operating system as your Putty or SSH client (e.g. Ubuntu terminal).

It is recommended to complete the tutorial using a web browser from the same operating system as your Putty or SSH client (e.g. Ubuntu terminal). TCSS 562: Software Engineering Institute of Technology for Cloud Computing University of Washington Tacoma Spring 2017 http://faculty.washington.edu/wlloyd/courses/tcss562 Tutorial 1 Benchmarking Amazon

More information

StorTrends - Citrix. Introduction. Getting Started: Setup Guide

StorTrends - Citrix. Introduction. Getting Started: Setup Guide StorTrends - Citrix Setup Guide Introduction This guide is to assist in configuring a Citrix virtualization environment with a StorTrends SAN array. It is intended for the virtualization and SAN administrator

More information

NASA Lab. Partition/Filesystem/Bootloader. TinRay, Yu-Chuan

NASA Lab. Partition/Filesystem/Bootloader. TinRay, Yu-Chuan NASA Lab Partition/Filesystem/Bootloader TinRay, Yu-Chuan Agenda Conceptual Storage Structure Bootloader Practical & \Exercise/ Linux Device File Storage Related Commands Boot Related Commands 2 Before

More information

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2 Student Name: Lab Section: Disks, Partitions, and File Systems - Part 2 of 2 1 Due Date - Upload to Blackboard by 8:30am Monday April 9, 2012 Submit the completed lab to Blackboard following the Rules

More information

Linux Host Utilities 6.2 Quick Start Guide

Linux Host Utilities 6.2 Quick Start Guide Linux Host Utilities 6.2 Quick Start Guide This guide is for experienced Linux users. It provides the basic information required to get the Linux Host Utilities installed and set up on a Linux host. The

More information

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

Control Center Planning Guide

Control Center Planning Guide Control Center Planning Guide Release 1.4.2 Zenoss, Inc. www.zenoss.com Control Center Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks

More information

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

SIOS 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

Manually Mount Usb Flash Drive Linux Command Line Fedora

Manually Mount Usb Flash Drive Linux Command Line Fedora Manually Mount Usb Flash Drive Linux Command Line Fedora This page explains how to use USB drives, like external hard disks and USB flash By default, storage devices that are plugged into the system mount

More information

First look at the renewed CTL High Availability implementation in FreeBSD

First look at the renewed CTL High Availability implementation in FreeBSD First look at the renewed CTL High Availability implementation in FreeBSD Version 1.1 20 Oct 2016 Mikhail Zakharov zmey20000@yahoo.com This enhancement looks extremely important for the BeaST storage system

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

Red Hat Enterprise Linux 6 or 7 Host Configuration and Backup with Auto- Snapshot Manager

Red Hat Enterprise Linux 6 or 7 Host Configuration and Backup with Auto- Snapshot Manager Red Hat Enterprise Linux 6 or 7 Host Configuration and Backup with Auto- Snapshot Manager Rapid EqualLogic Configuration Series Implementation Guide August 2016 Revisions Date April 2014 June 2014 November

More information

Partitioning and Formatting Guide

Partitioning and Formatting Guide Partitioning and Formatting Guide Version 1.2 Date 05-15-2006 Partitioning and Formatting Guide This guide is designed to explain how to setup your drive with the correct partition and format for your

More information

Learn Linux, 101: Control mounting and unmounting of

Learn Linux, 101: Control mounting and unmounting of Getting to your data Ian Shields January 27, 2016 (First published October 20, 2010) Learn to mount your Linux ; configure and use removable USB, IEE 1394, or other devices; and properly access floppy

More information

How to add additional disks to XenServer host

How to add additional disks to XenServer host How to add additional disks to XenServer host This article explains how to add physical disk drives to a XenServer host, so that more capacity is available for the XenServer guests. Create Linux LVM partition

More information

example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost :80 <VirtualHost :80> DocumentRoot /var/www/html/

example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost :80 <VirtualHost :80> DocumentRoot /var/www/html/ example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost 192.168.0.254:80 DocumentRoot /var/www/html/ ServerName station.domain40.example.com

More information

Spectrum Scale Virtualization in Test and Development

Spectrum Scale Virtualization in Test and Development May 17 th, 2018 GPFS User s Group (Boston) Spectrum Scale Virtualization in Test and Development Aaron Palazzolo (aspalazz@us.ibm.com) Virtualization Milestones in test/dev environment Trial VM 2008 2010

More information

Deploying Red Hat Enterprise Linux with Dell EqualLogic PS Series Arrays

Deploying Red Hat Enterprise Linux with Dell EqualLogic PS Series Arrays TECHNICAL REPORT Deploying Red Hat Enterprise Linux with Dell EqualLogic PS Series Arrays Abstract This technical report documents the procedure for configuring the Red Hat Enterprise Linux (RHEL) operating

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

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

Highly available iscsi storage with DRBD and Pacemaker. Brian Hellman & Florian Haas Version 1.2

Highly available iscsi storage with DRBD and Pacemaker. Brian Hellman & Florian Haas Version 1.2 Highly available iscsi storage with DRBD and Pacemaker Brian Hellman & Florian Haas Version 1.2 Table of Contents 1. Introduction...........................................................................................

More information

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Here is my setup which I have used for Installing Oracle RAC 11gR2 Laptop windows XP To access linux1 and linux2 There are 2 operating

More information

SLES Linux Installation Guide

SLES Linux Installation Guide Rocket RAID 278x SAS Controller SLES Linux Installation Guide Version 1.1 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Created on May 29, 2012 Table of Contents 1 Overview... 1 2 Installing

More information

Back Up (And Restore) LVM Partitions With LVM Snapshots

Back Up (And Restore) LVM Partitions With LVM Snapshots By Falko Timme Published: 2007-04-15 13:24 Back Up (And Restore) LVM Partitions With LVM Snapshots Version 1.0 Author: Falko Timme Last edited 04/11/2007 This tutorial shows

More information

3.5 Inch TFT Display

3.5 Inch TFT Display 3.5 Inch TFT Display Resistive&Capacity Touch Screen Website: www.inno-maker.com Contact: sales@inno-maker.com, support@inno-maker.com 1 Website: www.inno-maker.com Contact: sales@inno-maker.com, support@inno-maker.com

More information

Author : admin. 1. Getting information about current file system partitions with fdisk and mount

Author : admin. 1. Getting information about current file system partitions with fdisk and mount Changing '33 days has gone without being checked' automated fsck filesystem check on Debian Linux Desktops - Reduce FS check waiting on Linux notebooks Author : admin The periodic scheduled file system

More information

Virtuozzo Storage. Administrator s Command Line Guide

Virtuozzo Storage. Administrator s Command Line Guide Virtuozzo Storage Administrator s Command Line Guide August 17, 2018 Virtuozzo International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 https://virtuozzo.com

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

NetApp Data Ontap Simulator Cookbook

NetApp Data Ontap Simulator Cookbook Hernán J. Larrea NetApp Data Ontap Simulator Cookbook HOW TO BUILD YOUR OWN VIRTUAL, ALL FUNCTIONAL STORAGE SIMULATOR, WITH UBUNTU OS AND ISCSI FEATURES. Version 1.1 CONTENT Disclaimer... 3 Version History...

More information

EX200 EX200. Red Hat Certified System Administrator RHCSA

EX200 EX200. Red Hat Certified System Administrator RHCSA EX200 Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ EX200 Red Hat Certified System Administrator RHCSA EX200 QUESTION 1 Configure your Host Name, IP

More information

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7 First Published: November 20, 2015 Contents Scope of MOP... 4 Release Components... 4 Pre Requisites... 4 Assumptions... 4 Process Information... 5 Upgrade Timing... 5 Requirements... 5 Pre Maintenance...

More information

Novell SUSE Linux Enterprise Server

Novell SUSE Linux Enterprise Server SLES 10 Storage Administration Guide for EVMS Novell SUSE Linux Enterprise Server 10 February 1, 2007 STORAGE ADMINISTRATION GUIDE FOR EVMS www.novell.com Legal Notices Novell, Inc., makes no representations

More information

Using Fluentd as an alternative to Splunk

Using Fluentd as an alternative to Splunk Using Fluentd as an alternative to Splunk As infrastructure within organizations grows in size and the number of hosts, the cost of Splunk may become prohibitive. I created this document to demonstrate,

More information