iSCSI配置

news/2024/7/4 7:12:52

    openfiler的配置
1,用户名是:openfiler · 密码是:password

2,将openfiler用作iSCSI存储服务器,我们需要执行六个主要的任务:设置iSCSI的服务,配置网络访问,制定物理存储并对其分区,创建新的卷组,创建所有的逻辑卷,最后为每个逻辑卷创建新的iSCSI目标

 服务:
  控制服务,,servcie / manage services
 将iSCSI target server 启动

在Linux上创建iSCSI存储系统,安装iscsi..... lss....服务,启动iSCSI目标;service iscsid start
 我们可以查看iSCSI-target 正在运行
 service iscsi-target status;或是:service iscsid status;


 物理存储:
  volumes/ block devices
 
 对物理磁盘进行分区:
  唯一的修改时将partition type 改为physical valume

 卷组管理
 
 volumes / volumes groups
 
 逻辑卷
  
 volume / add volume

 iSCSI目标
 
 创建新的LQN
 
 volume / iscsi targets 添加

 LUN 映射
 
 LUN Mapping

 网络 ACL

 network ACL
  
 设置为allow


http://www.niftyadmin.cn/n/2124327.html

相关文章

fdw postgres_fdw

os:centos 6.8 db:postgresql 9.6 fdw:foreign data wrapper,postgresql的外部数据包装器。 postgres_fdw 是用于postgresql的数据库之间连接,原因是postgresql不能直接跨库访问,被设计用来替代dblink。 这么口语化的描述&#x…

elasticsearch启动常见问题

elasticsearch启动常见问题 原文:https://blog.csdn.net/qq_22211217/article/details/80740873 一、Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ElasticsearchParseException[malform…

mac 更改默认php

1.新建一个.bash_profile文件并编辑 vim ~/.bash_profile 2.然后在里面输入自己想要的php版本 export PATH/Applications/MAMP/bin/php/php7.2.7/bin:$PATH #/Applications/MAMP/bin/php/php7.2.7/bin是我的php版本路径 3.保存重载环境变量 source ~/.bash_profile 如果你…

postgresql 函数的三个状态

postgresql 的函数有三个状态:IMMUTABLE、STABLE、VOLATILE。这个是与其他数据库有明显概念差别的。 简单描述如下: IMMUTABLE(非常稳定) 表示该函数不能修改数据库并且对于给定的参数值总是会返回相同的值。也就是说,它不会做数据库查找或…

(MAC)Docker容器Removal In Progress删除方案

一 :进入Docker桌面 screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty 二 :找文件(根据自己找文件) cd /var/lib/docker/overlay2/e000b8a86824f48cb824ab643ce7d035e7ec4f3114bad897a2235cf922bba972/diff# 三:安装chatt…

pgpool 之一 1 pgpool + 2 postgresql stream replication 模式

os: centos7.4 db: postgresql 9.6.8 pgpool: pgpool-II-3.7.3 pgpool 简介 准确的名字是Pgpool-II,这里简称为pgpool。pgpool 是介于postgresql 服务和 postgresql 客户端的中间件。它提供如下功能: 1、连接池 2、复制 3、负载均衡 4、限制超过限度的…

centos7 实现elasticsearch-head 开机自启

一 在/etc/init.d 目录下,创建脚本文件 eshead # cd /etc/init.d/ # vim eshead 二 将以下内容写入文件中(其中nodejs安装路径、elasticsearch-head安装路径根据实际情况进行修改) #!/bin/sh #chkconfig: 2345 80 05 #description el…

Unix实用和常用的命令集合

bash: 是GNU Bourne-Again的外壳,是一个增强的和sh兼容的外壳,bash的提示符是$ cat: 显示文本的内容 cc:用于许多系统的C的编译器 cd:进入某个目录 chgrp:改变文件的组所有权 chmod&#x…