我正在 VPS 服务器上安装 SSL 证书。我需要使其仅可由 root 读取。我该怎么做?
答案1
以 root 身份:
# chown root cert.key
# chmod 600 cert.key
其中 cert.key 是文件名。
第一个命令确保 root 是该文件的所有者。
chmod 命令中的三个数字分别对应于用户(本例中为 root)、组和其他所有人的权限。权限值为 4 表示读取、2 表示写入、1 表示执行。在本例中,chmod 命令授予 root 读写文件的权限(4 + 2 = 6),而其他任何人都无权执行任何操作。
答案2
你试过做chmod 0400 <your-file-here>
嗎?