将 redis.conf 文件移动到 AMI 时,Packer 给我 SCP 权限被拒绝
Packer giving me SCP permission denied when moving a redis.conf file over to an AMI
我对为什么在使用 Packer 时会出现这种情况感到非常困惑。我想做的是将本地 redis.conf 文件移到我的 AMI 中;但是,当我这样做时,它给了我一个错误。我的 Packer 配置器是这样的:
{
"type": "file",
"source": "../../path/to/file/redis.conf",
"destination": "/etc/redis/redis.conf"
}
然后它 returns 一个错误说:scp /etc/redis/: Permission denied
您需要做的是将文件复制到您具有写入权限的位置(例如 /tmp),然后使用内联供应器将其移动到其他位置。
我有类似的东西:
provisioner "file" {
source = "some/path/to/file.conf"
destination = "/tmp/file.conf
}
然后:
provisioner "shell" {
inline = ["sudo mv /tmp/file.conf /etc/some_service/file.conf"]
}
我对为什么在使用 Packer 时会出现这种情况感到非常困惑。我想做的是将本地 redis.conf 文件移到我的 AMI 中;但是,当我这样做时,它给了我一个错误。我的 Packer 配置器是这样的:
{
"type": "file",
"source": "../../path/to/file/redis.conf",
"destination": "/etc/redis/redis.conf"
}
然后它 returns 一个错误说:scp /etc/redis/: Permission denied
您需要做的是将文件复制到您具有写入权限的位置(例如 /tmp),然后使用内联供应器将其移动到其他位置。
我有类似的东西:
provisioner "file" {
source = "some/path/to/file.conf"
destination = "/tmp/file.conf
}
然后:
provisioner "shell" {
inline = ["sudo mv /tmp/file.conf /etc/some_service/file.conf"]
}