Skip to content

Commit

Permalink
Merge branch '3.8' of https://github.com/JumpMind/symmetric-ds.git in…
Browse files Browse the repository at this point in the history
…to 3.8
  • Loading branch information
erilong committed Oct 12, 2017
2 parents 7b8dd10 + 3d37923 commit 14ecb26
Show file tree
Hide file tree
Showing 130 changed files with 510 additions and 10,336 deletions.
1 change: 1 addition & 0 deletions symmetric-assemble/asciidoc.gradle
Expand Up @@ -133,6 +133,7 @@ task publishDoc {

ant.scp(
todir: "$publishUser:$publishPassword@$publishServer:~/www/doc/$majorMinorVersion",
port: "$publishPort",
trust: 'true',
verbose: 'true') {
fileset(dir: "$buildDir/doc") { include(name: '**/**')
Expand Down
1 change: 1 addition & 0 deletions symmetric-assemble/gradle.properties
Expand Up @@ -7,6 +7,7 @@ deployUploadUrl=?
docFormat=html5
publishUser=?
publishPassword=?
publishPort=?
publishServer=symmetricds.org
sourceforgeUser=?
sourceforgePassword=?
12 changes: 12 additions & 0 deletions symmetric-assemble/src/asciidoc/advanced-topics.ad
Expand Up @@ -296,6 +296,18 @@ keytool -keystore cacerts -import -alias sym -file sym.cer
* Copy the cacerts file that is generated by this process to
the `security` directory of each client's SymmetricDS installation.

==== Importing Signed Certificates from PKCS 12 files

You would use the following command to import a p12 certificate into the SymmetricDS keystore:

[source, cli]
----
keytool -delete -alias sym -noprompt -keystore keystore -storetype jceks -storepass changeit

keytool -importkeystore -deststorepass changeit -destkeypass changeit -destkeystore keystore -storetype jceks -srckeystore {yourcert.p12} -srcstoretype PKCS12 -srcstorepass {pkcs12 password} -srcalias {pkcs12 alias} -destalias sym
----


==== Changing Keystore Password

The keystore and each key entry is protected with a password that defaults to "changeit". To change the password, use the following steps:
Expand Down
8 changes: 7 additions & 1 deletion symmetric-assemble/src/asciidoc/appendix/db2.ad
Expand Up @@ -47,7 +47,13 @@ CREATE SYSTEM TEMPORARY TABLESPACE tmp_tbsp
|DecFloat|No
|Binary, VarBinary|No
|===


By default DB2 will not capture the transaction id associated with the captured data. This can be turned on with the following parameter.

----
db2.capture.transaction.id=false
----

=== DB2 for IBM i
The DB2 for IBM i dialect can connect to a database on IBM iSeries (AS/400) machines. It was tested with the
http://jt400.sourceforge.net/[jt400 JDBC driver], which is already included in the SymmetricDS download.
Expand Down
58 changes: 0 additions & 58 deletions symmetric-assemble/src/assembly/assembly-android.xml

This file was deleted.

63 changes: 0 additions & 63 deletions symmetric-assemble/src/assembly/assembly-client.xml

This file was deleted.

38 changes: 0 additions & 38 deletions symmetric-assemble/src/assembly/assembly-docbook.xml

This file was deleted.

151 changes: 0 additions & 151 deletions symmetric-assemble/src/assembly/assembly-server.xml

This file was deleted.

0 comments on commit 14ecb26

Please sign in to comment.