板子在很多時候需要通過 nfs 協議讀取 mount 的檔案。
1)安裝nfs服務和rpcbind 服務
yum install rpcbind
yum install nfs-utils
2)建立nfs server目錄,用於放置被遠端nfs訪問的檔案。
mkdir /opt/nfsroot
/opt/nfsroot *(rw,no_root_squash,no_all_squash)
4)啟動rpcbind和 nfs 服務:
systemctl restart rpcbind.service
systemctl restart nfs.service
可以用下列命令檢查這兩個服務的狀態
systemctl status rpcbind.service
]# systemctl status rpcbind.service
rpcbind.service - rpc bind service
loaded: loaded (/usr/lib/systemd/system/rpcbind.service; static)
active: active (running) since 三 2014-03-05 13:55:54 cst; 4min 9s ago
process: 3688 execstart=/sbin/rpcbind -w $ (code=exited, status=0/success)
main pid: 3689 (rpcbind)
cgroup: /system.slice/rpcbind.service
└─3689 /sbin/rpcbind -w
3月 05 13:55:54 localhost.localdomain systemd[1]: started rpc bind service.
複製**
systemctl status nfs.service
#systemctl status nfs.service
nfs-server.service - nfs server
loaded: loaded (/usr/lib/systemd/system/nfs-server.service; enabled)
active: active (exited) since 三 2014-03-05 13:57:16 cst; 1min 57s ago
process: 3788 execstoppost=/usr/sbin/exportfs -f (code=exited, status=0/success)
process: 3786 execstop=/usr/sbin/rpc.nfsd 0 (code=exited, status=0/success)
process: 3817 execstartpost=/usr/libexec/nfs-utils/scripts/nfs-server.postconfig (code=exited, status=0/success)
process: 3803 execstart=/usr/sbin/rpc.nfsd $rpcnfsdargs $rpcnfsdcount (code=exited, status=0/success)
process: 3800 execstartpre=/usr/sbin/exportfs -r (code=exited, status=0/success)
process: 3798 execstartpre=/usr/libexec/nfs-utils/scripts/nfs-server.preconfig (code=exited, status=0/success)
main pid: 3803 (code=exited, status=0/success)
cgroup: /system.slice/nfs-server.service
3月 05 13:57:16 localhost.localdomain systemd[1]: started nfs server.
複製**
5.檢查nfs服務是否啟動:
mount localport:/opt/nfsroot /mnt
6.必要是關閉防火牆
如果遠端訪問不能成功,原因是防火牆的問題,關閉或者禁用防火牆。
systemctl stop firewalld.service
systemctl disable firewalld 禁用防火牆
7.遠端檢查nfs服務
mount localport ip address:/opt/nfsroot /mnt
fedora的nfs伺服器的安裝和啟動配置
安裝軟體包 服務端和客戶端都得安裝 nfs utils 這個是nfs服務主程式 包含rpc.nfsd rpc.mountd daemons rpcbind 這個是centos6.x的rpc主程式 centos5.x的為portmap yum install y nfs utils rpcbind 配...
Fedora18 NFS伺服器終於搭建成功
在win7上玩了幾天虛擬機器,覺得不是很爽!畢竟學的是linux,那好歹也得有個linux的學習環境,於是就安裝了雙系統。好,回到正題。之前說道虛擬機器中samba的配置悲劇,其實這次也差不多。為了以後傳輸大檔案的需求,我沒有繼續那些例程的燒寫工作,而是開始了nfs伺服器的配置。這又是讓我抓耳撓腮的...
fedora16 TFTP伺服器的安裝與配置
tftp trivial file transfer protocol,簡單檔案傳輸協議 是tcp ip協議族中的乙個用來在客戶機與伺服器 之間進行簡單檔案傳輸的協議,提供不複雜 開銷不大的檔案傳輸服務。埠號為69。一.安裝tftp server服務 tftp客戶端 sudo yum install...