This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p:aws [2015/05/18 21:11] asok |
p:aws [2017/08/04 22:10] (current) asok |
||
---|---|---|---|
Line 1: | Line 1: | ||
=====AWS===== | =====AWS===== | ||
+ | |||
+ | ====Migrating to RDS==== | ||
+ | <code> | ||
+ | pg_dump -Fc -v -h [endpoint of instance] -U [master username] [database] > [database].dump | ||
+ | createdb [new database name] | ||
+ | pg_restore -v -h [endpoint of instance] -U [master username] -d [new database name] [database].dump | ||
+ | </code> | ||
====java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty on Linux, or why is the default truststore empty=== | ====java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty on Linux, or why is the default truststore empty=== | ||
+ | |||
+ | copy C:\Program Files\Java\jdk1.8.0_25\jre\lib\security\cacerts to /var/lib/ca-certificates/java-cacerts | ||
+ | from Windows to SUSE | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
This question already has an answer here: | This question already has an answer here: | ||
Error - trustAnchors parameter must be non-empty 9 answers | Error - trustAnchors parameter must be non-empty 9 answers |