Oracle Linux 6.4配置NFS
1. Install
su - root
yum install nfs-utils
service nfs start
chkconfig --list nfs
chkconfig nfs on
2. Turn off your firewall and SELinux
/etc/selinux/config and change the SELINUX line to SELINUX=disabled:
3. Config NFS
vi /etc/exports
-- Add the following line.
/u01/app/oracle/oradata/orcl 10.28.121.0/24(ro)
--10.28.121.0/24(ro) indicates what subnet has access to this shared resource, and read-only.
service nfs restart
showmount -e
NFS config file: /etc/sysconfig/nfs
4. Check your portmap config
rpcinfo -p
The rpcinfo command shows each RPC-based service (for instance NFS) with port numbers, an RPC program number, a version number, and an IP protocol type (TCP or UDP). the nfs service should show up in the list.
5. Mount from another machine
mkdir /home/oracle/online_log
mount -t nfs -o rw odilab:/u01/app/oracle/oradata/orcl /home/oracle/online_log
su - root
yum install nfs-utils
service nfs start
chkconfig --list nfs
chkconfig nfs on
2. Turn off your firewall and SELinux
/etc/selinux/config and change the SELINUX line to SELINUX=disabled:
3. Config NFS
vi /etc/exports
-- Add the following line.
/u01/app/oracle/oradata/orcl 10.28.121.0/24(ro)
--10.28.121.0/24(ro) indicates what subnet has access to this shared resource, and read-only.
service nfs restart
showmount -e
NFS config file: /etc/sysconfig/nfs
4. Check your portmap config
rpcinfo -p
The rpcinfo command shows each RPC-based service (for instance NFS) with port numbers, an RPC program number, a version number, and an IP protocol type (TCP or UDP). the nfs service should show up in the list.
5. Mount from another machine
mkdir /home/oracle/online_log
mount -t nfs -o rw odilab:/u01/app/oracle/oradata/orcl /home/oracle/online_log
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/638844/viewspace-1061814/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux NFS 配置LinuxNFS
- linux配置nfsLinuxNFS
- Linux 上配置、使用NFSLinuxNFS
- linux下nfs的配置LinuxNFS
- Linux伺服器---配置nfsLinux伺服器NFS
- Linux伺服器—配置nfsLinux伺服器NFS
- Linux-NFS——配置過程LinuxNFS
- linux Direct NFS配置介紹LinuxNFS
- linux 配置nfs(rman 備份)LinuxNFS
- 【NFS】Linux配置NFS共享常用SQL指令碼目錄NFSLinuxSQL指令碼
- AIX下配置NFS共享給LINUXAINFSLinux
- 在Linux中,如何配置NFS共享?LinuxNFS
- CentOS 6.4 X64 利用 yum 升級到 Oracle linux 6.4 核心CentOSOracleLinux
- Linux配置NFS實現檔案共享LinuxNFS
- 配置基於LINUX的NFS掛載LinuxNFS
- linux中配置NFS服務step by stepLinuxNFS
- NFS介紹、NFS服務端安裝配置、NFS配置選項NFS服務端
- linux as4下NFS配置注意事項LinuxNFS
- Linux系統配置NFS檔案共享服務LinuxNFS
- Linux CentOS 檔案共享NFS的安裝配置LinuxCentOSNFS
- 配置NFS固定埠NFS
- nfs配置 /etc/exportsNFSExport
- linux nfsLinuxNFS
- Configure Direct NFS(DNFS) on RHELinux6.4 (11R2)NFSLinux
- 配置nfs伺服器NFS伺服器
- AIX 上配置、使用NFSAINFS
- AIX平臺NFS配置AINFS
- 配置 NFS 共享目錄NFS
- NFS文件(FOR LINUX)NFSLinux
- linux_批次安裝配置檔案_dhcpd_tftp_nfsLinuxFTPNFS
- Redhat Enterprise Linux 6.4 安裝Oracle JDK替換OpenJDKRedhatLinuxOracleJDK
- NFS服務配置總結NFS
- AIX配置NFS注意事項AINFS
- hpux nfs配置一例UXNFS
- CentOS 7 安裝配置 NFSCentOSNFS
- Linux下搭建 NFSLinuxNFS
- linux nfs實踐LinuxNFS
- 【Oracle】RHEL6.4-64位 安裝oracle11.2.0.3(六) 建庫後相關配置Oracle