aix平台搭建NFS

2021-06-23 03:34:11 字數 1572 閱讀 6307

10.10.10.101

為nfs伺服器,該伺服器的/rmanbak目錄需要掛載至10.1.1.50(生產伺服器)

伺服器端(

10.10.10.101

)執行:

#

vi /etc/exports 新增如下行

/rmanbak -rw,root=db01,access=db01

新增客戶端的

ip主機名:

10.1.1.50 db01

啟動nfs:

#mknfs -n

0513-029 the portmap subsystem is already active.

multiple instances are not supported.

starting nfs services:

0513-029 the biod subsystem is already active.

multiple instances are not supported.

0513-029 the nfsd subsystem is already active.

multiple instances are not supported.

0513-029 the rpc.mountd subsystem is already active.

multiple instances are not supported.

0513-029 the rpc.statd subsystem is already active.

multiple instances are not supported.

0513-029 the rpc.lockd subsystem is already active.

multiple instances are not supported.

completed nfs services.

客戶端(

10.1.1.50

)執行如下:

vi /etc/filesystems

新增如下

/rmanbak:

dev             = /rmanbak

vfs             = nfs

nodename        = 10.10.10.101

mount           = flase

options=rw,bg,hard,intr,proto=tcp,vers=3,rsize=65536,wsize=65536,timeo=600

account         = false

新增server端主機名:

vi /etc/hosts:

10.10.10.101 testdb

掛載

/rmanbak

目錄:

#mount /oradata/backup

AIX 掛載linux下的nfs

今天客戶有需要,對aix小機中的一套oracle rac資料庫遷移到另一套aix 的oracle rac資料庫下,但是兩套小機都沒有額外的空間來儲存備份資料,這時就想到了nfs,可是以前只有linux的nfs使用經驗,怎麼辦呢 在網上隨便找了個文章看了下,感覺和linux下的方式差不多。搭建linu...

搭建nfs服務

記錄一下,留著以後用。這裡是以龍芯3210為例,其他開發板可以參考。工作環境 ubuntu 10.04 虛擬機器7.13 目標平台 龍芯3210開發板 開發包核心原始碼目錄 home linux 3210 開發包核心版本 2.6.18.1 交叉編譯工具 gcc 3.4.6 目的 在嵌入式的交叉編譯環...

NFS服務搭建

nfs服務用於任意兩台linux系統之間通訊,但這兩台機器得得用網線連線。安裝本機的nfs服務 以下操作在你的ubuntu中完成 1 sudo apt get install nfs kernel server 2 vim etc exports 新增 mnt nfswork rw,sync,no ...