关于windows service不能访问阿里云NFS(映射网络驱动器)的解决方案

问题描述:

创建阿里云提供的NAS NFS/SMB文件系统后,在windwos server2008R2 下挂载(盘符映射)

mount -o nolock \\3e6a14a288-iwd16.cn-shanghai.nas.aliyuncs.com\! Z:

注册表项:HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > ClientForNFS > CurrentVersion > Default

AnonymousGID = 0

AnonymousUID = 0

挂载后,应用程序可以访问Z:盘符, Windows服务无法访问Z:盘符。

 

原因分析:

Windows服务如果是运行在本地系统帐户下或本地服务帐户下,它只能访问这个账户自己创建的映射驱动器。

 

解决方法:

1、首先下载PsExec程序,它在PsTools中:http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx。

2、在C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup下创建XXX.bat。

3、XXX.bat 内容:psexec64.exe -i -s -d mount -o nolock \\xxxxxxxxxxxx-xxxxxxx.cn-beijing.nas.aliyuncs.com\! Z:  

你可能感兴趣的:(运维)