SecureAssist Enterprise Portal User Guide March 2016

Size: px
Start display at page:

Download "SecureAssist Enterprise Portal User Guide March 2016"

Transcription

1 SecureAssist Enterprise Portal User Guide March 2016

2 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic retrieval system, transmitted in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without prior written permission of the copyright owner. Codiscope retains the exclusive title to all intellectual property rights relating to this documentation. The information in this documentation is subject to change without notice and should not be construed as a commitment by Codiscope. Codiscope makes no representations or warranties, express or implied, with respect to the documentation and shall not be liable for any damages, including any indirect, incidental, consequential damages (such as loss of profit, loss of use of assets, loss of business opportunity, loss of data, or claims for or on behalf of user s customers) that may be suffered by the user. Codiscope and the Codiscope logo are trademarks of Codiscope, LLC. Other brands and products are trademarks of their respective owner(s). Codiscope, LLC 20 Park Plaza, Suite 1400 Boston, MA Phone: + 1 (617) info@codiscope.com

3 Table of Contents SecureAssist Enterprise Portal Setup... 1 Installation... 1 Main and Reporting Databases... 1 Database Setup... 2 Initial Configuration Upgrade Instructions Log in to SecureAssist Getting Started Portal Navigation Statistics Project Statistics User Statistics Timeseries Reports Project Reports User Reports Rulepacks Manage Portal Users Plugin User Groups Roles Account Settings LDAP Configuration Feature Configuration Plugin Users More Support Appendix A: Roles and Associated Permissions Appendix B: Permission Descriptions Appendix C: API Functionality Authentication Generate Project Report Get Project List Number of Active Developers Number of Projects Scanned... 62

4 Number of Project Defects Top Number of Findings Most Viewed Guidance... 67

5 March 2016 Page 1 of 68 SecureAssist Enterprise Portal Setup The SecureAssist Enterprise Portal is a centralized portal that allows organizations to manage SecureAssist plugin licenses, rulepacks, and tool settings. It also provides centralized reporting on security vulnerabilities found by users and how those change over time. Installation This section describes the installation of the Codiscope SecureAssist Enterprise Portal and Codiscope SecureAssist Eclipse update site. The Portal and update site can be deployed on the same application server, or they can be deployed on separate servers. This document assumes that they are installed on the same server. Main and Reporting Databases With SecureAssist Enterprise Portal 3.0, users now have the option to set up a separate, secondary database for reporting. This enables better Enterprise Portal performance for larger SecureAssist deployments. When the reporting database is configured, all scheduled and active reporting requests will execute against it. The main database will still handle registration, activation, rulepack requests, and so on. The use of a secondary reporting database is optional and only currently supported for the MySQL DBMS. If you choose to set up only one database for the SecureAssist Enterprise Portal, all reporting requests will be directed to the main database. Important! The following points are critical to implementing databases in the Portal. If the reporting database is configured, then replication MUST be set up between the main database and the reporting database in order for data to be consistent between them. If no replication is set up, the executed reports will not have any data in them. The main database and the reporting database MUST be set up in two separate locations/on two different hypervisors to ensure reporting requests do not influence the functionality and performance of main database hypervisor/server.

6 March 2016 Page 2 of 68 Database Setup Configure Main Database Connection If the reporting database is configured, the replication between the main database and the reporting database MUST be set up prior to the database import into the main database. The following image displays the Database Connection screen.

7 March 2016 Page 3 of 68 Configure Database Database Derby Instructions Configure Database and User 1. To modify database name, user, and password (password change is required), you need to modify the Apache Derby specific SQL script located in <CSA_Portal_Package>/DatabaseScript/portal_csa_derby.sql. (Please make sure to modify this script with desired username and password prior to running the database import process) 2. In order to modify the credentials of the user that will be used to connect to the CSA Portal database, modify following line in the SQL Script: CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY ( derby.user.portal_csa, Passw0rd ); 3. To change password, replace Passw0rd with a new password. 4. To change user name, replace derby.user.portal_csa with derby.user.selected_username. 5. In order to change database name, modify following line in the SQL Script: CONNECT jdbc:derby:portal_csa;create=true ; 6. To change database name, replace portal_csa with database name of your choice. Running Apache Derby Database Import Script 1. Ensure that Apache Derby is running. 2. To Start Apache Derby database as a network server, execute the <derby>/bin /startnetworkserver.bat (Windows) or <derby>/bin /startnetworkserver.ksh (Unix) script. This will start the Network Server up on port Start the Apache Derby scripting tool by executing <derby>/bin/ij.bat (Windows) or <derby>/bin/ij.ksh (Unix) script in the command window or terminal window. At the ij prompt, run following command: run <path>/<to>/portal_csa_derby.sql ;

8 March 2016 Page 4 of 68 MySQL Configure MySQL Database and User 1. Run the mysql command from the command prompt as a MySQL super user: mysql -u root -p 2. Create an empty CSA Portal database schema. Replace portal_csa with a database name of your choice: CREATE DATABASE portal_csa; 3. Create CSA Portal database user: GRANT ALL PRIVILEGES ON portal_csa.* TO localhost IDENTIFIED BY csauserpassword ; Optional: Replace portal_csa with the name of the database that you have created in the step above. Additionally, replace csauser and csauserpassword with the username and password of your choice. If the SecureAssist Enterprise Portal is not running on the same server as your MySQL database server, replace localhost with the hostname or IP address of the SecureAssist server. Running MySQL Database Import Script If a reporting database is set up, the replication between the main database and reporting database MUST be set up prior to database import in the main database. If you are using a Production Database ONLY, without a Reporting Database, please follow these steps. 1. Create CSA Portal database schema and import the database by running the following command from the command prompt as a MySQL super user. Production Database is portal_csa mysql -u root -p portal_csa < path_to/portal_csa_mysql.sql mysql -u root -p portal_csa < path_to/portal_csa_mysql_aggregation.sql Replace portal_csa with database schema created in step 2 above. Replace path_to with path to portal_csa_mysql.sql file. If you are using a Production Database WITH a Reporting Database, please follow the steps below. 1. Create CSA Portal database schema and import the database by running the following command from the command prompt as a MySQL super user. Production Database is portal_csa Reporting Database is portal_csa (same name as primary database but to be replicated to a different location) Production Database command: mysql -u root -p portal_csa < path_to/portal_csa_mysql.sql Reporting Database command: mysql -u root -p portal_csa < path_to/portal_csa_mysql_aggregation.sql Replace portal_csa with database schema created in step 2 above. Replace path_to with path to portal_csa_mysql.sql or portal_csa_mysql_aggregation file.

9 March 2016 Page 5 of 68 Database Oracle Instructions Configure Database and User 1. To modify database name, user, and password (password change is required), modify the Oracle specific SQL script located at <CSA_Portal_Package>/DatabaseScripts/portal_csa_oracle.sql. (Please make sure to modify this script with desired username and password prior to running the database import process.) 2. In order to modify credentials of user that will be used to connect to CSA Portal database, modify following line in the SQL Script: CREATE USER portal_csa IDENTIFIED BY Passw0rd DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP; Optional: Replace portal_csa and Passw0rd with username and password of your choice. Make sure to update all following lines with updated information: connect portal_csa/passw0rd; Running SQL Database Import Script 1. Log in to SQL*Plus as sysdba using following command: sqlplus /as sysdba 2. To log output of SQL script execution, turn on spool: spool /<path>/<to>/log.txt ; 3. Execute SQL 4. Turn off spool: spool off; 5. Exit from SQL*Plus: exit; 6. Review log file with SQL script execution output to validate that there are no errors. Configure Reporting Database Connection SecureAssist Enterprise Portal currently officially supports MySQL replication ONLY. For MySQL Database Server replication documentation, please refer to these sites: MySQL 5.6: MySQL 5.7: Database replication is needed for the reporting database to work properly. Replication MUST be set up prior to database connection setup. Database import needs to occur into the Production Database and into Reporting Database prior to Enterprise Portal database setup.

10 March 2016 Page 6 of 68 Configure Secure HTTP SecureAssist Enterprise Portal supports HTTP and Secure HTTP (HTTPS). Codiscope strongly recommends using HTTPS. For information on configuring the Apache Tomcat web server to use HTTPS, refer to your web server s documentation. Prior to installation or upgrading, Codiscope recommends configuring a minimum heap size of 1 GB. Deploy SecureAssist Portal These instructions are for an Apache Tomcat application server that sets the minimum and maximum heap size to 1024 MB. Increase Tomcat Heap Size for a Command-Line Tomcat Instance 1. Create a file named "setenv.bat" or "setenv.sh" in the %CATALINA_HOME/bin folder and set the CATALINA_OPTS to the memory settings. a. On Windows: "set CATALINA_OPTS='-Xms1024 Xmx1024m -Xss1024k -XX:PermSize=256m - XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC - XX:+CMSClassUnloadingEnabled'" b. On Linux: "export CATALINA_OPTS='-Xms1024m Xmx1024m -Xss1024k -XX:PermSize=256m - XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC - XX:+CMSClassUnloadingEnabled'" Increase Tomcat Heap Size for a Windows Service Tomcat Instance 1. Execute Tomcat<version#>w.exe in the %CATALINA_HOME%\bin\ directory and enter 1024 in the Initial memory pool and Maximum memory pool fields.

11 March 2016 Page 7 of 68 Deploy Using Tomcat Manager If your instance of Tomcat is running in the Tomcat Web Application Manager, you can use its browser interface to deploy the Portal. 1. In %CATALINA_HOME%/conf/tomcat_users.xml, create a role named manager-gui and assign a user to this role. Afterwards, restart your Tomcat instance. <tomcat-users><role rolename= manager-gui /><user username= USERNAME password= PASSWORD roles= managergui /></tomcat-users> 2. In your internet browser, navigate to the Tomcat home page (by default located at 3. Click on the Manager App link. You will be asked to enter your username and password (from step 1, above). 4. Enter your username and password. The Web Application Manager page will load. 5. Navigate to the WAR file to deploy section and click Browse.

12 March 2016 Page 8 of Select the CSA Portal web application WAR file, click Open, then click Deploy. After Tomcat has finished deploying the Portal, it is listed in the Applications section and ready to use. Deploy on a Running Tomcat Server To deploy the SecureAssist Enterprise Portal on a running Tomcat server, follow these steps. 1. Set the autodeployattribute to true in your server.xml file inside Tomcat s /conf/ directory. The host will deploy the web application when the WAR file is copied to the deployment directory. The default deployment directory is %CATALINA_HOME%/webapps. 2. To deploy the Portal, copy CSA_Server.warfile to %CATALINA_HOME%/webapps. 3. After Tomcat has finished deploying the Enterprise Portal, create the CSA_Server directory under %CATALINA_HOME%/webapps.

13 March 2016 Page 9 of 68 Deploy Using WebSphere To deploy the SecureAssist Enterprise Portal on a WebSphere (8.5.X) application server, follow these instructions. (Prior to the application deployment, we recommend setting the heap space to at least 1 GB.) 1. Increase Heap Space. a. Start the WebSphere Application Server administrative console. b. Navigate to Servers > Application servers > server1 > Java and Process Management > Process Definition > Java Virtual Machine. c. Set the initial and maximum heap sizes to at least 1024 MB. d. Click Apply. e. Click OK. f. Click Save Save directly to the master configuration. g. Restart WebSphere. 2. Deploy SecureAssist Enterprise Portal EAR File. a. Start the WebSphere Application Server administrative console. b. On the navigation menu on the left side of the screen, select Global Deployment Settings from the Applications section. c. Check the Monitor directory to automatically deploy applications checkbox. d. Click Apply. e. Click Save "Save directly to the master configuration." f. Restart WebSphere. g. After WebSphere restarts, copy the EAR file to WebSphere/AppServer/profiles/AppSrv04/monitoredD eployableapps/servers/server1. h. After several minutes, start the WebSphere Application Server administrative console. i. To verify the application has been deployed and is running, select Applications > Applications Types > WebSphere enterprise applications from the navigation menu. j. Navigate to (e.g.

14 March 2016 Page 10 of Optional. Import SSL certificate to support Secure LDAP. a. Start the WebSphere Application Server administrative console. b. On the navigation menu on the left side of the screen, select SSL certificate and key management from the Security section. c. In the Related Items section, click Key stores and certificates. d. Select NodeDefaultKeyStore and in the Additional Properties section click Signer Certificates. e. In the Signer Certificate table, click Retrieve from Port. f. Provide you LDAPS server host name, port, and alias for the key, then click Retrieve signer information. g. Click OK. h. Click Save "Save directly to the master configuration." i. Navigate back to Key stores and certificates and repeat steps (d) through (h) for NodeDefaultTrustStore. j. Restart Websphere. Install MySQL Database Connector The MySQL Connector/J (official JDBC driver for MySQL database) is required to connect the SecureAssist Enterprise Portal to a MySQL database. This step is not necessary when using a Derby or Oracle database. To install the MySQL connector, follow these steps. 1. Navigate to and download MySQL Connector/J. 2. Extract mysql-connector-java-5.x.x-bin.jar file from the archive downloaded in previous step and copy it into the /CSA_Server/WEB-INF/lib directory. Deploy Codiscope SecureAssist Eclipse Update Site To deploy the SecureAssist Eclipse update site, simply copy the /update folder that came with the Portal and place it right next to your CSA_Server folder. Important! Place the /update folder next to the CSA_Server directory, NOT inside it.

15 March 2016 Page 11 of 68 Initial Configuration Configure Logging The Log4j configuration file is stored at /CSA_Server/WEBINF/classes/log4j.xml file. You can edit this file to make it suitable for the deployment environment. For more information about configuring log4j, refer to the log4j documentation. Note: Any changes made to the logging configuration file will take effect only after restarting the Tomcat Application Server or WebSphere Application Server. Initial Configuration After the successful deployment of the SecureAssist Enterprise Portal, open your browser and navigate to to finish the configuration of the portal. The following table describes the items you will need to configure. Item License Terms Description Read terms and conditions and click I Agree to continue. Product License The SecureAssist Enterprise Portal license is tied to a specific server and can be used only on that single server. If rehosting is needed, please contact Codiscope support at support@codiscope.com The server license will be sent to you as a part of the SecureAssist fulfillment . After receiving the server license file, click Browse and select server license file, then click Upload on the license activation/upload screen during the Enterprise Portal setup.

16 March 2016 Page 12 of 68 Item Database Setup Description Before setting up the database connection, you must set up the database schema and create a database user as described in the Configure Database section above. Complete all fields and click Save. Examples: Database Type: Derby Server: jdbc:derby://<db_server>:1527/portal_csa Database/Schema Name: APP Database User: portal_csa Database Type: MySQL Production Database Server: jdbc:mysql://<db_server>:3306 Database/Schema Name: portal_csa Database User: csauser Reporting Database (optional) Server: jdbc:mysql://<db_server>:3306 Database/Schema Name: portal_csa Database User: csauser Database Type: Oracle Server: jdbc:oracle:thin:@<db_server>:1521:orcl Database/Schema Name: portal_csa Database User: portal_csa Administrator Account Setup In the last step of the initial configuration, the administrator account must be created. Select either LDAP User or Local User in Administrator Type and then complete the appropriate fields: Local User. Enter Username, Password, and Password Confirmation, then click Save. LDAP User. Enter Authentication & Security settings, Server settings, LDAP Login settings, and administrator credentials (Username, Password, and Password Confirmation), then click Save. You can initially set up a local user account and configure an LDAP connection of your portal later on. After LDAP is set up, you can disable your original local user account. Upon successful initial configuration, you will be redirected to the Index page and will be able to log in using the administrator credentials you created.

17 March 2016 Page 13 of 68 Configure Link on Index Page The Index page contains a section with the link to the location from where the SecureAssist Eclipse IDE plugin can be installed or updated. (Additionally, you can have separate links for IntelliJ and Visual Studio, but this is not required.) In order to configure the link, navigate to /CSA_Server/WEB- INF/jsp/includes/. Open file index.jsp and edit the following line so that the value equals the correct URL from which the plugin can be installed. If you do not want the link to be displayed, leave the value as empty. Upgrade Instructions This section contains the instructions for upgrading the SecureAssist Enterprise Portal from your current version to the latest one. Please take a look at the following sections for database and server upgrade instructions. Both the application server and database components must be upgraded for proper Portal function. Note: In order to upgrade to SecureAssist 2.4 or from any previous version, you must be re-issued a new Enterprise Portal license. Please reach out to support@codiscope.com for a new license for SecureAssist 2.4 or If you are performing an upgrade from version 2.5 to a later version, you can simply use the License.jar file that was provided to you with the installation of SecureAssist 2.5 or later. Application Upgrade Follow these instructions to upgrade the Portal. Important! It is critical to stop your Apache Tomcat or WebSphere Application Server prior to your database upgrade. Note: If you have modified any configuration (for example, the hibernate.cfg files) in order to resolve bugs, you must make these same modifications in the upgrade deployment. Note: SecureAssist 3.0 has made additions to the cron.properties file located in %CATALINA_HOME%/webapps/CSA_Server/WEB-INF directory. If you have made changes to your cron.properties file and plan to use

18 March 2016 Page 14 of 68 it after upgrading it, you will need to include these changes into your restored cron.properties file. The additions to be included are: com.cigital.csa.cron.aggregate.enable=true com.cigital.csa.cron.aggregate.interval=24 com.cigital.csa.cron.aggregate.hour=0 com.cigital.csa.cron.aggregate.minute=0 com.cigital.csa.cron.aggregate.second=0 Tomcat Application Server 1. Stop Apache Tomcat. 2. Create backup directory. 3. Backup following directories/files: a. Copy following directories and files to backup folder: - %CATALINA_HOME%/webapps/CSA_Server/key-file - %CATALINA_HOME%/webapps/CSA_Server/stats - %CATALINA_HOME%/webapps/CSA_Server/rulepacks - %CATALINA_HOME%/webapps/CSA_Server/WEB- INF/lib/mysql-connector-java-5.x.x.jar b. Copy following files from %CATALINA_HOME%/webapps/CSA_Server/WEB-INF/ folder to backup folder: - cron.properties - db.properties - <company_name>-secureassist-prikey.der - SecureAssist.license - classes/log4j.xml (optional, see step 9c ) 4. Delete CSA_Server.war file from %CATALINA_HOME%/webapps folder. 5. Delete %CATALINA_HOME%/webapps/CSA_Server folder. 6. Copy new CSA_Server.war file to %CATALINA_HOME%/webapps folder for server deployment, or deploy.war file from Tomcat Manager. 7. Upgrade database by following instructions in the Database Upgrade section below. 8. Start Apache Tomcat. 9. Restore the following directories/files. a. Copy following directories to %CATALINA_HOME%/webapps/CSA_Server: - <backup>/key-file - <backup>/stats - <backup>/rulepacks

19 March 2016 Page 15 of 68 b. Copy following files to %CATALINA_HOME%/webapps/CSA_Server/WEB-INF: - <backup>/cron.properties (please see note at the beginning of the section regarding additions to this file) - <backup>/db.properties - <backup>/<company>-secureassist-prikey.der - <backup>/secureassist.license c. Copy file <backup>/log4j.xml to %CATALINA_HOME%/webapps/CSA_Server/WEBINF/ classes. Note: If you are upgrading from a version prior to 2.3, the Log4j configuration file in release 2.3 contains additional loggers to improve logging configuration. We recommend configuring new log4j.xml instead of replacing it with the previous version of the file. 10. Ensure that all directories and files copied from the backup folder are readable and writable by a user running Tomcat (e.g., chown tomcat:tomcat path/to/file). 11. Copy MySQL Connector (mysql-connector-java-5.x.x.jar) to %CATALINA_HOME%/webapps/CSA_Server/WEB-INF/lib/. Note: If you are not using MySQL, you do not need to obtain a copy and install it. 12. Remove Apache Tomcat work cache (e.g., /var/cache/tomcat6/work/catalina/localhost/csa_server/*, <tomcat>/work/catalina/localhost/csa_server/*). 13. Restart Apache Tomcat. Websphere Application Server 1. Stop WebSphere Application Server (WAS). 2. Create backup directory. 3. Backup following directories/files: a. Copy following directories and files to backup folder: - /CSA_Server/key-file - /CSA_Server/stats - /CSA_Server/rulepacks - /CSA_Server/WEB-INF/lib/mysql-connector-java-5.x.x.jar b. Copy following files from /CSA_Server/WEB-INF/ folder to backup folder: - cron.properties - db.properties - <company_name>-secureassist-prikey.der - SecureAssist.license - classes/log4j.xml (optional, see step 9c) 4. Delete CSA_Server.EAR file from WAS Server1 folder. 5. Delete CSA_Server folder. 6. Copy new CSA_Server.EAR file to WAS Server1 folder for server deployment.

20 March 2016 Page 16 of Upgrade database by following instructions in the Database Upgrade section below. 8. Start WebSphere Application Server (WAS); New CSA_Server.EAR file is deployed on restart. 9. Restore the following directories/files. a. Copy following directories to /CSA_Server: - <backup>/key-file - <backup>/stats - <backup>/rulepacks b. Copy following files to /CSA_Server/WEB-INF: - <backup>/cron.properties (please see note at the beginning of the section regarding additions to this file) - <backup>/db.properties - <backup>/<company>-secureassist-prikey.der - <backup>/secureassist.license c. Copy file <backup>/log4j.xml to /CSA_Server/WEBINF/ classes. Note: If you are upgrading from a version prior to 2.3, the Log4j configuration file in release 2.3 contains additional loggers to improve logging configuration. We recommend configuring new log4j.xml instead of replacing it with the previous version of the file. 10. Copy MySQL Connector (mysql-connector-java-5.x.x.jar) to /CSA_Server/WEB-INF/lib/. Note: If you are not using MySQL, you do not need to obtain a copy and install it. 11. Restart WebSphere Application Server (WAS). Database Upgrade Depending on your current version of SecureAssist Portal, a few upgrade scripts may need to be run. SecureAssist Enterprise Portal supports the following upgrade paths (upgrade scripts can be found at the Enterprise Portal archive/databasescript/upgrade/). Important! If configuring a secondary reporting database, don t forget to configure replication prior to database configuration. Versions Upgrade Paths to 3.0 Run these scripts in the following order: 2.5.1_to_ to 3.0 Run these scripts in the following order: 2.4.1_to_ _to_3.0

21 March 2016 Page 17 of 68 Versions Upgrade Paths to 3.0 Run these scripts in the following order: 2.4.1_to_ _to_ to 3.0 Run these scripts in the following order: 2.4.0_to_ _to_ _to_ , or to 3.0 Run these scripts in the following order: 2.3.7_to_ _to_ _to_ _to_ to 3.0 Run these scripts in the following order: 2.3.6_to_ _to_ _to_ _to_ _to_ to 3.0 Run these scripts in the following order: 2.3.1_to_ to _to_ _to_ _to_ _to_ to 3.0 Run these scripts in the following order: 2.3_to_ _to _to_ _to_ _to_ _to_ _to_ to 3.0 Run these scripts in the following order: 2.2_to_2.3.1, 2.3.1_to_ _to_ _to_ _to_ _to_ _to_3.0 `portal_csa_[db]_aggregation.sql`, where [db] is either mysql, oracle, or derby, depending on your database software.

22 March 2016 Page 18 of 68 Follow these instructions to upgrade the database. Database Derby Instructions Please contact support prior to upgrading. MySQL If you are upgrading from any version prior to 3.0, you only have a single Production Database without replication. If you are using a Production Database ONLY, without a Reporting Database, please follow the steps below. 1. Run the following commands for database upgrade. Production Database is portal_csa mysql -u root -p portal_csa < path_to/upgrade/{from_to_versions}/mysql_upgrade_{version}_to_{ver sion}.sql mysql -u root -p portal_csa < /portal_csa_mysql_aggregation.sql If you are using or would like to upgrade to Production Database WITH a Reporting Database, please follow the steps below. 1. Run the following commands for database upgrade. Production Database is portal_csa Reporting Database is portal_csa (replicated in the different location) Production Database command: mysql -u root -p portal_csa < path_to/upgrade/{from_to_versions}/mysql_upgrade_{version}_to_{ver sion}.sql Reporting Database command: mysql -u root -p portal_csa < /portal_csa_mysql_aggregation.sql

23 March 2016 Page 19 of 68 Database Oracle Instructions Configure Database and User 1. To modify database name, user, and password (password change is required), modify the Oracle specific SQL script located in <CSA_Portal_Package>/DatabaseScripts/portal_csa_oracle.sql. (Please make sure to modify this script with desired username and password prior to running the database import process.) 2. In order to modify credentials of user that will be used to connect to CSA Portal database, modify following line in the SQL Script: CREATE USER portal_csa IDENTIFIED BY Passw0rd DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP; Optional: Replace portal_csa and Passw0rd with username and password of your choice. Make sure to update all following lines with updated information: connect portal_csa/passw0rd; Running SQL Database Import Script 1. Log in to SQL*Plus as sysdba using following command: sqlplus /as sysdba 2. To log output of SQL script execution, turn on spool: spool /<path>/<to>/log.txt ; 3. Execute SQL 4. Turn off spool: spool off; 5. Exit from SQL*Plus: exit; 6. Review log file with SQL script execution output to validate that there are no errors.

24 March 2016 Page 20 of 68 1 Log in to SecureAssist Enter your username and password on SecureAssist s login screen at (The administrative user account was configured in the last step of the Enterprise Server setup and configuration.) Getting Started When you first log onto the Portal, it opens on the Get Started screen by default. The screen displays these features. Feature Learn how it works Install the SecureAssist Plugin Activate Description Provides a link to the SecureAssist Support screen and its related documentation. Provides links for the download of Eclipse, Visual Studio, and IntelliJ plugins. Provides direction for activating your SecureAssist plugin license. Portal Navigation The navigation menu on the left side of the application allows you to access any of the SecureAssist functional areas at any time. Those functional areas are: Statistics An instant-reporting function that displays the number and types of issues identified and reviewed, guidance searched, and history of vulnerabilities remediated by project or by individual user. Reports Allows administrators to produce various predefined reports for projects or for groups of users. Rulepacks Lists the various rulepacks loaded in the Portal for distribution to the licensed SecureAssist clients. Manage Contains screens for administering users, groups, roles, and your personal account. Settings Contains various settings for configuring the application and viewing license agreements. Get Started The homepage. The following chapters will describe the functionality of the SecureAssist Enterprise Portal in more detail.

25 March 2016 Page 21 of 68 2 Statistics Statistics covering plugin functionality and user activity are periodically sent to the Portal. This information is stored on the Portal server in a database, and there are numerous pre-defined charts and graphs that can be viewed and exported. Project Statistics The Project Statistics screen allows you to instantly view statistical information by project. Run Statistics for a Selected Project 1. Navigate to the Project Statistics window. The Select a Project flyout will automatically open. (To manually open the flyout, click the Select a Project button.) 2. Locate a project by either scrolling though the list of projects AND/OR Typing text into the search box to filter the selection AND/OR Clicking the filter icon to filter choices by Java,.Net, or PHP.

26 March 2016 Page 22 of Click Select next to the desired project. The dialog closes, and the Project Statistics Options window populates with default information. The following table describes the selection criteria on the Project Statistics Options window. Field/Feature Project Description Displays the currently selected project for which statistics will be provided. To select a different project, click Change. File Displays the currently selected files in the project (by default, All Files). To change the file selection, click Change. Date Range Displays the selected range of dates for which statistics will be provided (defaults to the current date). To update, click in the date boxes to select a new start and/or end date. Type Choose one of the following three types of statistics: Top Findings The ten most frequent findings for the selected project. File Scan Allows you to choose an individual file in a project for which you wish to see statistics. (When selected, Sort by no longer is an option.) Suppression Displays issues suppressed by end users, per project and per project file. Sort by Choose to sort results by one of the following: Category Category of rules that were triggered/fired. Title Name of specific rule. Show Chart Click this button to display a chart based on the selected criteria. Download CSV Once a chart is displayed, click this button to save the data to a CSV file. 4. From the Project Statistics Options window, make your criteria selections.

27 March 2016 Page 23 of Click Show Chart. SecureAssist displays a chart based on your selections. 6. If desired, filter the report results by user: a. In the Filters pane, click on one or more users to highlight them. b. Click Update. The report updates to display data for the selected users only. Note: For the file scan statistic, data is shown only for a single a user. 7. If desired, click Download CSV to save the data to a CSV file.

28 March 2016 Page 24 of 68 User Statistics The User Statistics screen allows you to view statistics information for a single user. When you access this screen, you will see a list of all your plugin users (the list is populated by your client licenses). Find a User 1. To quickly find a user in the user list, enter text into the Find a User box. The list will automatically filter to show only those user names that contain the text. Run Statistics for a Single User 1. Locate the name of the desired user in the list, then click the Get Statistics button next to it. The User Statistics Options window displays default information. The following table describes the selection criteria on this window. Field/Feature User Date Range Type Description Displays the currently selected user for which statistics will be provided. To select a different user, click Change. Displays the selected range of dates for which statistics will be provided (defaults to the current date). To update, click in the date boxes to select a new start and/or end date. Choose one of the following types of statistics: User Session Displays the user s distinct sessions on a timeline. Hovering over a start or end point will display a timestamp. Scanned File Types Pie chart that displays scanned files by type. Searched Guidance Chart displays the guidance categories and the number of times each was searched by the user in a given timespan. Also indicates the rulepack in which the guidance was found. Top Findings The ten most-frequent findings for the selected user. Issues Reviewed Chart shows the number of issues found and reviewed by the user. Requires the selection of a project. Issues Suppressed Displays issues suppressed by the user for a given timespan, project, and file. Requires the selection of a project.

29 March 2016 Page 25 of 68 Field/Feature Sort by (available only when Top Findings or Issues Suppressed is selected) Select a Project (available only when Issues Reviewed or Issues Suppressed is selected) Show Chart Download CSV Description Choose to sort results by one of the following: Category Category of rules that were triggered/fired. Title Name of specific rule. Click this button to select a project. Click this button to display the statistics based on the selected criteria. Click this button to save the data to a CSV file. 2. From the User Statistics Options window, make your criteria selections. 3. Click Show Chart. SecureAssist displays a chart based on your selections. 4. If desired, click Download CSV to save the data to a CSV file. Timeseries The Timeseries screen allows you to view graphs of defect/issue data for a selected date range and selected projects. The Issues bar graph presents the number of issues and their severity for selected projects during a specific time period.

30 March 2016 Page 26 of 68 Below the Issues graph, the Issue Density line graph displays both the total number of issues (in orange) and the number of lines of code (LOC, in blue) over time. Run the Issues and Issue Density Graphs 1. Navigate to the Timeseries window. 2. In the Date Range fields, enter the beginning and end dates for the desired time period. 3. In the Project Name field, enter the desired project in the text box. Important! You must enter the complete, correct project name. 4. Click Search. The Issues and Issue Density graphs display on screen.

31 March 2016 Page 27 of 68 3 Reports There are two types of reports: Project and User. Several reports can be generated for each type. Project Reports Project reports are reports you create for one or more selected projects. When you add a report, the application generates a ZIP archive containing the various report types you ve selected in the New Report flyout. When you navigate to the Project Reports screen, you will see a list of report packages that have already run. This will be blank the first time you access the screen. From this screen you will be able to run a new report from scratch, view the details of previously run report packages, and rerun and download previously run report packages. Find a Report 1. To quickly find a report in the report list, enter text into the Find a Report box. The list will automatically filter to show only those reports whose names contain the text. View Details of Previously Run Report 1. To view the project associated with a report, click under the Projects column in that report s row. The Filters flyover opens on the right, displaying the project names selected or the metadata used to select the project.

32 March 2016 Page 28 of To view all other details about a report, click anywhere in the report s row EXCEPT the Projects column. A flyout opens that displays the Report Name, Date Range, Report Types, Start Time and End Time when the report was run, Duration of the report run, and Status. Add a New Report To run a report, you must select a report type, then select the projects you wish to report on. 1. On the Project Report screen, click Add Report. The New Report flyout opens. 2. In Name, enter a title for the report. This is how the report results will be listed on the Project Report screen. 3. In Date Range, select one of the following options: 7 Days, 30 Days, or All. 4. Under Report Types, select one or more report types. (For samples, see the appendices.) Types of Project Reports Portfolio Summary Report Description Lists unique defects per project, number of files scanned, and lines of code based on the most recent project/solution scan date. Project Report Lists all files scanned as a part of project/solution review including most recent scan date, defect counts, lines of code, and developer who performed the last scan. Project Defect Report Lists all rules that triggered during last project/solution review per project. Global Defect Report Lists all rules that triggered across all files. 5. Click Next. (Next will only be available when you ve entered a name AND selected at least one report type.) The Filters flyout appears, with the title of your report name at the top. You will use this flyout to filter the projects you wish to report on by either Project Name or Metadata. Click on each section title to display the associated fields. Note: Metadata is configured in and reported from the SecureAssist plugin. Please see SecureAssist plugin documentation for more information.

33 March 2016 Page 29 of On the Filters flyout, select the projects you wish to report on by either: In the Project Name section, select one or more projects by clicking the Add button next to each OR click Add All to select them all. OR In the Metadata section, specify metadata values to select projects. When more than one key-value pair is specified, the filter will search for projects that meet all key-value pairs. a. In Key, enter the desired field you wish to use to filter. b. In Value, enter the desired filter value. c. Click Add. The filter criteria will be added to a list below the Add feature. d. Add more criteria as desired. 7. Click Save. The Filter flyout closes and you are returned to the Project Reports screen. Your new report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated (generation time varies with the size of the report).

34 March 2016 Page 30 of 68 Download a Report 1. From the Project Reports screen, click anywhere in the row of the desired report EXCEPT the Projects column. A flyout opens with a list of report details and several action buttons. 2. Scroll to the bottom of the flyout and click Download Report. A ZIP file of the report results is automatically saved to your Downloads folder. 3. Open the ZIP file. A separate CSV file is displayed for each report type you selected. Note: The downloaded ZIP files will be named ProjectReports with an appended run date, and CSV files will be named by report type. The name you entered under Report Name appears ONLY on the Project Reports screen. Re-Run a Report There are times you may want to run a report identical to one you ve previously run. Re-Run Report allows you to do this. 1. From the Project Reports screen, click anywhere in the row of the desired report EXCEPT the Projects column. A flyout opens with a list of report details and several action buttons. 2. Scroll to the bottom of the flyout and click Re-Run Report. The Filter flyout closes and you are returned to the Project Reports screen. The re-run report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated. Note: The re-run report will have the identical name as the original run of the report; in other words, you will have two items with the same name in the Project Reports list. Copy to New Report The Copy to New Report function is essentially a save as feature: when you copy to new report, you create a new report using the selections of a previously created report as the default selections. You can then edit those selections before saving the new report, or just create a new report name. 1. From the Project Reports screen, click anywhere in the row of the desired report EXCEPT the Projects column. A flyout opens with a list of report details and several action buttons.

35 March 2016 Page 31 of Scroll to the bottom of the flyout and click Copy to New Report. A flyout opens that displays the previously selected date range and report types, but with a blank for report name. 3. Enter a new report name in Name. 4. If desired, change selections in Date Range and Report Types. 5. Click Next to proceed to the Filters flyout. 6. If desired, change the filter criteria. 7. Click Save. The Filter flyout closes and you are returned to the Project Reports screen. Your new report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated. Delete a Report 1. From the Project Reports screen, click anywhere in the row of the desired report EXCEPT the Projects column. A flyout opens with a list of report details and several action buttons. 2. At the top of the flyout, click Delete Report. A popup asks you to confirm the deletion. 3. Click Yes, delete it. You are returned to the Project Reports screen, and the report instance is deleted from the list.

36 March 2016 Page 32 of 68 User Reports User reports are reports you create for one or more selected user groups. When you add a report, the application generates a ZIP archive containing the various report types you ve selected in the New Report flyout. When you navigate to the User Reports screen, you will see a list of report packages that have already run. This will be blank the first time you access the screen. From this screen you will be able to run a new report from scratch, view the details of previously run report packages, and rerun previously run report packages. Find a Report 1. To quickly find a report in the report list, enter text into the Find a Report box. The list will automatically filter to show only those reports whose names contain the text. View Details of Previously Run Report 1. To view the user groups associated with a report, click under the Users column in that report s row. The Filters flyover opens on the right, displaying the selected user groups. 2. To view all other details about a report, click anywhere in the report s row except the Users column. A flyout opens that displays the Report Name, Date Range, Report Types, Start Time and End Time when the report was run, Duration of the report run, and Status.

37 March 2016 Page 33 of 68 Add New Report To run a report, you must select a report type, then select the user groups you wish to report on. 1. On the User Reports screen, click Add Report. The New Report flyout opens. 2. In Name, enter a title for the report. 3. In Date Range, select one of the following options: 7 Days, 30 Days, or All. 4. Under Report Types, select one or more report types. (For samples, see the appendices.) Types of User Reports Developer File Coverage Report Description Lists count of files reviewed by type by each developer. Developer Defect Report Lists total number of issues by category for each developer. Developer Project Report Lists all files scanned by each developer. Report includes the most recent date file was scanned by a developer, defect counts, suppression counts, and lines of code for each file. Developer Usage Report Lists total defect counts, suppression counts as well as first and last time tool was used by developer. 5. Click Next. (Next will only be available when you ve entered a name AND selected at least one report type.) The flyout is now titled with your report name, and the Included Groups section appears. 6. In the Included Groups section, select one or more groups by clicking the Add button next to each OR click Add All to select them all. 7. Click Save. The Filter flyout closes and you are returned to the User Reports screen. Your new report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated.

38 March 2016 Page 34 of 68 Download a Report 1. From the User Reports screen, click anywhere in the row of the desired report EXCEPT the Users column. A flyout opens with a list of report details and several action buttons. 2. Scroll to the bottom of the flyout and click Download Report. A ZIP file of the report results is automatically saved to your Downloads folder. 3. Open the ZIP file. A separate CSV file is displayed for each report type you selected. Note: The downloaded ZIP files will be named UserReports with an appended run date, and CSV files will be named by report type. The name you entered under Report Name appears ONLY on the User Reports screen. Re-Run an Existing Report There are times you may want to run a report identical to one you ve previously run. Re-Run Report allows you to do this. 1. From the User Reports screen, click anywhere in the row of the desired report EXCEPT the Users column. A flyout opens with a list of report details and several action buttons. 2. Scroll to the bottom of the flyout and click Re-Run Report. The Filter flyout closes and you are returned to the Project Reports screen. The re-run report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated. Note: The re-run report will have the identical name as the original run of the report; in other words, you will have two items with the same name in the User Reports list. Copy to New Report The Copy to New Report function is essentially a save as feature: when you copy to new report, you create a new report using the selections of a previously created report as the default selections. You can then edit those selections before saving the new report, or just create a new report name. 1. From the User Reports screen, click anywhere in the row of the desired report EXCEPT the Users column. A flyout opens with a list of report details and several action buttons.

39 March 2016 Page 35 of Scroll to the bottom of the flyout and click Copy to New Report. A flyout opens that displays the previously selected date range and report types, but with a blank for report name. 3. Enter a new report name in Name. 4. If desired, change selections in Date Range and Report Types. 5. Click Next. A list of the users to be included in the report is displayed. 6. Click Save. The Filter flyout closes and you are returned to the User Reports screen. Your new report should be listed at the top of the screen, with its status as Scheduled. The status will toggle to Complete when the report is generated. Delete a Report 1. From the User Reports screen, click anywhere in the row of the desired report EXCEPT the Users column. A flyout opens with a list of report details and several action buttons. 2. At the top of the flyout, click Delete Report. A popup asks you to confirm the deletion. 3. Click Yes, delete it. You are returned to the User Reports screen, and the report instance is deleted from the list.

40 March 2016 Page 36 of 68 4 Rulepacks A rulepack is a JAR file containing rules and guidance used by the SecureAssist plugin to scan your projects. You can load and distribute multiple rulepacks to your plugin users by enabling and disabling them on the Portal. Rulepacks can also be specific and bound to a certain group of SecureAssist plugin users. SecureAssist provides a default rulepack, but you can also create and edit your own custom rulepacks using the Rulepack Configurator that comes bundled with the SecureAssist plugins. (Go to the Guides & Documentation page on the Codiscope website and click Rules & Rulepacks.) Note: You can have more than one default and/or custom rulepacks active. You can also have rulepacks assigned to specific groups by having a user with the group manager role uploading the rulepack. Find a Rulepack 1. To quickly find a rulepack in the rulepack list, enter text into the Find a Rulepack box. The list will automatically filter to show only those rulepacks whose names contain the text. View Details of Rulepack 1. To view all details about a rulepack, click anywhere in the rulepack s row. A flyout displays the following details. All fields have their values set in Rulepack Configurator and are read-only in SecureAssist Portal EXCEPT Status. Field Name Status (updateable) Version Plugin Support Type Access Uploaded Description Name of uploaded rulepack. Enabled or Disabled; indicated by a color bar in the left margin. More than one rulepack can be enabled at one time. Click on this toggle to change the rulepack s status. Version number of uploaded rulepack. List of plugin versions supported by this rulepack. Type of rulepack (Default or Custom). Level of access (Restricted or Unbounded). A restricted rulepack is accessible only by specified plugin users. Date the rulepack was uploaded.

41 March 2016 Page 37 of 68 Upload a Rulepack 1. On the Rulepacks screen, click Upload Rulepack. 2. Browse to locate the desired rulepack, then click Open to upload it. You are returned to Rulepacks, and the new rulepack will appear in the list with a Status of Disabled. Enable/Disable a Rulepack Important! It s recommended to have the most up-to-date rulepack enabled and all outdated versions disabled, as older versions may contain outdated rules. 1. On the Rulepacks screen, view the list of uploaded rulepacks. Enabled rulepacks are indicated by a green bar in the left margin; disabled rulepacks are indicated by a brown bar. 2. Single-click the row of the desired rulepack. The editing flyout appears on the right.

42 March 2016 Page 38 of Under Status, click Enabled or Disabled to select the desired status. The flyout immediately closes, and the status of the rulepack is updated. Changes to a rulepack become available to users the next time they begin a session. Download a Rulepack to Edit on Your Machine 1. On the Rulepacks screen, single-click the row of the desired rulepack. The editing flyout appears on the right. 2. Click Download. A popup asks you to confirm the download. 3. Click Keep. The rulepack file is downloaded to your computer. You can now edit it using Rulepack Configurator. Delete a Rulepack A rulepack can be deleted only if no prior project reports were run using it. If a project report was generated involving the rulepack, the rulepack can be disabled but not deleted. Project reports are based on existing and active rulepacks. 1. On the Rulepacks screen, single-click the row of the desired rulepack. The editing flyout appears on the right. 2. Click Delete Rulepack. A popup asks you to confirm the deletion. 3. Click OK. The flyout closes, and the rulepack is removed from the list.

43 March 2016 Page 39 of 68 5 Manage The Manage function allows you to administer users, groups, and roles used in SecureAssist Portal, as well as your personal account. Portal Users The Portal Users screen lets you manage the various SecureAssist Portal users. These are not plugin users, but the administrators of your SecureAssist system (portal administrators, rulepack administrators, and users who view and generate reports based on plugin user activity). Other than the default Portal server administrator, each user is a local user whose credentials are either stored in the Portal database and authenticated against it or authenticated using LDAP. The default Portal server administrator will always be a local user. However, it can be disabled once other portal users are created. Find a Portal User 1. To quickly find a user in the portal user list, enter text into the Find a Portal User box. The list will automatically filter to show only those portal users whose names contain the text. Add a Portal User 1. On the Portal Users screen, click Add Portal User. The New User flyout opens. 2. Enter a user name in Name. The user name can contain letters and numbers only, NO spaces or special characters. 3. Enter a temporary password in Password for the new user and then confirm it. The password must contain at least six characters, including at least one capital letter, one lowercase letter, and one number. The user will be able to change the password when they log into the system. 4. Click Next to continue. The Roles flyout opens. 5. Select the role or roles you wish to assign to the user by clicking the associated slide buttons, then click Next. The Managed Users flyout opens. 6. If desired, select one or more users to manage, then click Next. The Managed Projects flyout opens.

44 March 2016 Page 40 of If desired, select one or more projects to manage, then click Save. The flyout closes, and the new user is added to the Portal Users list in alphabetical order with a Status of Active. Activate/Deactivate a Portal User 1. On the Portal Users screen, single-click the name of the desired portal user. The editing flyout appears on the right. 2. To change the user s status, click the slide button next to the Status, then click Save. The flyout is closed, and the user s new status is displayed on the Portal Users list. Change/Reset a Portal User s Password 1. On the Portal Users screen, single-click the name of the desired portal user. The editing flyout appears on the right. 2. Click Change Password. The New Password and Confirm New Password fields appear. 3. Enter and confirm a new password for the user. Passwords must contain at least six characters, including at least one capital letter, one lowercase letter, and one number. 4. Click Save. The flyout is closed, and you are returned to the Portal Users list. Edit a Portal User s Assigned Roles 1. On the Portal Users screen, single-click in the Roles column of the desired user s row. The Roles flyout appears on the right. 2. Select the role or roles you wish to assign to the user by clicking the associated slide buttons, then click Save. The flyout closes, and the number of roles for the user is updated in the Portal Users list. Edit a Portal User s Managed Users 1. On the Portal Users screen, single-click in the Users column of the desired user s row. The Managed Users flyout appears. 2. Select the users you wish to assign to the portal user by clicking the Add and Remove buttons, then click Save. The flyout closes, and the number of users for the portal user is updated in the Portal Users list.

45 March 2016 Page 41 of 68 Plugin User Groups The Plugin User Groups screen is where you can create and manage groups of client-side plugin users of SecureAssist. The groups you create here can then be used to filter data in the User Reports section of SecureAssist Portal. There are no default user groups, so the Plugin User Group screen will be blank the first time you visit it. As you add groups, they will be listed on the screen. Note: You can assign individuals to a plugin user group here OR on the Plugin Users screen. Find a Plugin User Group 1. To quickly find a plugin user group in the group list, enter text into the Find a Group box. The list will automatically filter to show only those plugin user groups whose names contain the text. Add a Plugin User Group 1. On the Plugin User Group screen, click Add Group. The New User Group flyout opens. 2. In Group Name, enter a name for the new group. 3. In Description, enter a brief description of the group. 4. Click the Add button next to each user you wish to add to the group OR click Add All to add all users. 5. Click Save. The flyout closes, and your new group is added to the Plugin User Groups list.

SecureAssist Enterprise Portal User Guide June 2016

SecureAssist Enterprise Portal User Guide June 2016 SecureAssist Enterprise Portal User Guide June 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist Enterprise Portal User Guide August 2016

SecureAssist Enterprise Portal User Guide August 2016 SecureAssist Enterprise Portal User Guide August 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist Enterprise Portal User Guide April 2017

SecureAssist Enterprise Portal User Guide April 2017 SecureAssist Enterprise Portal User Guide April 2017 Copyright 2017 by Synopsys, Inc.. All rights reserved worldwide. No part or parts of this documentation may be reproduced, translated, stored in any

More information

SecureAssist Enterprise Portal User Guide April 2017

SecureAssist Enterprise Portal User Guide April 2017 SecureAssist Enterprise Portal User Guide April 2017 Copyright 2017 by Synopsys, Inc.. All rights reserved worldwide. No part or parts of this documentation may be reproduced, translated, stored in any

More information

SecureAssist Enterprise Portal User Guide June 2018

SecureAssist Enterprise Portal User Guide June 2018 SecureAssist Enterprise Portal User Guide June 2018 Copyright 2018 by Synopsys, Inc. All rights reserved worldwide. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist Eclipse Plugin User Guide December 2015

SecureAssist Eclipse Plugin User Guide December 2015 SecureAssist Eclipse Plugin User Guide December 2015 Copyright 2015 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist IntelliJ Plug-in User Guide June 2016

SecureAssist IntelliJ Plug-in User Guide June 2016 SecureAssist IntelliJ Plug-in User Guide June 2016 Copyright 2016 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored in any electronic

More information

SecureAssist Rulepack Configurator v User Guide December 2015

SecureAssist Rulepack Configurator v User Guide December 2015 SecureAssist Rulepack Configurator v. 2.4.1 User Guide December 2015 Copyright 2015 by Codiscope, LLC. All rights reserved. No part or parts of this documentation may be reproduced, translated, stored

More information

SecureAssist Eclipse Plugin User Guide April 2018

SecureAssist Eclipse Plugin User Guide April 2018 SecureAssist Eclipse Plugin User Guide April 2018 Copyright 2018 by Synopsys, Inc.. All rights reserved worldwide. No part or parts of this documentation may be reproduced, translated, stored in any electronic

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

SmartPatch. Installation Manual Version 6.x

SmartPatch. Installation Manual Version 6.x SmartPatch Installation Manual Version 6.x Copyright Copyright 2017 Brand-Rex Ltd. All rights reserved. No part of this publication or of the SmartPatch software, in source code or object code form, may

More information

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

Release Date September 30, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Adeptia Suite 5.0 Installation Guide Release Date September 30, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60654, USA Copyright Copyright 2000-2009 Adeptia, Inc. All rights reserved.

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

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

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

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

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM IBM Maximo Anywhere Version 7 Release 6 Planning, installation, and deployment IBM Note Before using this information and the product it supports, read the information in Notices on page 65. This edition

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Artix Orchestration Installation Guide. Version 4.2, March 2007

Artix Orchestration Installation Guide. Version 4.2, March 2007 Artix Orchestration Installation Guide Version 4.2, March 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

MITEL. Live Content Suite. Mitel Live Content Suite Installation and Administrator Guide Release 1.1

MITEL. Live Content Suite. Mitel Live Content Suite Installation and Administrator Guide Release 1.1 MITEL Live Content Suite Mitel Live Content Suite Installation and Administrator Guide Release 1.1 NOTICE The information contained in this document is believed to be accurate in all respects but is not

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.6.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

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

Arcot RiskFort Quick Installation Guide

Arcot RiskFort Quick Installation Guide Arcot RiskFort Quick Installation Guide (for Unix Platforms) Version 2.2.6 455 West Maude Avenue, Sunnyvale, CA 94085 Version 2.2.6 Part Number: RF-0226-QIGU-10 Copyright 2010 Arcot Systems, Inc. All rights

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

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

INSTALL GUIDE BIOVIA INSIGHT 2016

INSTALL GUIDE BIOVIA INSIGHT 2016 INSTALL GUIDE BIOVIA INSIGHT 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

Oracle Database Express Edition

Oracle Database Express Edition Oracle Database Express Edition Getting Started Guide 11g Release 2 (11.2) E18585-04 July 2011 Welcome to Oracle Database Express Edition (Oracle Database XE). This guide gets you quickly up and running

More information

ER/Studio Enterprise Portal 1.1 Installation Guide

ER/Studio Enterprise Portal 1.1 Installation Guide ER/Studio Enterprise Portal 1.1 Installation Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

HP IDOL Site Admin. Software Version: Installation Guide

HP IDOL Site Admin. Software Version: Installation Guide HP IDOL Site Admin Software Version: 10.9 Installation Guide Document Release Date: March 2015 Software Release Date: March 2015 Legal Notices Warranty The only warranties for HP products and services

More information

About One Identity Quick Connect for Base Systems 2.4.0

About One Identity Quick Connect for Base Systems 2.4.0 One Identity Quick Connect for Base Systems 2.4.0 October 2018 These release notes provide information about the One Identity Quick Connect for Base Systems release. About New features Resolved issues

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on WebLogic Note Before using this information and the product it supports, read the information in Notices

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.2 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

User Manual. (updated March 27, 2014) Information in this document is subject to change without notice.

User Manual. (updated March 27, 2014) Information in this document is subject to change without notice. User Manual (updated March 27, 2014) Information in this document is subject to change without notice. Copyright 2013-2014, Exacq Technologies, Inc. All rights reserved. Exacq Technologies is a trademark

More information

Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud

Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud E67875-06 May 2018 Oracle Cloud Getting Started with Remote Data Connector for Oracle Analytics Cloud, E67875-06 Copyright

More information

2017/11/10 10:40 1/2 Setup. Be aware of the updating procedure of VISUAL PLANNING, see UPDATE VISUAL PLANNING

2017/11/10 10:40 1/2 Setup. Be aware of the updating procedure of VISUAL PLANNING, see UPDATE VISUAL PLANNING 2017/11/10 10:40 1/2 Setup Setup INTRODUCTION The setup procedure for VISUAL PLANNING 5.3 depends on the version: VISUAL PLANNING ONE VISUAL PLANNING ESSENTIAL VISUAL PLANNING ENTERPRISE Be aware of the

More information

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009

Product Documentation. ER/Studio Portal. Installation Guide. Version 1.5 Published October 8, 2009 Product Documentation ER/Studio Portal Installation Guide Version 1.5 Published October 8, 2009 2nd Edition Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Primavera Unifier Installation and Setup Guide. Version /12

Primavera Unifier Installation and Setup Guide. Version /12 Primavera Unifier Installation and Setup Guide Version 9.11.0.0 12/12 COPYRIGHT Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle

More information

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM IBM Maximo Anywhere Version 7 Release 6 Planning, installation, and deployment IBM Note Before using this information and the product it supports, read the information in Notices on page 71. This edition

More information

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide One Identity Active Roles 7.2 Replication: Best Practices and Troubleshooting Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The

More information

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

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

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 Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E Revision 2

Oracle Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E Revision 2 Oracle Retail Customer Engagement Cloud Service (Relate) Installation Guide - Installer Release 11.4 E79512-01 Revision 2 September 2016 Oracle Retail Customer Engagement Cloud Service (Relate), Installation

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

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

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario

Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Testing and Restoring the Nasuni Filer in a Disaster Recovery Scenario Version 7.8 April 2017 Last modified: July 17, 2017 2017 Nasuni Corporation All Rights Reserved Document Information Testing Disaster

More information

1Integrate for ArcGIS Installation Guide. Server Edition

1Integrate for ArcGIS Installation Guide. Server Edition 1Integrate for ArcGIS Installation Guide Server Edition Product version: v 2.1 Document version: v 1.9 Document date: 03/08/2018 Copyright 2018 1Spatial plc and its affiliates. All rights reserved. Other

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

AvePoint Online Services for Partners 2

AvePoint Online Services for Partners 2 AvePoint Online Services for Partners 2 User Guide Service Pack 1 Issued June 2017 Table of Contents What s New in this Guide...4 About...5 Submitting Documentation Feedback to AvePoint...6 Browser Support

More information

Bomgar Vault Server Installation Guide

Bomgar Vault Server Installation Guide Bomgar Vault 17.2.1 Server Installation Guide 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

HPE Security Fortify Plugins for Eclipse

HPE Security Fortify Plugins for Eclipse HPE Security Fortify Plugins for Eclipse Software Version: 17.20 Installation and Usage Guide Document Release Date: November 2017 Software Release Date: November 2017 Legal Notices Warranty The only warranties

More information

Configuring Shared Links for Web Access

Configuring Shared Links for Web Access Configuring The Web Access feature lets you access CIFS share data or NFS export data stored in the Nasuni Filer using a Web browser. Some of the actions you can perform depend on the capabilities of the

More information

Arcot WebFort Quick Installation Guide

Arcot WebFort Quick Installation Guide Arcot WebFort Quick Installation Guide (for Windows) Version 6.2 455 West Maude Avenue, Sunnyvale, CA 94085 Version 6.2 Part Number: WF-0062-0QIG-10 Copyright 2010 Arcot Systems, Inc. All rights reserved.

More information

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2011 Page 1 of 99 What is The Connector? The Connector is a Microsoft Project

More information

SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6. Getting Started Guide

SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6. Getting Started Guide SonicWall Secure Mobile Access SMA 500v Virtual Appliance 8.6 Getting Started Guide Copyright 2017 SonicWall Inc. All rights reserved. SonicWall is a trademark or registered trademark of SonicWall Inc.

More information

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide

Authentication Services ActiveRoles Integration Pack 2.1.x. Administration Guide Authentication Services ActiveRoles Integration Pack 2.1.x Administration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

SAS Profitability Management 1.3. Installation Instructions

SAS Profitability Management 1.3. Installation Instructions SAS Profitability Management 1.3 Installation Instructions Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., SAS Profitability Management 1.3 Installation

More information

Oracle Endeca Information Discovery

Oracle Endeca Information Discovery Oracle Endeca Information Discovery Getting Started Guide Version 3.2.0 Revision A January 2017 Copyright and disclaimer Copyright 2003, 2017, Oracle and/or its affiliates. All rights reserved. Oracle

More information

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr Getting Started Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr Getting Started Guide Safyr 7.1 This product is subject to the

More information

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide

Digipass Plug-In for SBR. SBR Plug-In SBR. Steel-Belted RADIUS. Installation G uide Digipass Plug-In for SBR SBR Plug-In SBR Steel-Belted RADIUS Installation G uide Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product

More information

Installation Guide Worksoft Certify

Installation Guide Worksoft Certify Installation Guide Worksoft Certify Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Certify Installation Guide Version 9.0.3 Copyright 2017 by Worksoft,

More information

Log & Event Manager UPGRADE GUIDE. Version Last Updated: Thursday, May 25, 2017

Log & Event Manager UPGRADE GUIDE. Version Last Updated: Thursday, May 25, 2017 UPGRADE GUIDE Log & Event Manager Version 6.3.1 Last Updated: Thursday, May 25, 2017 Retrieve the latest version from: https://support.solarwinds.com/success_center/log_event_manager_(lem)/lem_documentation

More information

Central Administration Console Installation and User's Guide

Central Administration Console Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Central Administration Console Installation and User's Guide SC27-2808-04 IBM Tivoli Storage Manager FastBack for Workstations Version

More information

McAfee epolicy Orchestrator Release Notes

McAfee epolicy Orchestrator Release Notes Revision B McAfee epolicy Orchestrator 5.3.3 Release Notes Contents About this release Enhancements Resolved issues Known issues Installation instructions Getting product information by email Find product

More information

INSTALL GUIDE BIOVIA INSIGHT 2.6

INSTALL GUIDE BIOVIA INSIGHT 2.6 INSTALL GUIDE BIOVIA INSIGHT 2.6 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration TM1 9.5 Quick Installation and Upgrade Guide Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration 2 Copyright and Trademarks Licensed Materials - Property of IBM.

More information

Empirica Signal. Windows 2003/2008 Server Installation and Upgrade Instructions. Release January 2016

Empirica Signal. Windows 2003/2008 Server Installation and Upgrade Instructions. Release January 2016 Empirica Signal Windows 2003/2008 Server Installation and Upgrade Instructions Release 7.3.3.5.362 January 2016 Oracle Health Sciences Empirica Signal 7.3.3.5.362 Updated 15-Jan-2016 Part Number: E71053-01

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

EnterpriseTrack Reporting Data Model Configuration Guide Version 17

EnterpriseTrack Reporting Data Model Configuration Guide Version 17 EnterpriseTrack EnterpriseTrack Reporting Data Model Configuration Guide Version 17 October 2018 Contents About This Guide... 5 Configuring EnterpriseTrack for Reporting... 7 Enabling the Reporting Data

More information

CA Output Management Web Viewer

CA Output Management Web Viewer CA Output Management Web Viewer Installation Guide Release 12.1.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Dell License Manager Version 1.2 User s Guide

Dell License Manager Version 1.2 User s Guide Dell License Manager Version 1.2 User s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer Installation and Setup Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

The Connector. Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual

The Connector.  Version 1.2 Microsoft Project to Atlassian JIRA Connectivity. User Manual The Connector Version 1.2 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2008 www.the-connector.com Page 1 of 86 Copyright and Disclaimer All rights

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

CA XCOM Data Transport Gateway

CA XCOM Data Transport Gateway CA XCOM Data Transport Gateway Product Guide Release 11.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Deploying Intellicus Portal on IBM WebSphere. Version: 7.3

Deploying Intellicus Portal on IBM WebSphere. Version: 7.3 Deploying Intellicus Portal on IBM WebSphere Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be

More information

1.0. Quest Enterprise Reporter Discovery Manager USER GUIDE

1.0. Quest Enterprise Reporter Discovery Manager USER GUIDE 1.0 Quest Enterprise Reporter Discovery Manager USER GUIDE 2012 Quest Software. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

DocAve. Release Notes. Governance Automation Service Pack 7. For Microsoft SharePoint

DocAve. Release Notes. Governance Automation Service Pack 7. For Microsoft SharePoint DocAve Governance Automation Service Pack 7 Release Notes For Microsoft SharePoint Released March, 2016 Governance Automation SP7 Update Details Refer to the Updating Your Governance Automation Instance

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

akkadian Provisioning Manager Express

akkadian Provisioning Manager Express akkadian Provisioning Manager Express Version 4.11.04 Release Notes September 14 th, 2017 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2017 Akkadian Labs, LLC. All

More information

Working with Database Connections. Version: 7.3

Working with Database Connections. Version: 7.3 Working with Database Connections Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or

More information

Rapid Recovery License Portal Version User Guide

Rapid Recovery License Portal Version User Guide Rapid Recovery License Portal Version 6.1.0 User Guide 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Using ZENworks with Novell Service Desk

Using ZENworks with Novell Service Desk www.novell.com/documentation Using ZENworks with Novell Service Desk Novell Service Desk 7.1 April 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or

More information

Dell Statistica. Statistica Enterprise Server Installation Instructions

Dell Statistica. Statistica Enterprise Server Installation Instructions Dell Statistica Statistica Enterprise Server Installation Instructions 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

ZL UA Exchange 2013 Archiving Configuration Guide

ZL UA Exchange 2013 Archiving Configuration Guide ZL UA Exchange 2013 Archiving Configuration Guide Version 8.0 January 2014 ZL Technologies, Inc. Copyright 2014 ZL Technologies, Inc.All rights reserved ZL Technologies, Inc. ( ZLTI, formerly known as

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

NTP Software File Auditor for Hitachi

NTP Software File Auditor for Hitachi NTP Software File Auditor for Hitachi Installation Guide Version 3.3 This guide details the method for the installation and initial configuration of NTP Software File Auditor for NAS, Hitachi Edition,

More information