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.
我想为创建 SSH 密钥创建服务,因为输出必须检索 pem 文件内容。
我认为你的问题可以用一个简单的脚本来解决。
ssh-keygen -t dsa -N "my passphrase" -C "test key" -f mykey
这将使您能够自动化该过程,因为不会要求任何提示。如果需要,您可以添加 cat 命令以返回密钥。