Mysql
 sql >> Database >  >> RDS >> Mysql

Come connettersi a MySQL con X509 utilizzando JDBC?

Incrinato, elencato qui, nel mio commento in fondo alla pagina:http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-using-ssl.html

Dopo aver LETTERALMENTE TRASCORSO UNA SETTIMANA FACENDO QUESTO sono finalmente riuscito a connettermi utilizzando un certificato client (RICHIEDE X509 sulla definizione dell'utente)!!!!

rem NOTE: these commands are run using the Java 6 (1.6) JDK as it requires the "-importkeystore" command
rem which is not available before this JDK version.

rem Import the self signed Certifacte Authority certificate into a keystore.
keytool -import -alias mysqlCACert -file ca-cert.pem -keystore truststore -storepass truststore
rem Shows only the signed certificate.
keytool -v -list -keystore truststore -storepass truststore

rem Create a PKCS12 file from an existing signed client certifcate and its private key.
rem set password to "keystore".
openssl pkcs12 -export -in client-cert.pem -inkey client-key.pem -out client.p12 -name clientalias -CAfile ca-cert.pem -caname root
rem Import the combined certificate and private key into the keystore.
keytool -importkeystore -deststorepass keystore -destkeystore keystore -srckeystore client.p12 -srcstoretype PKCS12 -srcstorepass keystore -alias clientalias

Quindi specificare il file certificati attendibili (il truststore) e il certificato client/file chiave (il keystore) nell'applicazione Java tramite l'URL di connessione, tramite gli argomenti del parametro di avvio JVM (-D=,...), oppure System.setProperty(var,val),...

Funziona davvero!!!