- Community Home
- >
- HPE Community, Taiwan
- >
- Tru64 Unix & OpenVMS
- >
- OpenVMS
- >
- 請問怎樣在VMS 上建立NFS server,再讓Unix 來Mount
OpenVMS
1820496
會員
4444
線上
109625
解決方案
論壇
類別
Company
Local Language
返回
論壇
討論平台
論壇
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
討論平台
討論平台
返回
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
部落格
信息
社區語言
語言
論壇
部落格
文章選項
- 訂閱此主題的RSS 提要
- 將此主題標記為未讀
- 將主題標記為已讀
- 將主題在本帳號置頂
- 標示為書籤
- 訂閱此主題
- 列印此頁
- 將文章標記為未讀
- 標示為書籤
- 訂閱此主題
- 靜音
- 訂閱此主題的RSS 提要
- 高亮顯示此文章
- 列印此文章
- 提報不當內容
在 07-19-2007 07:01 AM
在 07-19-2007 07:01 AM
請問怎樣在VMS 上建立NFS server,再讓Unix 來Mount
請問怎樣在VMS 上建立NFS server,再讓Unix 來Mount
是否有文件或範例可以分享呢?
謝謝
是否有文件或範例可以分享呢?
謝謝
1則回覆 1
- 將文章標記為未讀
- 標示為書籤
- 訂閱此主題
- 靜音
- 訂閱此主題的RSS 提要
- 高亮顯示此文章
- 列印此文章
- 提報不當內容
在 07-19-2007 08:48 AM
在 07-19-2007 08:48 AM
請問怎樣在VMS 上建立NFS server,再讓Unix 來Mount
(TCPIP Management book should always help!)
In essence, to set up the NFS server you need to perform the following operations :-
Services
1) Ensure that the services NFS, MOUNT and PORTMAPPER have been configured by the SYS$MANAGER:TCPIP$CONFIG.COM procedure (see the Installation and Configuration Manual to configure them if they are not present)
eg TCPIP> SHOW SERVICE
Service Port Proto Process Address State
BIND 53 TCP,UDP TCPIP$BIND 0.0.0.0 Disabled
...
MOUNT 10 UDP TCPIP$NFS_M 0.0.0.0 Enabled
NFS 2049 UDP TCPIP$NFS 0.0.0.0 Enabled
PORTMAPPER 111 TCP,UDP TCPIP$PORTM 0.0.0.0 Enabled
etc.
Client Hostname setup
2) Ensure that the client host is in the local host table
eg TCPIP> SET HOST "unixhost"/ADDRESS=194.28.0.30/ALIAS=UNIXHOST
Setup Disk Mapping
3) Map the disk you wish to export to a Unix-style pathname -
eg TCPIP> MAP "/dka0" $1$DKA0:
4) Save the mapping in the configuration database
eg TCPIP> SET CONFIGURATION MAP "/dka0" $1$DKA0:
Setup Exports
5) Add the directories on the disk to the export database using Unix-style syntax
eg TCPIP> ADD EXPORT "/dka0/fred" /HOST=*
Setup Network Proxies
6) Add NFS proxies for your users and for "root" and "nobody"
eg TCPIP> ADD PROXY TCPIP$NFS /UID=0/GID=1/HOST=*
TCPIP> ADD PROXY TCPIP$NOBODY /UID=-2/GID=-2/HOST=*
TCPIP> ADD PROXY FRED /UID=100/GID=15/HOST=*
(the UID/GID for the users must match their accounts on the U*ix system)
Unix Client Mount
7) Create a mount point on the U*ix file system and mount the exported directory
eg # mkdir vms
# mount vms_host:/dka0/fred /usr/users/fred/vms
Mount Command for a VMS NFS Client
To use NFS client there must be exported file
In essence, to set up the NFS server you need to perform the following operations :-
Services
1) Ensure that the services NFS, MOUNT and PORTMAPPER have been configured by the SYS$MANAGER:TCPIP$CONFIG.COM procedure (see the Installation and Configuration Manual to configure them if they are not present)
eg TCPIP> SHOW SERVICE
Service Port Proto Process Address State
BIND 53 TCP,UDP TCPIP$BIND 0.0.0.0 Disabled
...
MOUNT 10 UDP TCPIP$NFS_M 0.0.0.0 Enabled
NFS 2049 UDP TCPIP$NFS 0.0.0.0 Enabled
PORTMAPPER 111 TCP,UDP TCPIP$PORTM 0.0.0.0 Enabled
etc.
Client Hostname setup
2) Ensure that the client host is in the local host table
eg TCPIP> SET HOST "unixhost"/ADDRESS=194.28.0.30/ALIAS=UNIXHOST
Setup Disk Mapping
3) Map the disk you wish to export to a Unix-style pathname -
eg TCPIP> MAP "/dka0" $1$DKA0:
4) Save the mapping in the configuration database
eg TCPIP> SET CONFIGURATION MAP "/dka0" $1$DKA0:
Setup Exports
5) Add the directories on the disk to the export database using Unix-style syntax
eg TCPIP> ADD EXPORT "/dka0/fred" /HOST=*
Setup Network Proxies
6) Add NFS proxies for your users and for "root" and "nobody"
eg TCPIP> ADD PROXY TCPIP$NFS /UID=0/GID=1/HOST=*
TCPIP> ADD PROXY TCPIP$NOBODY /UID=-2/GID=-2/HOST=*
TCPIP> ADD PROXY FRED /UID=100/GID=15/HOST=*
(the UID/GID for the users must match their accounts on the U*ix system)
Unix Client Mount
7) Create a mount point on the U*ix file system and mount the exported directory
eg # mkdir vms
# mount vms_host:/dka0/fred /usr/users/fred/vms
Mount Command for a VMS NFS Client
To use NFS client there must be exported file
以上表述為作者個人觀點,不代表惠普公司,使用本網站,請遵守網站使用規則和條款
© 版权所有 2025 慧与发展有限责任合伙企业