我是wordmove中的新手。 我在本地服务器上创建了movefile.yml但是医生命令说:
▬▬ ✓ Validating movefile section: production ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
error | This remote has not ssh nor ftp protocol defined
▬▬ ✓ Validating movefile section: ssh ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
error | This remote has not ssh nor ftp protocol defined
我的远程服务器托管在godaddy上,终端ssh连接工作正常。 有什么建议?
答案 0 :(得分:0)
您错误地缩进了ssh
键。我得到它是因为医生正在考虑将ssh
作为一个部分(因此是YAML中的根密钥),所以它应该是这样的:
production:
vhost:
wordpress_path:
[...]
ssh:
但ssh
必须嵌套在production
production:
vhost:
wordpress_path:
[...]
ssh:
如果是这种情况,那么医生是对的:production
缺少ssh
部分。