在阿里函数计算里这个报错怎么解决?[阿里云]

在阿里函数计算里”ErrorCode”: “InvalidArgument”,
“ErrorMessage”: “Mount NFS://037c0493e1-jxm32.cn-hangzhou.nas.aliyuncs.com:/fc-stable-diffusion-plus command failed with output = mount.nfs: Connection reset by peer
, please make sure that the nas mount point address is correct and is accessible from the service VPC”
}怎么这么解决?

「点点赞赏,手留余香」

    还没有人赞赏,快来当第一个赞赏的人吧!
=====这是一个广告位,招租中,联系qq 78315851====
1 条回复 A 作者 M 管理员
  1. 检查账户是否欠费问题https://help.aliyun.com/zh/fc/use-cases/faq-about-deploying-a-stable-diffusion-application?spm=a2c4g.11186623.0.i216

    问题现象:应用启动时,出现报错信息{“ErrorCode”:”InvalidArgument”,”ErrorMessage”:”Mount NFS:xxxxx-jlb79.cn-hangzhou.nas.aliyuncs.com:/fc-stable-diffusion-plus command failed with output = mount.nfs: Connection reset by peer, please make sure that the nas mount point address is correct and is accessible from the service VPC”}。

    问题原因:模型正常上传后,启动仍然失败,可能是由于当前账号存在欠费。账号欠费后,在挂载NAS文件系统时会出现报错。

    解决方案:请在当前账号下充值,待账号恢复正常后重试。

  2. NFS挂载错误,这个错误提示表明你的函数计算服务尝试挂载 NAS(网络附加存储)时遇到了问题。”Connection reset by peer” 表示远程服务器强制关闭了连接,可能的原因包括:
    1、网络问题:检查 VPC 和 NAS 之间的网络连通性。
    2、权限问题:确保你使用的服务账号有足够的权限访问 NAS。
    3、NAS 地址和挂载点配置错误:确认你提供的 NAS 地址和挂载点是正确的,并且在服务 VPC 内可以访问。