Follow the instructions below to install the binary distribution of any required applications and the WSO2 product on Linux or Solaris, from the command line.
Info | ||
---|---|---|
| ||
Before you proceed to install the product, ensure that the Installation Prerequisites are satisfied . |
Establish a .
Install the required applications
- Establish an SSH connection to the Linux
...
- machine or log in on the text Linux console.
...
Step 1. Obtain Installation Pack
Download the latest version of the program (for downloading instructions, refer to Obtaining the Product section).
Step 2. Extract the Archive
After the download is complete, extract installation files to your home directory. For example,
Code Block |
---|
unzip wso2mb-2.1.0.zip |
Step 3. Set up JAVA_HOME
...
- Be sure your system meets the Installation Prerequisites. Java Development Kit (JDK) is essential to run the product.
Installing the product
- If you have not done so already, download the latest version of the product as described in Downloading the Product.
Extract the archive file to a dedicated directory for the product, which will hereafter be referred to as
<PRODUCT_HOME>
.
Setting JAVA_HOME
You must set your JAVA_HOME
environment variable to point to the directory where the Java Development Kit (JDK) is installed on the computer.
Info | title | Reference
---|
Environment variables are global system variables accessible by all the processes running under the operating system. |
...
- In your home directory
...
- , open the BASHRC file in your favorite Linux text editor
...
- , such as vi, emacs, pico
...
- or mcedit.
...
Add the following two
...
lines at the bottom of the file
...
, replacing
/usr/java/jdk1.6.0_25
with the actual directory where the JDK is installed.Code Block export JAVA_HOME=/usr/java/jdk1.6.0_25 export PATH=${JAVA_HOME}/bin:${PATH}
...
...
The file should now look like this:
Save the file.
Info
...
title | Tip |
---|
If you do not know how to work with text editors in a Linux SSH session, run the following command:
Code Block cat >> .bashrc
Paste the string from the clipboard and press "Ctrl+D."
...
To verify that the
JAVA_HOME
variable is set correctly, execute the following command:Code Block echo $JAVA_HOME
...
The system returns the JDK installation path.
Step 4. Running the Product
1. Establish a SSH connection to the Linux/Solaris server or log in to the text Linux console.
2. Go to <PRODUCT_HOME>/bin
, where "<PRODUCT_HOME>" is the actual folder where the product's distribution files are stored.
3. Execute the following command to start the server:
Code Block |
---|
sh ./wso2server.sh |
4. If the server is started successfully, the operation log will show a message similar to "WSO2 Carbon started in 'n' seconds."
5. Proceed to section Introducing the Management Console for instructions on how to access the Management Console.
Step 5. Stopping the Server
...
Setting system properties
If you need to set additional system properties when the server starts, you can take the following approaches:
- Set the properties from a script
Setting your system properties in the startup script is ideal, because it ensures that you set the properties every time you start the server. To avoid having to modify the script each time you upgrade, the best approach is to create your own startup script that wraps the WSO2 startup script and adds the properties you want to set, rather than editing the WSO2 startup script directly. - Set the properties from an external registry
If you want to access properties from an external registry, you could create Java code that reads the properties at runtime from that registry. Be sure to store sensitive data such as, username and password to connect to the registry in a properties file, instead of in the Java code and secure the properties file with the secure vault.
Info | ||
---|---|---|
| ||
When using SUSE Linux, it ignores |
You are now ready to run the product.