Isilon build for storage data

  1. Use VMware converter to convert node1 to ESX(参考silon_OneFS_Simulator_Install_Guilde.pdf的P31)
  2. Increase disk 2,3,4,5 (3.9G *4) size to 500GB each
  3. Modify network adapter to correct network segment
  4. Power on
  5. Answer ‘yes’ to format all disks
  6. Create a new cluster
  7. Password for root, admin:yes
  8. Use default UTF-8
  9. Internal IP range: 192.168.141.182-192.168.141.183, 255.255.255.0
  10. External IP range: 10.62.83.70-10.62.83.71, 255.255.255.0
  11. Keep the current Smartconnect Settings
  12. Gateway 10.62.83.1
  13. DNS 10.62.83.20, gni.local
  14. Login web admin: http://10.62.83.70,

Join an existing cluster

  1. Enable NDMP: Data protection -> Backup ->  NDMP settings -> Enable
  2. Add NDMP administrator: ndmp, password: Emsee1234567890
  3. Create browser user account in Isilon system

In order to perform on-demand backups, or create datasets for scheduled backups in

Avamar Administrator, you must be able to browse the Isilon file system. These actions

require typing a password for a local Isilon user account with following privileges:

u ISI_PRIV_LOGIN_PAPI

u ISI_PRIV_NS_TRAVERSE

u ISI_PRIV_NS_IFS_ACCESS

Although there are several methods for creating local Isilon user accounts, privileges can

only be assigned to roles using the command-line interface.

baas-isilon-1# isi auth users create av-browse-admin --password Emsee1234567890 --home-directory /ifs/home/av-browse-admin --enabled true

baas-isilon-1# isi auth roles create namespace

baas-isilon-1# isi auth roles modify namespace --add-user av-browse-admin

baas-isilon-1# isi auth roles modify namespace --add-priv ISI_PRIV_LOGIN_PAPI

baas-isilon-1# isi auth roles modify namespace --add-priv ISI_PRIV_NS_TRAVERSE

baas-isilon-1# isi auth roles modify namespace --add-priv ISI_PRIV_NS_IFS_ACCESS

  1. Prepare a Linux VM for Avamar NDMP accelerator/proxy: use SUSE11SP2 for VMware server
  2. Install Avamar Linux client package and NDMP package on the accelerator VM
  3. Run avsetupndmp
  4. Disable firewall on ndmp accelerator when necessary
    1. # service iptables save
      # service iptables stop
      # chkconfig iptables off

结论:存储容量是叠加的.

Isilon OneFS Simulator Install Guide的更多相关文章

  1. Win10 Theano Install Guide

    basic install guide 1. download miniconda 2. conda install libpython mingw 3. conda install theano n ...

  2. Fedora 25/24/23 nVidia Drivers Install Guide

    https://www.if-not-true-then-false.com/2015/fedora-nvidia-guide/ search Most Popular Featured Linux ...

  3. EMC Isilon(OneFS)误删文件数据恢复过程<存储数据恢复>

    [科普Isilon的存储结构] Isilon内部使用的是分布式文件系统OneFS.在Isilon存储集群里面每个节点均为单一OneFS文件系统,所以Isilon在支持横向扩展的同时并不会影响数据正常使 ...

  4. Install guide for OpenLDAP and GOsa 2 on Ubuntu & Debian

    First we will install OpenLDAP by running the command as root: apt-get install slapd ldap-utils ldap ...

  5. freefcw/hustoj Install Guide

    First of all, this version hustoj is a skin and improved for https://code.google.com/p/hustoj/. So t ...

  6. csvn install guide

    一. make sure java install $ java -version $ echo $JAVA_HOME 二. untar tgz file $ tar xf CollabNetSubv ...

  7. [原]Chef_Server and Chef_WorkStation and Chef_Client Install Guide[by haibo]

    一.Prerequisite OS  :  CentOS-7.0-1406-x86_64-DVD.iso Time Server :   NTP Server SERVER NAME IP PLAN ...

  8. kubernetes Auto Install Guide

    1.概念&架构 Kubernetes is an open-source system for automating deployment, scaling, and management o ...

  9. HOWTO install Oracle 11g on Ubuntu Linux 12.04 (Precise Pangolin) 64bits

    安装了Ubuntu 12.04 64bit, 想在上面安装Oracle 11gr2,网上找了好多文档都没成功,最后完全参考了MordicusEtCubitus的文章. 成功安装的关键点:install ...

随机推荐

  1. Asianux的SSH登录问题,密码不正确解决

    第一.ssh服务默认是关闭的,需要手动打开 [root@Asianux ~]# service sshd start      启动 [root@Asianux ~]#chkconfig sshd - ...

  2. RMAN备份与恢复之参数文件与控制文件

    0   说明 本例是基于备份数据库全库的基础上,还原参数据文件(spfile),控制文件. 1   准备 [oracle@TEST144239 /]$ sqlplus /nolog SQL Produ ...

  3. 基本的 HTML 标签 - 四个实例

    本章通过实例向您演示最常用的 HTML 标签. 提示:不要担心本章中您还没有学过的例子,您将在下面的章节中学到它们. 提示:学习 HTML 最好的方式就是边学边做实验.我们为您准备了很好的 HTML ...

  4. 清理SQL Server日志释放文件空间的终极方法

    清理SQL Server日志释放文件空间的终极方法  转自:http://www.cnblogs.com/dudu/archive/2013/04/10/3011416.html [问题场景]有一个数 ...

  5. 【转】JVM 分代GC策略分析

    我们以Sun HotSpot VM来进行分析,首先应该知道,如果我们没有指定任何GC策略的时候,JVM默认使用的GC策略.Java虚拟机是按照分代的方式来回收垃圾空间,我们应该知道,垃圾回收主要是针对 ...

  6. 【转】SQL SERVER CLR存储过程实现

    最近做一个项目,需要做一个SQL SERVER 2005的CLR的存储过程,研究了一下CLR的实现.为方便以后再使用,在这里总结一下我的实现流程,也供对CLR感兴趣但又不知道如何实现的朋友们做一下参考 ...

  7. hibernate级联与反向

    cascade:设置本表与关联表之间的级联操作,如:设置为save-update,则插入或更新对象时同时保存或更新另一端的表,但不会产生关联关系数据,除非inverse为false. inverse: ...

  8. Report_客制化以PLSQL输出HTML标记实现WEB报表(案例)

    2014-05-31 Created By BaoXinjian

  9. CF 486D vailid set 树形DP

    As you know, an undirected connected graph with n nodes and n - 1 edges is called a tree. You are gi ...

  10. UI设计原则

    一.一般原则 简单明了原则: 方便使用原则: 用户向导原则: 实时帮助原则: 自定义功能原则: 界面色彩原则: 二.Web系统适应原则 页面要瘦小 屏幕自适应 浏览器兼容 减少垂直滚动条 禁止水平滚动 ...