diff options
| author | Paul Buetow <paul@buetow.org> | 2009-02-08 01:27:19 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2009-02-08 01:27:19 +0000 |
| commit | 4095c4dff2ff5982c122d7dced92e8a56698484f (patch) | |
| tree | 7097649ce95fb970b18dd866e011e997cdb374e3 /README.txt | |
| parent | a4b20ff7a05a1eaf3a0ccdd692d784a5c6f77108 (diff) | |
Diffstat (limited to 'README.txt')
| -rw-r--r-- | README.txt | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -33,12 +33,12 @@ computer. 3. Start the server with - java -jar NetCalendar --server-only + java -jar NetCalendar-$VERSION.jar --server-only 4. Start the server with - java -jar NetCalendar --client-only \ - --server-address=HOSTORIPOFTHESERVER" + java -jar NetCalendar-$VERSION.jar --client-only \ + --server-address=$SERVERHOST In order to stop the server, select "Server -> Shutdown server" in the GUI of the client. @@ -56,21 +56,21 @@ use_ssl to true. discribed in http://www.ibm.com/developerworks/java/library/j-customssl/ and save them for example into ./SSL. -3. Start the server with (replacing $(PASSWORD) by your passwords) +3. Start the server with java \ -Djavax.net.ssl.keyStore=./SSL/serverKeys \ - -Djavax.net.ssl.keyStorePassword=$(PASSWORD) \ + -Djavax.net.ssl.keyStorePassword=$PASSWORD \ -Djavax.net.ssl.trustStore=./SSL/serverTrust \ - -Djavax.net.ssl.trustStorePassword=$(PASSWORD) \ - -jar NetCalendar.jar --server-only + -Djavax.net.ssl.trustStorePassword=$PASSWORD \ + -jar NetCalendar-$VERSION.jar --server-only 4. Start the server with java \ -Djavax.net.ssl.keyStore=./SSL/clientKeys \ - -Djavax.net.ssl.keyStorePassword=$(PASSWORD) \ + -Djavax.net.ssl.keyStorePassword=$PASSWORD \ -Djavax.net.ssl.trustStore=./SSL/clientTrust \ - -Djavax.net.ssl.trustStorePassword=$(PASSWORD) \ - -jar NetCalendar.jar --client-only --server-address=SERVERHOST + -Djavax.net.ssl.trustStorePassword=$PASSWORD \ + -jar NetCalendar-$VERSION.jar --client-only --server-address=$SERVERHOST IV. MORE OPTIONS @@ -80,7 +80,7 @@ without any explicit options given. If you want to see more available parameters, then run the command - java -jar NetCalendar --help + java -jar NetCalendar-$VERSION.jar --help It is possible to configure the NetCalendar by editing the configuration file which is "config.txt". However, the preferred way is using the client GUI via |
