新安装的Ubuntu 14.04 LTS 64位在安装NFS服务器的时候可能会出现如题所示问题,对于该问题,我在解决的时候直接度娘* Not starting: portmapper is not running发现并没有多少中文结果,并且尝试之后并没能得到解决,打开英文结果,发现别人说的解决方案都不一样,在经过尝试之后发现以下方法是能解决该问题的,步骤如下:
* Stopping NFS kernel daemon [ OK ]
* Unexporting directories for NFS kernel daemon... [ OK ]
* Exporting directories for NFS kernel daemon... [ OK ]
* Starting NFS kernel daemon
* Not starting: portmapper is not running
首先执行以下命令
$ sudo apt-get purge rpcbind
$ sudo apt-get install nfs-kernel-server
然后配置以下export文件
$ sudo vim /etc/exports
添加一句((your_share_name)用你创建的打算通过NFS共享的目录路径代替)
/(your_share_name) *(rw,sync,no_subtree_check,no_root_squash)
重启rpcbind服务(老版本叫portmap服务)
$ sudo service rpcbind start
最后重启NFS服务器
$ sudo /etc/init.d/nfs-kernel-server restart
腾讯云CentOS6.2 64位NFS安装:http://www.linuxdiyf.com/linux/16607.html
Linux设置nfs共享目录:http://www.linuxdiyf.com/linux/14088.html
CentOS 6.5系统下实现NFS共享:http://www.linuxdiyf.com/linux/10599.html
SUSE Linux创建NFS共享文件夹:http://www.linuxdiyf.com/linux/10510.html
简单在Linux系统之间建立NFS共享:http://www.linuxdiyf.com/linux/6773.html