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. 设置远程访问Oracle数据库

    我这里设置的是别人远程访问我本地的数据库. 方法: 通过WiFi共享,别人连接该共享的WiFi,来访问我的数据库(局域网). 步骤1: 下载WiFi共享大师. 步骤2: 安装好后开启WiFi. 开启后 ...

  2. ASP.NET Web API实践系列04,通过Route等特性设置路由

    ASP.NET Web API路由,简单来说,就是把客户端请求映射到对应的Action上的过程.在"ASP.NET Web API实践系列03,路由模版, 路由惯例, 路由设置"一 ...

  3. Android 打包签名 从生成keystore到完成签名 -- 转

    首先,我们需要一个keystore,当然已经有了的话就不用这一步了:cmd下:进入到jdk的bin目录,这样的话,android.keystore文件就会生成在这个目录下,签名的时候我们需要这个文件C ...

  4. LintCode "Digit Counts" !!

    Lesson learnt: one effective solution for bit\digit counting problems: counting by digit\bit http:// ...

  5. Func系列3:自定义模块

    简介 Func自带的模块已经非常丰富,但在日常系统运维当中,尤其是面对大规模的服务器集群.不同类别的业务平台,次是Func自带的模块或许已经不能满足我们的需求,所以有必要通过自定义模块来填补这块的不足 ...

  6. android学习笔记28——Activity生命周期

    Activity生命周期 Activity的活动状态由android已Activity栈的形式管理,当前活动的Activity位于栈顶.随着不同应用的运行,每个Activity都有可能从活动状态转入非 ...

  7. 解决AD域认证问题—“未知的身份验证机制”

    场景: Ad认证登录系统,之前正常.不知服务器调了什么,导致无法登录.提示信息如标题. 解决方案: DirectoryEntry adRoot = new DirectoryEntry("L ...

  8. c++中字符串处理函数

    c++11中提供了to_string函数,定义在string中, 重载了一大片, std::string to_string( int value ); () (since C++) std::str ...

  9. [linux basic基础]----套接字

    套接字是一种通信机制,凭借这种机制client/server系统的开发者既可以在本地机器上进行,也可以跨网络进行. 1,服务器应用程序用系统调用socket来创建一个套接字,他是系统分配给服务器进程的 ...

  10. [JS]Javascript的函数总结

    Javascript中不存在函数重载,同名的函数将被最后一个覆盖. function test(a,b){ this.x = 1;} function test(a){ this.x = 2;} fu ...