diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-11-10 15:06:23 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-11-10 15:06:23 +0000 |
commit | 2e54df1f6e80f72f50f80cea4013bd9d87905ac8 (patch) | |
tree | 588c2dc8044e8b81599147c9eaa0303cced8ca94 /cpp | |
parent | Renamed include descriptor attribute to "file" (diff) | |
download | ice-2e54df1f6e80f72f50f80cea4013bd9d87905ac8.tar.bz2 ice-2e54df1f6e80f72f50f80cea4013bd9d87905ac8.tar.xz ice-2e54df1f6e80f72f50f80cea4013bd9d87905ac8.zip |
minor edits
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/INSTALL.LINUX | 10 | ||||
-rw-r--r-- | cpp/demo/IceGrid/simple/README | 18 |
2 files changed, 14 insertions, 14 deletions
diff --git a/cpp/INSTALL.LINUX b/cpp/INSTALL.LINUX index 3409a3a57f2..9707cad71f7 100644 --- a/cpp/INSTALL.LINUX +++ b/cpp/INSTALL.LINUX @@ -34,11 +34,11 @@ Ice has dependencies on a number of third-party libraries: Thread Library), set LD_ASSUME_KERNEL=2.4.1 before running configure. - If you are using Fedora Core 4 we recommend that you change the - optimization level that Berkeley DB uses due to optimization - issues with the GCC compiler that comes with Fedora Core 4. If you - are building with java support this is absolutely necessary. We - recommend that you use the following syntax when you run configure: + On Fedora Core 4, we recommend changing the default optimization + level when building Berkeley DB in order to avoid a compiler bug + in the FC4 version of GCC. If you are building with java support + this is absolutely necessary. We recommend that you use the + following syntax when you run configure: $ CFLAGS="-O1" ../dist/configure <your configure options> diff --git a/cpp/demo/IceGrid/simple/README b/cpp/demo/IceGrid/simple/README index bb2c043fa51..f697020ba7f 100644 --- a/cpp/demo/IceGrid/simple/README +++ b/cpp/demo/IceGrid/simple/README @@ -12,27 +12,27 @@ and start the client. Messages will be displayed in the IceGrid service window. -You can also use the following descriptors to deploy the application: +You can also use the descriptors in the following files to deploy the +application: -- application_with_template.xml: This descriptor demonstrates the use +- application_with_template.xml: These descriptors demonstrate the use of templates for the server definition. Templates make it easy to deploy multiple instances of the same server. -- application_with_replication.xml: This descriptor demonstrates the +- application_with_replication.xml: These descriptors demonstrate the use of replication to balance the load of the application over several servers. If you have already deployed the application, you can update it to try -a new descriptor, for example: +a new set of descriptors, for example: $ icegridadmin --Ice.Config=config -e "application update \ 'application_with_template.xml'" -When using the 'application_with_template.xml' or -'application_with_replication.xml' descriptors, you can easily deploy -more servers based on the `SimpleServer' template. For example, you -can use the following command to deploy a new server: +When using the descriptors from 'application_with_template.xml' or +'application_with_replication.xml', you can easily deploy more servers +based on the `SimpleServer' template. For example, you can use the +following command to deploy a new server: $ icegridadmin --Ice.Config=config -e "server template instantiate \ Simple localhost SimpleServer index=4" - |