forked from nss-dev/nss
-
Notifications
You must be signed in to change notification settings - Fork 0
Creating NSS Database
Endi S. Dewata edited this page Jan 20, 2022
·
1 revision
To create NSS database without a password:
$ mkdir -p nssdb $ certutil -N -d nssdb --empty-password
To create NSS database with a password:
$ mkdir -p nssdb $ echo Secret.123 > password.internal $ certutil -N -d nssdb -f password.internal
To change NSS database password:
$ certutil -W -d nssdb -f oldpassword.txt [email protected]