1. ホーム
  2. bash

[解決済み] openssl pkcs12 set password from command line(コマンドラインからのパスワード設定

2022-03-02 19:53:42

質問

私は次のようなbashコマンドを持っています。

openssl pkcs12 -export -out ~/certificate.pfx -inkey /etc/letsencrypt/live/exapmle.com/privkey.pem -in /etc/letsencrypt/live/exapmle.com/cert.pem -certfile /etc/letsencrypt/live/exapmle.com/chain.pem

というメッセージが表示され、.pfxファイルを暗号化するためのパスワードの入力を要求されます。そこで、毎回この操作を手動で行わないように、コマンドラインからパスワードを設定する方法はないでしょうか?

解決方法は?

結果、コマンドは

openssl pkcs12 -password pass:your_password -export -out ~/certificate.pfx -inkey /etc/letsencrypt/live/exapmle.com/privkey.pem -in /etc/letsencrypt/live/exapmle.com/cert.pem -certfile /etc/letsencrypt/live/exapmle.com/chain.pem