You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Specify a host name and port number of License Server to establish connection with AppServer of the current WebSpellChecker Server installation. AppServer will be sending License Requests to the bounded License Server.

1. Use the instructions below to stop AppServer.


Stop AppServer on a Windows server

There are three possible options how you can stop AppServer on Windows-based environments.

Option A: Go to Windows Start –> All Programs –> WebSpellChecker –> AppServer –> Stop WebSpellChecker Application Server

Option B: Open Command Prompt –> Switch to [WebSpellChecker_Installation_Path]/AppServer –> Run AppServerX -stop

Option C:

  • Go to Windows Start –> Control Panel –> Administrative Tools –> Services
  • Find WebSpellChecker Application Server Service on the list of all services
  • Click Stop


Stop AppServer on a Linux server

Run the stop.sh script to stop AppServer using the following command below:

sudo sh <WebSpellChecker_Installation_Path>/WSC/AppServer/stop.sh

Or your can also run the stop.sh script from the AppServer directory:

/<WebSpellChecker_Installation_Dir>/WSC/AppServer/# sh stop.sh

2. Open <WebSpellChecker_Installation_Path>/WSC/AppServer/AppServerX.xml

3. Find the <EnableFloatingLicensing>...</EnableFloatingLicensing> parameter tag in the AppServerX.xml file and specify its value as true. This parameter specifies if the floating license mechanism is enabled for a particular WebSpellChecker AppServer.

<!-- EnableFloatingLicensing parameter specifies if the floating license mechanism is enabled for a particular WebSpellChecker AppServer. -->
<EnableFloatingLicensing>true</EnableFloatingLicensing>

4. Find the <FloatingLicenseServer>...</FloatingLicenseServer> parameter tag in the AppServerX.xml file and specify a host name and port (for example, 127.0.0.1:2881) of the License Server which will be responsible for licensing:

<!-- FloatingLicenseServer parameter defines a license server where AppServer will call when its license is expired asking for a new license. -->
<FloatingLicenseServer>127.0.0.1:2881</FloatingLicenseServer>

You can optionally enable HTTPs connection between the License Server and the AppServer to make the connection a secure one. For details, refer to Enabling SSL Connection with AppServer guide.

5. Use the instructions below to start AppServer for the changes to take effect.


Start AppServer on Windows

There are three possible options how you can start AppServer on Windows-based environments.

Option A: Go to Windows Start –> All Programs –> WebSpellChecker –> AppServer –> Start WebSpellChecker Application Server

Option B: Open Command Prompt –> Switch to [WebSpellChecker_Installation_Path]/AppServer –> Run AppServerX -start

Option C:

  • Go to Windows Start –> Control Panel –> Administrative Tools –> Services
  • Find WebSpellChecker Application Server Service on the list of all services
  • Click Start


Start AppServer on Linux

Run the start.sh script to start AppServer using the following command below:

sudo sh <WebSpellChecker_Installation_Path>/WSC/AppServer/start.sh

  • No labels