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报错,ORA-28001: 口令已经失效

    Oracle11G创建用户时缺省密码过期限制是180天(即6个月), 如果超过180天用户密码未做修改则该用户无法登录. Oracle公司是为了数据库的安全性默认在11G中引入了这个默认功能,但是这个 ...

  2. jQuery Mobile_简单的爱情故事

    <!doctype html> <html> <head> <meta charset="utf-8"> <meta name ...

  3. 日期转换类 DateConverter.java

    package com.util; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.D ...

  4. php发送ssl邮件

    <?php /** * 邮件发送类 * 支持发送纯文本邮件和HTML格式的邮件,可以多收件人,多抄送,多秘密抄送,带附件(单个或多个附件),支持到服务器的ssl连接 * 需要的php扩展:soc ...

  5. JS 黑客帝国文字下落效果

    黑客帝国文字下落效果 源代码如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8" ...

  6. LintCode "Expression Tree Build"

    Lesson learnt: for any calculator problems, keep 2 stacks: 1 for operators and 1 for operands. class ...

  7. zend studio 13 curl 请求本机地址 无法跟踪调试的问题解决方案。。。(chrome等浏览器调试原理相同)

    方案如下: <?php $ch = curl_init (); curl_setopt ($ch, CURLOPT_URL, 'http://YOUR-SITE.com/your-script. ...

  8. [git]Git与Repo入门

    转自:http://www.cnblogs.com/angeldevil/archive/2013/11/26/3238470.html 注:非常推荐的一篇关于git的博文 目录: 版本控制 一.原始 ...

  9. 106. Construct Binary Tree from Inorder and Postorder Traversal

    Given inorder and postorder traversal of a tree, construct the binary tree. Note:You may assume that ...

  10. 216. Combination Sum III

    Find all possible combinations of k numbers that add up to a number n, given that only numbers from ...