| 1 | = SafeSets Notes = |
| 2 | |
| 3 | This collects all the notes about how to do safesets things that I keep losing |
| 4 | |
| 5 | == pem -> jks == |
| 6 | |
| 7 | to do that for a keypair.. its a 2 step process.. first to pkcs then |
| 8 | jks.. |
| 9 | {{{ |
| 10 | $ openssl pkcs12 -export -in MYCERT.crt -inkey MYKEY.key -out keystore.p12 -name "mykey" |
| 11 | $ (16:47:57) Prateek: keytool -importkeystore -srckeystore keystore.p12 -destkeystore keystore.jks -srcstoretype pkcs12 -deststoretype jks |
| 12 | }}} |
| 13 | |
| 14 | {{{ |
| 15 | Server restart |
| 16 | |
| 17 | Instructions for restarting the SafeSets server (you shouldn't need to do this) |
| 18 | cd /home/jaipuria/playground/abac/safesets/ |
| 19 | sudo rm -r config/single_node_cluster/data/ |
| 20 | bin/voldemort-server.sh config/single_node_cluster/ |
| 21 | |
| 22 | }}} |