Moab HPC Suite Basic Edition 7.1.4

Size: px
Start display at page:

Download "Moab HPC Suite Basic Edition 7.1.4"

Transcription

1 Moab HPC Suite Basic Edition Installation Guide March 2013

2 2013 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft copy form is strictly prohibited without prior written consent from Adaptive Computing Enterprises, Inc. Adaptive Computing, Cluster Resources, Moab, Moab Workload Manager, Moab Viewpoint, Moab Cluster Manager, Moab Cluster Suite, Moab Grid Scheduler, Moab Grid Suite, Moab Access Portal, and other Adaptive Computing products are either registered trademarks or trademarks of Adaptive Computing Enterprises, Inc. The Adaptive Computing logo and the Cluster Resources logo are trademarks of Adaptive Computing Enterprises, Inc. All other company and product names may be trademarks of their respective companies. Adaptive Computing Enterprises, Inc S. East Bay Blvd., Suite 300 Provo, UT (801) Scan to open online help ii

3 Contents Welcome v Installation overview 1 Installing TORQUE 3 Installing Moab Workload Manager 5 Installing Moab Web Services 11 Installing Moab Viewpoint 17 Installing Moab Cluster Manager 21 Component documentation 23 iii

4

5 Welcome Welcome to the Moab HPC Suite Basic Edition Installation Guide, which will help you install your Moab HPC Suite. This guide includes detailed instructions for installing each component of the suite so that you can quickly get up and running. This guide is intended for system administrators who are responsible for installing the Moab HPC Suite Basic Edition. The Moab HPC Suite Basic Edition version contains the following components: Moab Workload Manager TORQUE Moab Web Services Moab Viewpoint Moab Cluster Manager To get started with installing your Moab HPC Suite, please see Installation overview on page 1. v

6

7 Installation overview The installation process of the Moab HPC Suite includes installing the separate components in the suite. This guide contains detailed instructions for installing each component. Many individual components have dependencies on other components. (These dependencies are listed in the "Requirements" section of each component's installation instructions.) However, if you do not require a certain component (Moab Viewpoint, for example), you do not have to install it. The install instructions for each component include information about system requirements and dependencies. Some include prerequisite instructions that you will need to complete before you begin the install. Please read this information carefully, and make sure you have installed all the dependencies and packages that are necessary in order to avoid errors during the Moab HPC Suite install process. To install the Moab HPC Suite, install the packages in the following order: 1. Install TORQUE (see Installing TORQUE on page 3). 2. Install Moab Workload Manager (see Installing Moab Workload Manager on page 5). 3. Install Moab Web Services (see Installing Moab Web Services on page 11). 4. Install Moab Viewpoint (see Installing Moab Viewpoint on page 17). 5. Install Moab Cluster Manager (see Installing Moab Cluster Manager on page 21). Related topics Welcome on page v 1

8

9 Installing TORQUE These instructions describe how to install and start TORQUE. Requirements The following software is required to run TORQUE 4.1.4: libxml2-devel package (package name may vary) openssl-devel package (package name may vary) ANSI C compiler. The native C compiler is recommended if it is ANSI; otherwise use gcc. A fully POSIX make. If you are unable to "make" PBS with your make, we suggest using gmake from GNU. Tcl/Tk version 8 or higher if you plan to build the GUI portion of TORQUE or use a Tcl based scheduler. If you use cpusets, libhwloc 1.1 or later is required (for TORQUE and later) Dependencies and packages installation Use the following commands to install the required TORQUE dependencies and packages (listed in the Requirements section above). RHEL [root]# yum update [root]# yum install make libxml2-devel openssl-devel gcc gcc-c++ CentOS [root]# yum update [root]# yum install make libxml2-devel openssl-devel gcc gcc-c++ Prerequisites TORQUE requires certain ports to be open for essential communication: For client communication to pbs_server, all privileged ports must be open (ports under 1024). For pbs_server communication to pbs_mom, the default port is For pbs_mom to pbs_server, the default port is For more information on how to configure the ports that TORQUE uses for communication, see Configuring Ports. 3

10 Installing TORQUE To install TORQUE 1. Run each of the following commands in order. [root]# tar xzvf torque tar.gz [root]# cd torque [root]#./configure [root]# make [root]# make install For information on what options are available to customize the./configure command, see Customizing the install. 2. Configure the trqauthd daemon to start automatically at system boot. [root]# cp contrib/init.d/trqauthd /etc/init.d/ [root]# chkconfig --add trqauthd [root]# echo /usr/local/lib > /etc/ld.so.conf.d/torque.conf [root]# ldconfig [root]# service trqauthd start 3. The make packages command can be used to create self-extracting packages that can be copied and executed on your nodes. For information on creating packages and deploying them, see Compute nodes. You will also want to scp the init.d scripts to the compute nodes and install them there. 4. Populate the /var/spool/torque/server_name file with the hostname of the pbs_server. [root]# echo <pbs_server's_hostname> > /var/spool/torque/server_name 5. Initialize serverdb by executing the torque.setup script. [root]#./torque.setup root 6. Add nodes to the /var/spool/torque/server_priv/nodes file. As an example, a single node with two processors could be specified with mgtnode np=2. For information on syntax and options for specifying compute nodes, see Specifying compute nodes. 7. Configure pbs_server and pbs_mom to start automatically at system boot, and then start their daemons. [root]# cp contrib/init.d/pbs_server contrib/init.d/pbs_mom /etc/init.d [root]# chkconfig --add pbs_server [root]# chkconfig --add pbs_mom [root]# chkconfig pbs_mom on [root]# chkconfig pbs_server on [root]# service pbs_server restart [root]# service pbs_mom start Related topics Installation overview on page 1 Installing Moab Workload Manager on page 5 Component documentation on page 23 4

11 Installing Moab Workload Manager These instructions describe how to install and start Moab Workload Manager (MWM). Requirements Hardware requirements: Quad-core processor At least 12 GB of RAM 100 GB disk space Supported operating systems: MWM has been tested on the following variants of Linux: CentOS (5.7, 6.0, and 6.2) Red Hat (5 and 6.1) Scientific Linux (6.1) SuSE (11 SP1 and 11 SP2) MWM has historically worked, but has not been tested, on the following operating systems: Debian AIX Host operating system software dependencies: ExtUtils::MakeMaker Perl module XML::LibXML Perl module (perl-xml-libxml) libcurl perl-libwww-perl (may be named differently on non-rhel distributions) Supported architectures: Intel IA-64 Intel/AMD x86-64 Supported resource managers: TORQUE SLURM 5

12 Installing Moab Workload Manager Dependencies and packages installation Use the following commands to install the required Moab Workload Manager dependencies and packages (listed in the Requirements section above). RHEL [root]# yum update [root]# yum install make perl-extutils-makemaker perl-xml-libxml libcurl perllibwww-perl CentOS [root]# yum update [root]# yum install make perl-extutils-makemaker perl-xml-libxml libcurl perllibwww-perl To install Moab Workload Manager If you have not met the hardware and host operating system software requirements listed above, you will likely encounter errors when trying to install Moab Workload Manager. 1. Run each of the following commands in order: [root]# tar xzvf moab xxxx.tar.gz (where xxxx can be one of: generic, genericodbc, torque, torque-odbc) [root]# cd moab [root]#./configure <option> [root]# make perldeps [root]# make install In some cases, you might want to customize the location of the MWM home directory, the server daemon, and the client commands. You can make these configurations by using the./configure options. (For a complete list of./configure options, use./configure --help.) We strongly recommend that you configure Moab with the --with-init and --with-profile options. Here are some examples of commonly used./configure options: Option Description Example --withhomedir Specifies the location of the Moab configuration directory and the MOABHOMEDIR environment variable. The default location is /opt/moab. MOABHOMEDIR is automatically set on some distributions during installation, when the --with-profile option is enabled. [root]#./configure -- withhomedir=/var/moab 6

13 Installing Moab Workload Manager Option Description Example Enables the installation of a distribution-specific /etc/init.d/moab service startup script. This option is required if you want to install this script onto a new system. If you do not set this option, you must manually set up the MWM daemon service. The startup script is located at OS/EL/etc/init.d/moab. [root]#./configure -- with-init --prefix Specifies the location of the binaries and libraries of the MWM install. The default location is /opt/moab. [root]#./configure -- prefix=/usr/local --withinit --withprofile Enables the installation of distribution-specific /etc/profile.d/moab. [c]sh setup script for bash and cshell. The MOABHOMEDIR, PERL5LIB, PATH and MANPATH environment variables are setup to specify where the new moab configuration, scripts, binaries and man pages reside. If you do not set this option, these scripts are not installed, and you must manually perform this set up. The environment setup scripts are located at OS/EL/etc/profile.d/moab.[c]sh. [root]#./configure -- with-profile 2. (ONLY if installing on non-rhel distributions) Copy the appropriate init.d file, set the permissions on it, and configure MWM to start automatically at system boot. * If Debian distribution, do the following * [root]# cp contrib/init.d/moab_debian_init /etc/init.d/moab * If SLES distribution, do the following * [root]# cp contrib/init.d/moab_sles_init /etc/init.d/moab [root]# chmod 755 /etc/init.d/moab [root]# chkconfig --add moab * If chkconfig doesn't work, try the following * [root]# update-rc.d moab defaults 3. Modify the MWM configuration file. [root]# vim /opt/moab/etc/moab.cfg Do the following: a. Verify that SUBMITCMD is set up for your TORQUE resource manager (change RMCFG[hostname] to RMCFG[torque]), and that it points to a valid qsub executable. For example: RMCFG[torque] SUBMITCMD=/usr/local/bin/qsub 7

14 Installing Moab Workload Manager b. ONLY if you are using Moab Viewpoint, add "tomcat" to the list of administrator USERS. For example: ADMINCFG[1] USERS=root,tomcat Also, make sure that you set ENABLEPROXY to "true": ADMINCFG[1] ENABLEPROXY=TRUE 4. If you ran the./configure --with-profile option, source the following file to add the MWM home directory to your current shell $PATH environment. [root]#. /etc/profile.d/moab.sh 5. Copy your license file into the same directory as moab.cfg (/opt/moab/etc/ by default). For example: [root]# cp moab.lic $MOABHOMEDIR/etc/moab.lic To verify the current status of your license, use moab --about. MWM checks the status of the license every day just after midnight. At 60 and 45 days before, and daily from 30 days before license expiration to and including the license expiration date, MWM sends an e- mail to all level 1 administrators informing them of the pending MWM license expiration. A log record is also made of the upcoming expiration event. For the notifications to occur correctly, you must enable administrator notification (see "Notifying Administrators of Failures" in the Moab Workload Manager Administrator Guide) and moab.cfg must contain addresses for level 1 administrators. For example: ADMINCFG[1] USERS=u1,u2,u3[,...] USERCFG[u1] u1@company.com USERCFG[u2] u2@company.com USERCFG[u3] u3@company.com MAILPROGRAM DEFAULT MWM has an internal license that enables some functionality for a limited time for evaluation purposes. If you want to enable adaptive energy management, dynamic multi-os provisioning, grid management, and other features, or if you want to evaluate MWM for a longer period, contact evaluation support. Use mdiag -S -v to see which features your license supports. 6. Start MWM. [root]# service moab start 7. Submit a sleep job as a non-root user and verify the job is running. [root]# su - user [user]$ echo sleep 150 msub [user]$ showq Related topics Installation overview on page 1 Installing TORQUE on page 3 8

15 Installing Moab Workload Manager Component documentation on page 23 9

16

17 Installing Moab Web Services These instructions describe how to deploy Moab Web Services (MWS) to a Tomcat server. Requirements Hardware requirements: Dual core processor At least 4 GB of RAM Software requirements: Moab Workload Manager Oracle /Sun Java 6 Runtime Environment Apache Tomcat 6 MongoDB or later Dependencies and packages installation Use the following commands to install the required Moab Web Services dependencies and packages (listed in the Requirements section above). RHEL [root]# yum update [root]# yum install tomcat6 CentOS The correct version of Tomcat is not automatically installed on CentOS 5. The example below ensures that the right build of Tomcat 6 is installed. [root]# rpm -Uvh ' [root]# cd /etc/yum.repos.d [root]# wget ' [root]# yum update [root]# yum install tomcat6 tomcat6-webapps tomcat6-admin-webapps To install Moab Web Services You must deploy Moab Web Services on the same server as Moab Workload Manager. 11

18 Installing Moab Web Services 1. Make sure that you have first installed and configured Moab Workload Manager as desired (for details, see Installing Moab Workload Manager on page 5). 2. Generate a secret key to be used for communication between MWM and MWS. Here is a suggested script that you can use to generate the key: dd if=/dev/urandom count=18 bs=1 2>/dev/null base64 > /opt/moab/etc/.moab.key chown root /opt/moab/etc/.moab.key chmod 400 /opt/moab/etc/.moab.key ln -f /opt/moab/etc/.moab.key /opt/moab/.moab.key 3. Start MWM. service moab start 4. Install MongoDB version or later on the MWM server using packages (recommended) or manual installation. Installation method Instructions Packages (recommended) Install the packages (available from the Mongo-provided repositories for CentOS and Fedora or Ubuntu and Debian). After installing the packages, start MongoDB and arrange for it to start automatically during server startup. For CentOS and Fedora, here are some examples: /sbin/chkconfig mongod on /etc/init.d/mongod start For Ubuntu and Debian examples, see these instructions. Manual (not recommended) Follow these instructions. Be sure to start the Mongo server (mongod) after installation and arrange for it to start automatically during server startup (for example, by writing and registering an /etc/init.d script). 5. Install and enable the 64-bit version of Oracle Java SE 6 JRE. For example: sh jre-6u33-linux-x64-rpm.bin rm -f /usr/bin/java ln -s /etc/alternatives/java /usr/bin/java /usr/sbin/alternatives --install /usr/bin/java java /usr/java/latest/bin/java 1 /usr/sbin/alternatives --set java /usr/java/latest/bin/java You can verify the Java installation by running the following command: java -version The output should look similar to this: 12

19 Installing Moab Web Services java version "1.6.0_33" Java(TM) SE Runtime Environment (build 1.6.0_33-b03) Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03, mixed mode) 6. Create the MWS home directory (for more information, see the "Configuration" section of the Moab Web Services Reference Guide), and the etc, hooks, plugins, and log subdirectories. You will need to give the Tomcat user "read" access to all directories and "write" access to the plugins and log directories. The default location for the MWS home directory is /opt/mws. These instructions assume the default location. Here is an sample script for this setup: mkdir -p /opt/mws/etc /opt/mws/hooks /opt/mws/plugins /opt/mws/log chown -R tomcat /opt/mws # Depending on your OS, the Tomcat username might be tomcat6. chmod -R 555 /opt/mws chmod u+w /opt/mws/plugins /opt/mws/log 7. Extract the contents of the MWS download tarball into a temporary directory. For example: mkdir /tmp/mws-install cd /tmp/mws-install tar xvzf $HOME/Downloads/mws tar.gz cd /tmp/mws-install/mws Set up the MWS configuration file by doing the following: a. Copy mws-config-hpc.groovy to the MWS home etc/ sub-directory, and rename it to mwsconfig.groovy. cp mws-config-hpc.groovy /opt/mws/etc/mws-config.groovy b. Give the Tomcat user "read" access to the /opt/mws/etc/mws-config.groovy file. c. In the /opt/mws/etc/mws-config.groovy file, make the following changes: Modify the moab.secretkey setting to match the MWM secure key you generated earlier (contained in /opt/moab/etc/.moab.key). Change the default MWS password (auth.defaultuser.password) to a password of your choosing. (Optional) Change the default MWS username (auth.defaultuser.username) to any value you like. [root]# vi /opt/mws/etc/mws-config.groovy... moab.secretkey = "<ENTER-KEY-HERE>" moab.server = "localhost" moab.port = // Change these to be whatever you like. auth.defaultuser.username = "admin" auth.defaultuser.password = "adminpw" 13

20 Installing Moab Web Services If you do not change auth.defaultuser.password, your MWS will not be secure (because anyone reading these instructions would be able to log into your MWS). Here are some tips for choosing a good password. 9. Set the following parameters in your Tomcat CATALINA_OPTS: CATALINA_OPTS="-Xms256m -Xmx3g -XX:MaxPermSize=384m -DMWS_HOME=/opt/mws" Where you choose to store CATALINA_OPTS depends on various factors, including operating system and sysadmin preference. Here are some suggestions: CentOS 5 and 6: /etc/tomcat6/tomcat6.conf Red Hat Enterprise Linux 5 and 6: /etc/tomcat6/tomcat6.conf SUSE Linux Enterprise Server 11: /etc/tomcat6/tomcat6.conf Ubuntu 10.04: /etc/default/tomcat6 10. Start Tomcat, and deploy mws.war. For example: chkconfig tomcat6 on service tomcat6 start cp /tmp/mws-install/mws-7.1.0/mws.war /var/lib/tomcat6/webapps 11. Navigate to in a web browser to verify that MWS is running (you will see some sample queries and a few other actions). 12. Log in to MWS to verify that your credentials are working. (Your login credentials are the auth.defaultuser.username and auth.defaultuser.password values you set in the /opt/mws/etc/mws-config.groovy file.) 14

21 Installing Moab Web Services If you encounter problems, or if the application does not seem to be running, see the steps in the "Troubleshooting Installation "section of the Moab Web Services Reference Guide. Related topics Installation overview on page 1 Installing Moab Workload Manager on page 5 Installing Moab Viewpoint on page 17 Component documentation on page 23 15

22

23 Installing Moab Viewpoint These instructions describe how to install and start Moab Viewpoint. Requirements Hardware requirements: 16 GB disk space Software requirements: Moab Workload Manager version Moab Web Services version Apache Tomcat 6 MySQL version 5.1 or later JDBC Driver for MySQL (Connector/J) (available from MySQL or another trusted source) Supported web browsers: Mozilla Firefox 3.5 or later Internet Explorer 7.0 or later Dependencies and packages installation Use the following commands to install the required Moab Viewpoint dependencies and packages (listed in the Requirements section above). RHEL [root]# yum update [root]# yum install tomcat6 mysql mysql-server CentOS The correct version of Tomcat is not automatically installed on CentOS 5. The example below ensures that the right build of Tomcat 6 is installed. [root]# rpm -Uvh ' [root]# cd /etc/yum.repos.d [root]# wget ' [root]# yum update [root]# yum install tomcat6 tomcat6-webapps tomcat6-admin-webapps mysql mysql-server 17

24 Installing Moab Viewpoint To install Moab Viewpoint 1. Create the Viewpoint database. MySQL 5.1 is the supported database for Moab HPC Suite. You must create the database and give the user full access to that database. For information on creating databases and granting access with other database vendors, consult the documentation for that vendor. While MySQL is the only supported database for Viewpoint, the use of other databases with Moab HPC Suite is possible. Please contact Adaptive Computing Support for more information. For information on creating databases and granting access with other database vendors, consult the documentation for that vendor. Do the following: a. Run these commands. [root]# chkconfig mysqld on [root]# service mysqld start [root]# /usr/bin/mysql_secure_installation b. When you are prompted for the current root password, press Enter. When you are asked to set the root password, use and select y for all options. c. Create the Viewpoint database and grant the following permissions (remember to run commands in context): [root]# mysql -u root -p Enter password: mysql> CREATE DATABASE viewpoint; Query OK, 1 row affected (0.08 sec) mysql> GRANT ALL ON viewpoint.* TO viewpoint@localhost IDENTIFIED BY 'p@ssw0rd'; Query OK, 0 rows affected (0.31 sec) mysql> GRANT ALL ON viewpoint.* TO viewpoint@ IDENTIFIED BY 'p@ssw0rd'; Query OK, 0 rows affected (0.31 sec) FLUSH PRIVILEGES; Query OK, 0 rows affected (0.31 sec) 2. Untar the Viewpoint tarball, and create the initial tables required for an HPC Viewpoint. [root]# tar xzvf viewpoint tar.gz [root]# mysql -u root -p viewpoint < viewpoint-7.1.4/sql/mysql/setup_hpc.sql 3. Verify that the script ran correctly by running a third party client such as SQuirrel SQL or by using your database vendor's own client tool (for instance, run mysql -u <username> -p <password>). As a best practice, create a schema if you are running PostgresSQL. It is recommended that you call the schema viewpoint. If you choose not to create one, set public as the schema name when you configure the setup.properties file. 4. Install the JDBC Driver for MySQL (available from MySQL or another trusted source). [root]# tar xvzf mysql-connector-java-x.x.x.tar.gz [root]# cd mysql-connector-java.x.x.x [root]# cp mysql-connector-java.x.x.x-bin.jar /usr/share/tomcat6/lib 5. Create the Viewpoint home directory. 18

25 Installing Moab Viewpoint [root]# mkdir /opt/viewpoint 6. Navigate to the Viewpoint extraction directory, and deploy the war files (reporting.war is optional). [root]# cd viewpoint-7.1.0/ [root]# cp dist/*.war /var/lib/tomcat6/webapps/ It is recommended that you do not run more than one instance of Viewpoint within Tomcat. 7. Copy the setup.properties.[db_type] file to the Viewpoint home directory and change the name to setup.properties (removing the.[db_type] extension). [root]# cp templates/setup.properties.mysql /opt/viewpoint/setup.properties 8. Open setup.properties for modification. [root]# vi /opt/viewpoint/setup.properties Change the username and password to what you set when you configured the database. dbuser=<viewpoint> 9. Set the Tomcat user as the owner of the Viewpoint home directory. Restart Tomcat. [root]# chown -R tomcat:tomcat /opt/viewpoint [root]# service tomcat6 restart If you are running Fedora, you must start Tomcat by navigating to $CATALINA_home/bin/ and run startup.sh as root: [root]# $CATALINA_HOME/bin/startup.sh 10. Verify that Viewpoint was correctly installed by directing your browser to the Viewpoint URL (for example: or ip address]:8080/moab), and logging in with the default username and password (admin/admin). 11. Update the Viewpoint connection to MWS. a. From the Administration > Configuration menu, click MWS connection. b. Update the Username and Password fields to match the username and password you configured in the /opt/mws/etc/mws-config.groovy file and click Update. c. Restart Tomcat. [root]# service tomcat6 restart Related topics Installation overview on page 1 Installing Moab Workload Manager on page 5 Installing Moab Web Services on page 11 Component documentation on page 23 19

26

27 Installing Moab Cluster Manager These instructions describe how to install and start Moab Cluster Manager (MCM). Requirements Prerequisites Moab Workload Manager You will need to install Oracle /Sun Java SE 6 or higher, which includes a Java Runtime Environment (JRE) version 1.6 or higher. You must obtain a JRE from Oracle. MCM will not run correctly on JREs from other vendors, such as GCJ or OpenJDK. The Linux and Windows builds of MCM come bundled with the correct JRE. However, if you install the generic Unix version of MCM, you will need to download a JRE separately. You can check which version of Java you have installed by running the following command: $ java -version The output should look similar to this: java version "1.6.0_33" Java(TM) SE Runtime Environment (build 1.6.0_33-b03) Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03, mixed mode) To install Moab Cluster Manager on a Linux/Unix system 1. Download the latest build of the tar file from the Adaptive Computing website: The mcm-7.1.x-[build number].linux.tar.gz builds come with a bundled JRE. The mcm-7.1.x-[build number].tar.gz builds do not include a JRE. 2. Move the tar file to your home directory, or another directory you have access to (for example, /home/username/), and unpack the tar file (tar -xzvf xxxx.tar.gz). 3. Change directories to the newly unpacked MCM directory. 4. Start MCM by running the following script: $ mv mcm-7.1.x-xxxx.tar.gz /home/bob $ cd /home/bob $ tar zxvf mcm-7.1.x-xxxx.tar.gz $ cd mcm-7.1.x-xxxx/ $./mcm & 5. The MCM script checks for the existence of a compatible JRE and then runs MCM. 21

28 Installing Moab Cluster Manager After you accept the license, you will see the Connection Wizard. For information about configuring MCM to connect to Moab Workload Manager, see the "Connection Wizard" section in the Moab Cluster Manager User Guide. To install Moab Cluster Manager on a Windows system 1. Download the latest build executable from the Adaptive Computing website. 2. Double-click the installation file. 3. Follow the MCM installer instructions to install MCM. Once it has completed, the installer creates Start Menu and Desktop icons that you can use to start MCM. The default destination folder for MCM is either C:\Program Files\Moab Cluster Manager or C:\Program Files\(x86)\Moab Cluster Manager (depending on what version of Windows you are running). 4. Double-click the Moab Cluster Manager icon on the Desktop to run MCM. After you accept the license, you will see the Connection Wizard. For information about configuring MCM to connect to Moab Workload Manager, see the "Connection Wizard" section in the Moab Cluster Manager User Guide. MCM will not have permissions to create log files if you are installing on a Windows 7 system. (This is because MCM does not have permission to write to sub-folders of C:\Program Files or C:\Program Files (x86) unless it is run as an administrator.) If you are running Windows 7 and need to see log files, you can change the log file path to a location where the user running MCM has write permissions. You can make this configuration in the C:\Program Files (x86)\moab Cluster Manager\conf\long4j.properties file by setting the log4j.appender.roll.file property. For example, if you want logs to be written to C:\Users\Bob\AppData\Local (where Bob is the user running MCM), modify the log4j.appender.roll.file property as follows: log4j.appender.roll.file=${user.home}/appdata/local/mcm.log Related topics Installation overview on page 1 Installing Moab Workload Manager on page 5 Component documentation on page 23 22

29 Component documentation The individual components of the suite have more options and allow for more configuration than can be contained in this guide. Refer to the individual component guides for more information. TORQUE TORQUE Administrator Guide: HTML PDF Moab Workload Manager Moab Workload Manager Administrator Guide: HTML PDF Moab Web Services Moab Web Services Reference Guide: HTML PDF Moab Viewpoint Moab Viewpoint for Moab HPC Suite Setup Guide: HTML PDF Moab Viewpoint for Moab HPC Suite User Guide: HTML PDF Moab Cluster Manager Related topics Moab Cluster Manager User Guide: HTML PDF Installation overview on page 1 Welcome on page v 23

30

Moab HPC Suite. Installation and Configuration Guide for SUSE 12- Based Systems. January 2017

Moab HPC Suite. Installation and Configuration Guide for SUSE 12- Based Systems. January 2017 Moab HPC Suite Installation and Configuration Guide 9.0.3 for SUSE 12- Based Systems January 2017 2017 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial

More information

Moab Web Services Reference Guide

Moab Web Services Reference Guide Moab Web Services 7.1.1 Reference Guide Table of Contents 1 Introduction 1.1 Moab Web Services Overview 1.2 Installation Guide 1.3 Configuration 1.4 Security 1.5 Version and Build Information 2 Access

More information

Moab Web Services Reference Guide

Moab Web Services Reference Guide Moab Web Services 7.1.3 Reference Guide Table of Contents 1 Introduction 1.1 Moab Web Services Overview 1.2 Installation Guide 1.3 Troubleshooting 1.4 Configuration 1.5 Security 1.6 Version and Build Information

More information

Moab Passthrough. Administrator Guide February 2018

Moab Passthrough. Administrator Guide February 2018 Moab Passthrough Administrator Guide 9.1.2 February 2018 2018 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft copy

More information

Moab Web Services Reference Guide

Moab Web Services Reference Guide Moab Web Services 7.0.4 Reference Guide Table of Contents 1 Introduction 1.1 Moab Web Services Overview 1.2 Installation Guide 1.3 Troubleshooting 1.4 Configuration 1.5 Security 1.6 Version and Build Information

More information

Location Intelligence Geographic Information Systems. MapMarker Plus. Version 30. Installation Guide

Location Intelligence Geographic Information Systems. MapMarker Plus. Version 30. Installation Guide Location Intelligence Geographic Information Systems MapMarker Plus Version 30 Installation Guide Information in this document is subject to change without notice and does not represent a commitment on

More information

Many packages require the additional devel packages. See below package. Install EPEL repo by down load the latest RPM for CentOS 6.

Many packages require the additional devel packages. See below package. Install EPEL repo by down load the latest RPM for CentOS 6. Guacamole source code compile and installation Tested on CentOS v6.5 and Guacamole v0.9.0 Guacamole Server Obtain Source Codes mkdir -p /usr/local/src/guacamole cd /usr/local/src/guacamole wget http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.0.tar.gz

More information

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software,

More information

Red Hat Development Suite 2.1

Red Hat Development Suite 2.1 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Last Updated: 2017-12-06 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Petra

More information

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies.

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies. Zend Server Cluster Manager 5.5 Beta Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.5 Beta. The information in this

More information

Zend Server Cluster Manager 5.x Installation Guide

Zend Server Cluster Manager 5.x Installation Guide Zend Server Cluster Manager 5.x Installation Guide By Zend Technologies www.zend.com This is the Installation Guide for Server Cluster Manager, Version 5.0. The information in this document is subject

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

More information

Installing Connector on Linux

Installing Connector on Linux CHAPTER 3 Revised: July 15, 2010 Overview This chapter provides a step-by-step guide to installing the Linux Connector on x86 and x86-64 servers running either Red Hat Enterprise Linux version 5 or Cent

More information

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.10, 2018.06, AND 5.1.0 DU-07754-001 _v7.0 through 7.2 March 2019 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server...

More information

Cloudera Manager Quick Start Guide

Cloudera Manager Quick Start Guide Cloudera Manager Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.06 AND 5.1.0 DU-07754-001 _v6.0 through 6.2 July 2018 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server... 1 1.1. Overview

More information

Linux Quick Installation Guide

Linux Quick Installation Guide 2009 Aradial This document contains proprietary and confidential information of Aradial and shall not be reproduced or transferred to other documents, disclosed to others, or used for any purpose other

More information

Zend Server Cluster Manager 5.6 Installation Guide

Zend Server Cluster Manager 5.6 Installation Guide Zend Server Cluster Manager 5.6 Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.6. The information in this document

More information

Aware IM Version 8.1 Installation Guide

Aware IM Version 8.1 Installation Guide Aware IM Version 8.1 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS 1 INSTALLATION UNDER WINDOWS OPERATING SYSTEM... 3 1.1 HARDWARE AND SOFTWARE REQUIREMENTS... 3 1.2 USING THE INSTALLATION PROGRAM...

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

Moab Viewpoint. Reference Guide August 2016

Moab Viewpoint. Reference Guide August 2016 Moab Viewpoint Reference Guide 9.0.2 August 2016 2016 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft copy form is

More information

Zend Server Community Edition 5.1. Installation Guide. By Zend Technologies.

Zend Server Community Edition 5.1. Installation Guide. By Zend Technologies. Zend Server Community Edition 5.1 Installation Guide By Zend Technologies www.zend.com Abstract This is the Install Guide for Zend Server Community Edition Version 5.1. The information in this document

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

CounterACT Macintosh/Linux Property Scanner Plugin

CounterACT Macintosh/Linux Property Scanner Plugin CounterACT Macintosh/Linux Property Scanner Plugin Version 7.0.1 and Above Table of Contents About the Macintosh/Linux Property Scanner Plugin... 4 Requirements... 4 Supported Operating Systems... 4 Accessing

More information

Red Hat Development Suite 2.2

Red Hat Development Suite 2.2 Red Hat Development Suite 2.2 Installation Guide Installing Red Hat Development Suite Last Updated: 2018-03-23 Red Hat Development Suite 2.2 Installation Guide Installing Red Hat Development Suite Petra

More information

VMware Monitoring Using Unnoc - Setup Instructions

VMware Monitoring Using Unnoc - Setup Instructions VMware Monitoring Using Unnoc - Setup Instructions Summary: This document explains how to setup an Unnoc server to monitor VMware vcenter Servers, ESX Servers, and Virtual Machines using the Perl VI SDK.

More information

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS Acronis Backup Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS For Linux Server INSTALLATION GUIDE Copyright Statement Copyright Acronis International GmbH, 2002-2015. All rights reserved. Acronis

More information

How To Install Java Manually Linux Terminal Server 2008

How To Install Java Manually Linux Terminal Server 2008 How To Install Java Manually Linux Terminal Server 2008 The RDP protocol component "DATA ENCRYPTION" detected an error in the Explanation: If you are installing the first Primary Server on a Linux device,

More information

Dell EMC ME4 Series vsphere Client Plug-in

Dell EMC ME4 Series vsphere Client Plug-in Dell EMC ME4 Series vsphere Client Plug-in User's Guide Regulatory Model: E09J, E10J, E11J Regulatory Type: E09J001, E10J001, E11J001 Notes, cautions, and warnings NOTE: A NOTE indicates important information

More information

HP IT Operations Compliance Community Edition

HP IT Operations Compliance Community Edition HP IT Operations Compliance Community Edition Software Version: 00.14.1200 - Getting Started Guide Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only

More information

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software, Data

More information

Identity Connect Release Notes,,,

Identity Connect Release Notes,,, ,,, registered trademark of salesforce.com, Inc., as are other names and marks. Other marks appearing herein may be trademarks of their respective owners. Abstract Notes covering Identity Connect prerequisites,

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

Torque Resource Manager

Torque Resource Manager Torque Resource Manager Administrator Guide 6.1.1 March 2017 2017 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft

More information

Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018

Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018 Downloading and installing Db2 Developer-C on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 23, 2018 This guide will help you download and install IBM Db2 software on Red Hat

More information

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA

Release Date April 9, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 SP2 Installation Guide Release Date April 9, 2010 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved. Trademarks

More information

Installation Guide. Version

Installation Guide. Version Installation Guide Version 2017.2 Copyrights 1996-2017 Perforce Software, Inc. and its subsidiaries. All rights reserved. Defect Scribe, Helix ALM, Helix ALM Suite, Helix Issue Management, Helix Requirements

More information

IBM z Systems Development and Test Environment Tools User's Guide IBM

IBM z Systems Development and Test Environment Tools User's Guide IBM IBM z Systems Development and Test Environment Tools User's Guide IBM ii IBM z Systems Development and Test Environment Tools User's Guide Contents Chapter 1. Overview......... 1 Introduction..............

More information

TORQUE Resource Manager Quick Start Guide Version

TORQUE Resource Manager Quick Start Guide Version TORQUE Resource Manager Quick Start Guide Version High Performance Computing Center Ferdowsi University of Mashhad http://www.um.ac.ir/hpcc Jan. 2006 1 Contents 1 Introduction 3 1.1 Feature................................

More information

TIBCO FTL Installation

TIBCO FTL Installation TIBCO FTL Installation Software Release 5.2 March 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 Richard Lyn lynrf@mcmaster.ca Jianwei Yang yangj29@mcmaster.ca Document Revision History Rev. Level Date

More information

vsphere SDK for Perl Installation Guide vsphere 4.0 EN

vsphere SDK for Perl Installation Guide vsphere 4.0 EN vsphere 4.0 EN-000141-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product updates.

More information

To configure the patching repository so that it can copy patches to alternate locations, use SFTP, SCP, FTP, NFS, or a premounted file system.

To configure the patching repository so that it can copy patches to alternate locations, use SFTP, SCP, FTP, NFS, or a premounted file system. Configuring Protocols to Stage and 1 Deploy Linux and UNIX Patches VCM supports patching of managed machines in distributed environments, either geographically or separated by firewalls. VCM uses a single

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Bitnami JRuby for Huawei Enterprise Cloud

Bitnami JRuby for Huawei Enterprise Cloud Bitnami JRuby for Huawei Enterprise Cloud Description JRuby is a 100% Java implementation of the Ruby programming language. It is Ruby for the JVM. JRuby provides a complete set of core built-in classes

More information

Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide

Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide 13 June 2014 CONTENTS Windows... 4 Linux... 4 Installation Procedures... 4 Windows Installation... 4 Linux portable Installation... 5

More information

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment

Upgrade Instructions. NetBrain Integrated Edition 7.1. Two-Server Deployment NetBrain Integrated Edition 7.1 Upgrade Instructions Two-Server Deployment Version 7.1a Last Updated 2018-09-04 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Upgrading

More information

QuickStart Guide for Managing Computers. Version 9.73

QuickStart Guide for Managing Computers. Version 9.73 QuickStart Guide for Managing Computers Version 9.73 JAMF Software, LLC 2015 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

EDB Postgres Enterprise Manager Installation Guide Version 7

EDB Postgres Enterprise Manager Installation Guide Version 7 EDB Postgres Enterprise Manager Installation Guide Version 7 June 1, 2017 EDB Postgres Enterprise Manager Installation Guide by EnterpriseDB Corporation Copyright 2013-2017 EnterpriseDB Corporation. All

More information

BEAWebLogic. Enterprise Security. WebLogic Server v8.1 Installation

BEAWebLogic. Enterprise Security. WebLogic Server v8.1 Installation BEAWebLogic Enterprise Security WebLogic Server v8.1 Installation Product Version: 4.2 Service Pack 2 Document Revised: October 27, 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved.

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.31 JAMF Software Server Installation and Configuration Guide for Linux Version 9.31 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user.

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user. Installing Tomcat 7 on CentOS 7 David J. Walling, March 8 th, 2017 Email: david@davidjwalling.com This how to describes a process to download and install Apache Tomcat 7 on a CentOS 7 virtual machine using

More information

SMRT Analysis Software Installation (v1.3.1)

SMRT Analysis Software Installation (v1.3.1) SMRT Analysis Software Installation (v1.3.1) Introduction This document describes the basic requirements for installing SMRT Analysis v1.3.1 on a customer system. This document is for use by Field Service

More information

Moab Viewpoint. Administrator Guide October 2015 Revised December 15, 2015

Moab Viewpoint. Administrator Guide October 2015 Revised December 15, 2015 Moab Viewpoint Administrator Guide 9.0.0 October 2015 Revised December 15, 2015 2015 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either

More information

IDOL Site Admin. Software Version Installation Guide

IDOL Site Admin. Software Version Installation Guide IDOL Site Admin Software Version 12.0 Installation Guide Document Release Date: June 2018 Software Release Date: June 2018 Legal notices Copyright notice Copyright 2015-2018 Micro Focus or one of its affiliates.

More information

Zenoss Service Dynamics Analytics and Optimization Installation and Administration

Zenoss Service Dynamics Analytics and Optimization Installation and Administration Zenoss Service Dynamics Analytics and Optimization Installation and Administration Copyright 2013 Zenoss, Inc. All rights reserved. Redistribution or duplication of any portion of this document is prohibited

More information

Desktop Installation Guide

Desktop Installation Guide Desktop Installation Guide Desktop Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.2.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite 1100

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

How To Start Mysql Use Linux Command Line Windows 7

How To Start Mysql Use Linux Command Line Windows 7 How To Start Mysql Use Linux Command Line Windows 7 How can I check the number of active MySQL connections on Linux based system? You can Open the terminal App or login to the remote server using ssh:

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

More information

Offloading NDO2DB To Remote Server

Offloading NDO2DB To Remote Server Purpose This document is meant to show a step-by-step guide for offloading the NDO2DB daemon from the central server to an external, remote server. NDO2DB is an acronym of "Nagios Data Output To Database"

More information

RM4GS Install Guide. version 1.0. September All Rights Reserved, Copyright (C) 2004, FUJITSU LIMITED, Hitachi, Ltd. and NEC Corporation

RM4GS Install Guide. version 1.0. September All Rights Reserved, Copyright (C) 2004, FUJITSU LIMITED, Hitachi, Ltd. and NEC Corporation RM4GS Install Guide version 1.0 September 2004 All Rights Reserved, Copyright (C) 2004, FUJITSU LIMITED, Hitachi, Ltd. and NEC Corporation Abstract This document describes how to install configure and

More information

CloudView NMS Agent User Guide. /multi-platform version/

CloudView NMS Agent User Guide. /multi-platform version/ 1-1 - P a g e CloudView NMS Agent User Guide. /multi-platform version/ www.cloudviewnms.com WARRANTY The software described in this document is subject to change without notice. The information in this

More information

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312)

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) Adeptia Server 4.9 Installation Guide Version 1.2 Release Date March 10, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) 229-1727 Copyright Copyright 2000-2008 Adeptia,

More information

Torque Resource Manager

Torque Resource Manager Torque Resource Manager Administrator Guide 6.0.4 August 2017 2017 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft

More information

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit

Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Sep 14 Zephyr 4.6 Installation on RedHat Enterprise 5/6 Linux 64-Bit Z e p h y r, 7 7 0 7 G a t e w a y B l v d, S u i t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A Zephyr 4.6 Installation on RedHat Enterprise

More information

3 Installation from sources

3 Installation from sources 2019/02/02 03:16 1/11 3 Installation from sources 3 Installation from sources You can get the very latest version of Zabbix by compiling it from the sources. A step-by-step tutorial for installing Zabbix

More information

Polarion Trial Installation 17.2

Polarion Trial Installation 17.2 SIEMENS Polarion Trial Installation 17.2 POL002 17.2 Contents About this guide...................................................... 1-1 Before you begin.....................................................

More information

Nitro 2.1.x. Administrator Guide. November 2016

Nitro 2.1.x. Administrator Guide. November 2016 Nitro 2.1.x Administrator Guide November 2016 2016 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft copy form is strictly

More information

QUICKSTART GUIDE: THE ATTIVIO PLATFORM

QUICKSTART GUIDE: THE ATTIVIO PLATFORM QUICKSTART GUIDE: THE ATTIVIO PLATFORM Welcome to the Attivio Cognitive Search and Insight Platform! This guide gives you step-by-step instructions for installing the Attivio Platform so you can get started

More information

Installing SmartSense on HDP

Installing SmartSense on HDP 1 Installing SmartSense on HDP Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents SmartSense installation... 3 SmartSense system requirements... 3 Operating system, JDK, and browser requirements...3

More information

Postgres Enterprise Manager Installation Guide

Postgres Enterprise Manager Installation Guide Postgres Enterprise Manager Installation Guide November 3, 2013 Postgres Enterprise Manager Installation Guide, Version 4.0.0 by EnterpriseDB Corporation Copyright 2013 EnterpriseDB Corporation. All rights

More information

Oracle Endeca Information Discovery Integrator

Oracle Endeca Information Discovery Integrator Oracle Endeca Information Discovery Integrator Integrator Version 3.0.0 Rev. A May 2013 Copyright and disclaimer Copyright 2003, 2013, Oracle and/or its affiliates. All rights reserved. Oracle and Java

More information

Voltage SecureData Enterprise SQL to XML Integration Guide

Voltage SecureData Enterprise SQL to XML Integration Guide Voltage SecureData Enterprise SQL to XML Integration Guide Jason Paul Kazarian jason.kazarian@microfocus.com (408) 844-4563 2/18 SQL to XML Integration Guide Copyright 2018, Micro Focus. All rights reserved.

More information

Virtual Appliance User s Guide

Virtual Appliance User s Guide Cast Iron Integration Appliance Virtual Appliance User s Guide Version 4.5 July 2009 Cast Iron Virtual Appliance User s Guide Version 4.5 July 2009 Copyright 2009 Cast Iron Systems. All rights reserved.

More information

[ Set UpDIServerand Tools ] ]

[ Set UpDIServerand Tools ] ] Version 5.4 [ Set UpDIServerand Tools ] ] https://help.pentaho.com/draft_content/version_5.4 1/35 Copyright Page This document supports Pentaho Business Analytics Suite 5.4 GA and Pentaho Data Integration

More information

Quick Installation Guide

Quick Installation Guide Nortel IP Flow Manager Release: 2.0 Version: 02.01 Copyright 2009 Nortel Networks Nortel IP Flow Manager 2.0 Page 1 of 9 Nortel IP Flow Manager Release: 2.0 Publication: NN48015-300 Document status: Standard

More information

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Author : admin If you decided to use Redhat based Linux distribution inside Virtualbox

More information

Performing an ObserveIT Upgrade Using the Interactive Installer

Performing an ObserveIT Upgrade Using the Interactive Installer Performing an ObserveIT Upgrade Using the Interactive Installer ABOUT THIS DOCUMENT This document contains detailed procedures and instructions on how to upgrade ObserveIT by using the interactive "One

More information

QuickStart Guide for Managing Computers. Version 9.32

QuickStart Guide for Managing Computers. Version 9.32 QuickStart Guide for Managing Computers Version 9.32 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Installing Intellicus on Linux

Installing Intellicus on Linux Installing Intellicus on Linux Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its

More information

Xcalar Installation Guide

Xcalar Installation Guide Xcalar Installation Guide Publication date: 2018-03-16 www.xcalar.com Copyright 2018 Xcalar, Inc. All rights reserved. Table of Contents Xcalar installation overview 5 Audience 5 Overview of the Xcalar

More information

How To Start Mysql Using Linux Command Line Client In Ubuntu

How To Start Mysql Using Linux Command Line Client In Ubuntu How To Start Mysql Using Linux Command Line Client In Ubuntu Step One: Install MySQL Client On Debian, Ubuntu or Linux Mint: Before you start typing commands at the MySQL prompt, remember that each In

More information

StreamServe Persuasion SP5

StreamServe Persuasion SP5 StreamServe Persuasion SP5 Installation Guide Rev B StreamServe Persuasion SP5 Installation Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents pending Use

More information

This tutorial provides a basic understanding of how to generate professional reports using Pentaho Report Designer.

This tutorial provides a basic understanding of how to generate professional reports using Pentaho Report Designer. About the Tutorial Pentaho Reporting is a suite (collection of tools) for creating relational and analytical reports. It can be used to transform data into meaningful information. Pentaho allows generating

More information

NVIDIA Licensing Information

NVIDIA Licensing Information This chapter contains the following sections: NVIDIA GRID License Server Overview, on page 1 Registering Your Product Activation Keys with NVIDIA, on page 2 Downloading the GRID Software Suite, on page

More information

Red Hat JBoss Developer Studio 11.3

Red Hat JBoss Developer Studio 11.3 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss Developer Studio Last Updated: 2018-05-01 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss

More information

Desktop Installation Guide

Desktop Installation Guide Desktop Installation Guide Desktop Installation Guide Legal notice Copyright 2017 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

4 Installation from sources

4 Installation from sources 2018/07/18 21:35 1/11 4 Installation from sources 4 Installation from sources You can get the very latest version of Zabbix by compiling it from the sources. A step-by-step tutorial for installing Zabbix

More information

Clearswift SECURE Gateway Installation & Getting Started Guide. Version 4.3 Document Revision 1.0

Clearswift SECURE  Gateway Installation & Getting Started Guide. Version 4.3 Document Revision 1.0 Clearswift SECURE Email Gateway Installation & Getting Started Guide Version 4.3 Document Revision 1.0 Copyright Revision 1.1, March, 2016 Published by Clearswift Ltd. 1995 2016 Clearswift Ltd. All rights

More information

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box jthomas Enterprises, 2016 Building a CentOS 7 Workstation using Oracle VirtualBox 1 Section 1 Before You Begin This section details the environment

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A HP StorageWorks Performance Advisor Installation Guide Version 1.7A notice Copyright 2002-2004 Hewlett-Packard Development Company, L.P. Edition 0402 Part Number B9369-96068 Hewlett-Packard Company makes

More information

CentOS 7 with MariaDB

CentOS 7 with MariaDB CentOS 7 with MariaDB OS Web Server and PHP MariaDB and Full Text Search Engine Other Middleware Middleware Setup and Configuration Database PHP NetCommons2 Before Install Preparation Installation Download

More information

Mysql Server 4.1 Manually Windows 7 Start Service

Mysql Server 4.1 Manually Windows 7 Start Service Mysql Server 4.1 Manually Windows 7 Start Service If you are not running the MySQL server as a service, use mysqladmin to manually remove the previous installation and MySQL service (if the server If you

More information