发布时间:2014-09-05 17:03:27作者:知识屋
文章尚未完成请勿参考
(一)LVS
(二)gfs
(三)iscsi部分
iptables -F
iptables -X
service iptables save
ip6tables -F
ip6tables -X
service ip6tables save
setenforce 0
安装服务端
yum install scsi-target-utils iscsi-initiator-utils -y
scsi-target-utils-1.0.18-1.fc15.x86_64
iscsi-initiator-utils-6.2.0.872-12.fc15.x86_64
service tgtd start
chkconfig tgtd on
1.新增target device命令如下:
# tgtadm --lld iscsi --op new --mode target --tid 1 -T rhcs-storage
查看target device
#tgtadm --lld iscsi --op show --mode target
2.将起初新建的分区加入target device。
# tgtadm --lld iscsi --op new --mode logicalunit --tid 1 --lun 1 -b /dev/sda6
3.查看加入target device后的输出内容:
# tgtadm --lld iscsi --op show --mode target
4.设置可以访问存取此target device的initiator节点。本机允许gfs1 gfs2 gfs3存取,设置如下:
#tgtadm --lld iscsi --op bind --mode target --tid 1 -I 192.168.0.92
#tgtadm --lld iscsi --op bind --mode target --tid 1 -I 192.168.0.93
iscsiadm -m node -T rhcs-storage -p 192.168.0.91:3260 -l
客户端
检测服务端是否正常识别
[root@client01 ~]# iscsiadm -m discovery -t sendtargets -p 192.168.0.93:3260
登入服务端
[root@client01 ~]# iscsiadm -m node -T rhcs-storage -p 192.168.0.93:3260 -l
退出服务端iscsiadm -m node -T rhcs-storage -p 192.168.0.91:3260 -u
创建物理卷
[root@gfs-node-01 ~]# pvcreate -ff /dev/sdc
Physical volume "/dev/sdc" successfully created
创建卷组
[root@gfs-node-01 ~]# vgcreate gfsvg /dev/sdc
Clustered volume group "gfsvg" successfully created
创建逻辑卷
[root@gfs-node-01 ~]# lvcreate -L 4G -n vg01 gfsvg
mkfs.gfs2 -p lock_dlm -t cluster-gfs:data1 -j 2 /dev/gfsvg/vg01
Disk /dev/mapper/share-share10 doesn't contain a valid partition table
[root@gfs-node-01 /]# lvcreate -L 10G -n share10 share^C
[root@gfs-node-01 /]# lvre
lvreduce lvremove lvrename lvresize
[root@gfs-node-01 /]# lvremove share10
Volume group "share10" not found
Skipping volume group share10
[root@gfs-node-01 /]# lvremove /dev/
Display all 186 possibilities? (y or n)
[root@gfs-node-01 /]# lvremove /dev/mapper/share-share10
Do you really want to remove active logical volume share10? [y/n]: y
Logical volume "share10" successfully removed
[root@gfs-node-01 /]# vgremove share
Volume group "share" successfully removed
[root@gfs-node-01 /]# pvremove /dev/sda6
Labels on physical volume "/dev/sda6" succ
本文出自 “steven 业精于勤荒于嬉..” 博客
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能