Creating a Volume
- Open the navigation menu and click Storage.Under Block Storage, click Block Volumes.
- Click Create Block Volume.
- In the Create Block Volume dialog, enter the following:
- Create in Compartment: This field defaults to your current compartment. Select the compartment you want to create the volume in, if not already selected.
- Name: Enter a user-friendly name. Avoid entering confidential information.
- availability domain: Select the same availability domain that you selected for your instance. If you followed the tutorial instructions when launching your instance, this is the first AD in the list. The volume and the instance must be in the same availability domain.
- Size: Enter 50 to create a 50 GB block volume.
- Backup Policy: Do not select a backup policy.
- Tags: Leave the tagging fields blank.
- Click Create Block Volume.
A 50 GB block volume is displayed in the provisioning state. When the volume is no longer in the provisioning state, you can attach it to your instance.
Attaching the Volume to an Instance
Next you attach the volume via an iSCSI network connection to your instance:
Find your instance: Open the navigation menu and click Compute. Under Compute, click Instances.
Click your instance name to view its details.
- In the Resources section, click Attached block volumes.
- Click Attach block volume.
- Enter the following:
- Volume: select the Select volume option.
- If you need to change the comparment, click Change Compartment, and then select the compartment where you created the block volume.
- Volume in <compartment>: Select the block volume from the list.
- Attachment type: Select ISCSI.
Require CHAP Credentials: Leave cleared.
Tip
CHAP is a security protocol. You can leave this box cleared for the purposes of the tutorial. When you set up your production environment, Oracle recommends requiring CHAP credentials.- Device Path: If the instance supports consistent device paths, you will see a list of device paths. Select one from the list.
- Access: Select Read/Write.
- Click Attach.
The attachment process takes about a minute. You'll know the volume is ready when the Attachment State for the volume is ATTACHED.
Connecting to the Volume
After your volume is attached, you can configure the iSCSI connection. You connect to the volume using the iscsiadm
command-line tool. The commands you need to configure, authenticate, and log on are provided by the Console so you can easily copy and paste them into your instance session window. After the connection is configured, you can mount the volume on your instance and use it just as you would a physical hard drive.
To connect to your volume:
Log on to your instance as described in Connecting to Your Instance.
- Open the navigation menu and click Compute. Under Compute, click Instances.
Click your instance name to view its details.
- In the Resources section, click Attached block volumes.
Click the Actions menu next to the volume you just attached and then click iSCSI commands & information.
The iSCSI commands & information dialog is displayed. Notice that the dialog displays specific identifying information about your volume (such as IP address and port) as well as the iSCSI commands you'll need to use. The commands are ready to use with the appropriate information already included in each command.
The Connect commands configure the iSCSI connection and log on to iSCSI. Copy and paste each command from the Connect list into the instance session window.
Be sure to paste and run each command individually. There are three attach commands. Each command begins with
sudo iscsiadm
.
OPEN A SESSION WITH PUTTY INTO THE ORACLE LINUX INSTANCE
Once that the Console connection is created and the PuTTY connection profile is created, loaded and saved; open a session.
CAVEAT: verify that there’ no Firewalls that could potentially block the PuTTY Session.
UPDATE THE ORACLE LINUX INSTANCE
Switch to su mode: $ sudo su
INSTALL THE TARGETCLI PACKAGE
Install the “targetcli” package: # install targetcli
INSTALL THE ISCSI PACKAGE
Install the “iscsi” package: # install iscsi
INSTALL THE ISCSI-INITIATOR-UTILS
# install iscsi-initiator-utils
UPDATE THE LINUX INSTANCE
# update
ENABLE AND START THE TARGET
# systemctl enable target
# systemctl start target
START THE ISCSI SERVICE AND VERIFY IT IS UP & RUNNING
# service iscsi start
# service iscsi status
LIST THE DIFFERENT PARTITIONS WITH FDISK
# fdisk -l
CREATE THE DIFFERENT PARTITIONS ON THE ISCSI VOLUME WITH THE fdisk TOOL
# fdisk /dev/sdb

CREATE THE DIFFERENT MOUNTING POINTS (One per partition)
# mkdir -p /mnt/vol1
MAKE THE FILE SYSTEM xfs TYPE IN THE iSCSI VOLUME
# mkfs.xfs /dev/sdb1
GET THE UUID OF THE BLOCK VOLUME
# blkid /dev/sdb1
MOUNT ALL THE FILESYSTEMS EXISTING IN THE FSTAB
# sudo mkfs.ext4 /dev/sdb1
# sudo mount /dev/sdb1 /cloud
# mount -a
VERIFY THAT ALL THE iSCSI VOLUMES ARE MOUNTED
# fdisk -l
# lsblk
إرسال تعليق