Appboard/2.4/admin/windows installation: Difference between revisions
imported>Jason.nicholls |
imported>Jason.nicholls |
||
Line 6: | Line 6: | ||
== Prerequisites == | == Prerequisites == | ||
# Install | # Install Java (refer to the [[appboard/2.4/system_requirements|System Requirements]] for supported versions) | ||
# Ensure JAVA_HOME system environment variable is configured | # Ensure <tt>JAVA_HOME</tt> system environment variable is configured | ||
## Start | Right-click on Computer and "Properties" | Advanced System Settings | Environment Variables | ## Start | Right-click on Computer and "Properties" | Advanced System Settings | Environment Variables | ||
## Under "System Variables", if there is no "JAVA_HOME" variable set, click "New" | ## Under "System Variables", if there is no "JAVA_HOME" variable set, click "New" | ||
## Set "Variable Name" to JAVA_HOME | ## Set "Variable Name" to JAVA_HOME | ||
## Set "Variable Path" to the path to | ## Set "Variable Path" to the path to Java install path | ||
## | ## For example: <tt>JAVA_HOME = C:\Program Files\Java\jre7</tt> | ||
## Note: Make sure JAVA_HOME does not end with "\" and is not surrounded by quotes. It is also recommended that JAVA_HOME not contain spaces. | ## Note: Make sure JAVA_HOME does not end with "\" and is not surrounded by quotes. It is also recommended that JAVA_HOME not contain spaces. | ||
== Installation Tasks == | == Installation Tasks == | ||
To install AppBoard | To install AppBoard, perform the following steps on the server: | ||
# Extract the turnkey installation file to any desired location on the server | # Extract the turnkey installation file to any desired location on the server | ||
# Save the license file into [INSTALL_HOME] | # Save the license file into <tt>[INSTALL_HOME]\webapps\enportal\WEB-INF\config\license.properties</tt> | ||
# [optional] Ensure the default ports enPortal use are free or make changes to the listening ports, along with changes to other runtime options. Refer to the [[appboard/2.4/admin/runtime_options|Runtime Options]] page for further information. | |||
# [optional] AppBoard comes with a pre-configured H2 database for storing basic system information, but this functionality can be achieved using other databases if desired. To configure AppBoard to use your own database, follow the instructions on the [[Database_Configuration|Database Connection Configuration]] page. | |||
# Run the Tomcat startup executable in <tt>[INSTALL_HOME]\bin\startup.bat</tt> | |||
# [optional] Ensure the default ports | |||
# Run the Tomcat startup executable in [INSTALL_HOME] | |||
# Validate the installation | # Validate the installation | ||
## Go to the following URL in a supported web browser on any workstation that has network access to the AppBoard | ## Go to the following URL in a supported web browser on any workstation that has network access to the AppBoard server: http://localhost:8080 | ||
## When prompted, log in with the following default credentials: | ## When prompted, log in with the following default credentials (case sensitive): | ||
### User | ### User Name: '''administrator''' | ||
### Password: administrator | ### Password: '''administrator''' | ||
### Domain: System | ### Domain: '''System''' | ||
== | === 32-bit Systems === | ||
After installing AppBoard | By default the turnkey installation is configured with 64-bit executables. For 32-bit systems the following additional tasks must be performed: | ||
# Navigate to <tt>[INSTALL_HOME]\server\bin\windows-x86</tt> and copy the 32-bit Tomcat files from the <tt>\windows-x86</tt> folder up one level to replace the default 64-bit versions in the <tt>\bin</tt> folder: | |||
## tcnative-1.dll | |||
## tomcat7.exe | |||
# It may be necessary to reduce the memory usage, refer to next step and the [[appboard/2.4/admin/memory_configuration|Memory Configuration]] page. | |||
== Create an AppBoard Service == | |||
After installing AppBoard, you can configure the application for automated startup. For example, on a production server, you may want the application to start up automatically any time the server is re-started. This can be implemented using a Windows service. This section details how to configure automated startup. | |||
{{Note| | |||
* It is '''required''' that you are the administrator when opening a console to install a service. | |||
* A 64-bit JVM must be used when running as a service on 64-bit Windows.}} | |||
The following steps detail how to create a Windows service for automated startup: | The following steps detail how to create a Windows service for automated startup: | ||
# Open a ''Command Prompt'' as the administrator (right-click and ''Run as administrator''). | |||
# Navigate to <tt>[INSTALL_HOME]\server\bin</tt> | |||
# Navigate to [INSTALL_HOME]\server\bin | |||
# Enter the following command to install the Windows service: | # Enter the following command to install the Windows service: | ||
#: > service install | #: <tt>> service install</tt> | ||
# If successful, the message should be displayed: "The service 'EdgeWebServer' has been installed." | # If successful, the message should be displayed: "The service 'EdgeWebServer' has been installed." | ||
# Enter the following command later if you need to remove the Windows service: | # Enter the following command later if you need to remove the Windows service: | ||
#: > service remove | #: <tt>> service remove</tt> | ||
# If successful, the message should be displayed: "The service 'EdgeWebServer' has been removed." | # If successful, the message should be displayed: "The service 'EdgeWebServer' has been removed." | ||
Line 62: | Line 66: | ||
{{Tip|The command <tt>service.bat test</tt> will launch the service in a console window, with the same options as set for the service. This can allow you to observe startup issues without having to formally run the service.}} | {{Tip|The command <tt>service.bat test</tt> will launch the service in a console window, with the same options as set for the service. This can allow you to observe startup issues without having to formally run the service.}} | ||
== Stopping AppBoard == | == Stopping AppBoard == |
Revision as of 06:09, 14 July 2014
This section provides instructions for installing AppBoard on a Windows Server. It also details how to create a service that will automatically start AppBoard when the server is booted.
Prerequisites
- Install Java (refer to the System Requirements for supported versions)
- Ensure JAVA_HOME system environment variable is configured
- Start | Right-click on Computer and "Properties" | Advanced System Settings | Environment Variables
- Under "System Variables", if there is no "JAVA_HOME" variable set, click "New"
- Set "Variable Name" to JAVA_HOME
- Set "Variable Path" to the path to Java install path
- For example: JAVA_HOME = C:\Program Files\Java\jre7
- Note: Make sure JAVA_HOME does not end with "\" and is not surrounded by quotes. It is also recommended that JAVA_HOME not contain spaces.
Installation Tasks
To install AppBoard, perform the following steps on the server:
- Extract the turnkey installation file to any desired location on the server
- Save the license file into [INSTALL_HOME]\webapps\enportal\WEB-INF\config\license.properties
- [optional] Ensure the default ports enPortal use are free or make changes to the listening ports, along with changes to other runtime options. Refer to the Runtime Options page for further information.
- [optional] AppBoard comes with a pre-configured H2 database for storing basic system information, but this functionality can be achieved using other databases if desired. To configure AppBoard to use your own database, follow the instructions on the Database Connection Configuration page.
- Run the Tomcat startup executable in [INSTALL_HOME]\bin\startup.bat
- Validate the installation
- Go to the following URL in a supported web browser on any workstation that has network access to the AppBoard server: http://localhost:8080
- When prompted, log in with the following default credentials (case sensitive):
- User Name: administrator
- Password: administrator
- Domain: System
32-bit Systems
By default the turnkey installation is configured with 64-bit executables. For 32-bit systems the following additional tasks must be performed:
- Navigate to [INSTALL_HOME]\server\bin\windows-x86 and copy the 32-bit Tomcat files from the \windows-x86 folder up one level to replace the default 64-bit versions in the \bin folder:
- tcnative-1.dll
- tomcat7.exe
- It may be necessary to reduce the memory usage, refer to next step and the Memory Configuration page.
Create an AppBoard Service
After installing AppBoard, you can configure the application for automated startup. For example, on a production server, you may want the application to start up automatically any time the server is re-started. This can be implemented using a Windows service. This section details how to configure automated startup.
The following steps detail how to create a Windows service for automated startup:
- Open a Command Prompt as the administrator (right-click and Run as administrator).
- Navigate to [INSTALL_HOME]\server\bin
- Enter the following command to install the Windows service:
- > service install
- If successful, the message should be displayed: "The service 'EdgeWebServer' has been installed."
- Enter the following command later if you need to remove the Windows service:
- > service remove
- If successful, the message should be displayed: "The service 'EdgeWebServer' has been removed."
The service is installed with manual startup configured. The Startup type is changed by running "services.msc" from Windows, selecting properties for "Edge Web Server", then choosing the desired startup type, such as "Automatic".
Stopping AppBoard
To stop AppBoard, terminate the Tomcat process that is running on the AppBoard server.
There are several ways to terminate the Tomcat process:
- Execute the shutdown script that is provided:
- [INSTALL_HOME]/server/bin/shutdown.bat
- If running as a service, stop the AppBoard service
- In the console, enter CTRL-C