Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 nginx 和 SSH 密钥时遇到了一些问题。
我需要为 nginx 用户添加一个 ssh 密钥以访问私有 github 存储库,然后运行“git ...”命令将 repo 拉取或克隆到我的 Ubuntu 机器上。
由于 nginx 用户只是一个工作任务,是否可以为该用户生成密钥?
谢谢你的帮助!
您可以使用以下命令以其他用户身份运行命令,而无需提供密码sudo:
sudo
$ sudo -u nginx ssh-keygen -t rsa -C "email@address.com"