Creative assets management. MySQL Install Guide

Size: px
Start display at page:

Download "Creative assets management. MySQL Install Guide"

Transcription

1 Creative assets management MySQL Install Guide

2 Contact Extensis 1800 SW First Avenue, Suite 500 Portland, OR Toll Free: (800) Phone: (503) Fax: (503) Extensis Europe First Floor, Century House The Lakes Northampton NN4 7SJ United Kingdom Phone: +44(0) Fax +44 (0) Celartem, Inc. Press Contact Phone: (503) x129 Customer Service Web/ Phone: (800) Technical Support Web/ Documentation Feedback Web/ Extensis, a division of Celartem, Inc. This document and the software described in it are copyrighted with all rights reserved. This document or the software described may not be copied, in whole or part, without the written consent of Extensis, except in the normal use of the software, or to make a backup copy of the software. This exception does not allow copies to be made for others. Licensed under U.S. patents issued and pending. Extensis is a registered trademark of Extensis. The Extensis logo, Extensis Library, Font Reserve, Font Reserve Server, Font Vault, and Font Sense, Portfolio, Portfolio Server, Portfolio NetPublish, NetPublish, Suitcase and Suitcase Server are all trademarks of Extensis. Celartem, Celartem, Inc., the Celartem logo, PixelLive and PixelSafe are trademarks of Celartem, Inc. Adobe, Acrobat, Illustrator, Photoshop, and PostScript are trademarks of Adobe Systems, Incorporated. Apple, AppleScript, Bonjour, FontSync, Macintosh, Mac OS 9, Mac OS X, PowerPC, and QuickDraw are registered trademarks of Apple Computer, Inc. Microsoft, Internet Explorer, Windows, Windows XP, Windows 2000, Windows NT, Windows ME and Windows 98 are registered trademarks of Microsoft Corporation. Intel is a registered trademark of Intel. All other trademarks are the property of their respective owners. code for such components are specified in the copyright notice file, LICENSES.TXT delivered with this product. Please refer to these licenses for information regarding use of these software components. Extensis warrants the disks on which the software is recorded to be free from defects in materials and faulty workmanship under normal use for a period of thirty (30) days from the original date of purchase. If you purchased this product directly from Extensis, and if a defect occurs during the 30-day period, you may return the disks to Extensis for a free replacement. All products submitted for replacement must be registered with Extensis before replacement. Extensis products purchased from resellers are warranted by the reseller and are covered by the reseller s return policy. This warranty is limited to replacement and shall not encompass any other damages, including but not limited to loss of profit, and special, incidental, or other similar claims. This software is provided on an as is basis. Except for the express warranty set forth above, Extensis makes no other warranties, either explicit or implied, regarding the enclosed software s quality, performance, merchantability, or fitness for a particular purpose. Portions of this product use software components developed through various open source projects. The licenses and availability of source

3 Portfolio SQL Connect Installing MySQL on Mac OS X This installation procedure is detailed, and as of this writing, necessary to properly install MySQL , MyODBC and create your SQL catalog. Due to the nature of open source software, this procedure may be simplified in the future as upgrades are implemented to installers and the source code. These installation instructions assume that you are running Mac OS X 10.4 Server (Tiger) or later. Install Portfolio For the most current MySQL setup and installation instructions please visit: Before you install the MySQL database engine, you need to first install Portfolio Client, Server and SQL Connect. SQL Connect is automatically installed when you install Portfolio Server. Installers can be found on your product CD, or downloaded directly from the Extensis website To install on an Intel based Macintosh, you will also need the Extensis custom ODBC driver. Use the contact information on your service agreement to contact your priority support representative for this driver. Remove any previous MySQL installation Based on your version of Mac OS X, you may need to remove a previous installation of MySQL. Mac OS X Server comes with MySQL automatically installed. Adobe Version Cue uses a version of MySQL. To provide a clean installation, disable Version Cue before proceeding with the installation. For Mac OS X 10.4 (Tiger) Server, the default installation of MySQL is in a unique location, and will not interfere with your new installation. Unless you have previously installed a new version of MySQL, you can go on to install MySQL. For all other versions of Mac OS X, use the procedure below to manually ensure that there aren t any previous versions of MySQL installed. To manually check if MySQL is installed: 1. Launch the Terminal. 2. Type cd/usr/local 3. Type ls 4. If you see any references to MySQL, you have a previous version of MySQL installed. Use the script from the following website to remove the installation: If desired, you can also use the manual method below to remove the previous install. To manually remove a MySQL installation: 1. Launch the Terminal. 2. Type sudo rm -rf /usr/local/mysql* 3. At the prompt, enter your administrator password.

4 MySQL Installation and Setup Install MySQL 1. Download the MySQL installer from Portfolio SQL Connect 8 has been fully tested with MySQL versions and Use newer versions of MySQL at your own risk. [mysqld] default-character-set=utf8 [client] default-character-set=utf8 2. Double-click downloaded file to mount the disk image. 3. To install MySQL, double-click the installer package. Follow the installer instructions to complete the installation. 4. When the MySQL installation is complete, doubleclick MySQLStartupItem.pkg installer package to install it as well. Configure the database server 1. Log in to Mac OS X as any user with Admin privileges. 2. Launch the Terminal utility from the /Applications/Utilities folder. 3. At the $ prompt, enter the following command to edit the my.cnf file: If the /etc/my.cnf file is not empty, but has some configuration settings already specified, just look for the sections [mysqld] and [client] and add the default-character-set=utf8 option to each section if not already present. 6. Press Ctrl-X to exit Pico. At the prompt, press Y to save your changes to the file. sudo pico /etc/my.cnf 4. At the Password prompt, enter your user password. The password must be an Admin level password. 5. When Pico launches, you are presented with an empty file. Add the following lines to the file:

5 Portfolio SQL Connect Starting the MySQL Server Every time you restart the computer, you must restart the MySQL database server. 1. Launch the Terminal application, if is not already open. 2. Use the following command to start the MySQL server: sudo /Library/StartupItems/MySQLCOM/ MySQLCOM start If prompted, enter your user password. The password must be an Admin level password. Connecting to the server and creating a database You must create an initial database for MySQL to serve. Use the following procedure to create and serve databases as needed. 1. Log in to Mac OS X as any user with Admin privileges. 2. Launch the Terminal utility from the Hard Disk/Applications/Utilities folder. 4. Launch the MySQL client with the following command: 5. Create the database with the following command. Replace <databasename> with an alphanumeric database name. create database <databasename>; Remember to end all MySQL commands with a semicolon (;). Database names can be 31 characters long, and names can only use alphanumeric characters. Do not use underscores _ or any other characters in database names. While names are not case sensitive, it is best to keep the name all in one case, upper or lower. 6. At the mysql> prompt type the following commands. Substitute dbname with your database name and dbpassword with a password of your choice. Press Return after the semi-colon at the end of each command: GRANT ALL PRIVILEGES ON dbname.* TO localhost IDENTIFIED BY dbpassword WITH GRANT OPTION; This returns the following: Query OK, 0 rows affected (0.00sec) MySQL> sudo /usr/local/mysql/bin/mysql -u root At the Password prompt, enter your user password. The password must be an Admin level password. This launches the MySQL client. You should see a mysql> prompt.

6 MySQL Installation and Setup Now, enter the next command: GRANT ALL PRIVILEGES ON dbname.* TO % IDENTIFIED BY dbpassword WITH GRANT OPTION; This returns the following: Query OK, 0 rows affected (0.00sec) MySQL> This creates a new user named portsql and gives them full privileges to your database. Now, enter the final command: 9. Enter the following command to stop the MySQL client: quit; 10. It is now safe to close the Terminal window. Install MyODBC The Connector/MyODBC driver allows SQL Connect to communicate with the MySQL database. The Connector/MyODBC driver must be installed on the server that will run Portfolio Server. FLUSH PRIVILEGES; This tells the server to reload the grant privileges. 7. When finished creating the database, enter the following command to stop the MySQL client: quit; 8. To test the new user and connection to the database, enter the following command in the Terminal window: /usr/local/mysql/bin/mysql -u portsql -p To install Connector/MyODBC on Intel-based systems: 1. For Intel-based systems, request the most current MyODBC driver from your Extensis Priority Support representative. Use the contact information found on your Annual Service Agreement (ASA) to contact your representative. Place a copy of this driver on your server. SQL Connect 8 for Mac OS X 10.4 (Tiger) Server has been fully tested with on PowerPCbased systems and the custom Extensis MyODBC driver on Intel-based systems. Use newer versions of MyODBC at your own risk. 2. Launch the Terminal. 3. Type cd/<location of custom Extensis Connector> 4. Type copy libmyodbc3.dylib /usr/lib Enter the password for the portsql user that you created in the previous step. If this command fails, type the following command: sudo cp libmyodbc3.dylib /usr/lib If the MySQL monitor launches and you see the mysql> prompt, you have successfully connected to the server with the new user.

7 Portfolio SQL Connect 5. To confirm that everyone has permission to execute the driver, enter the following command: sudo chmod 755 /usr/lib/libmyodbc3.dylib 6. Launch the ODBC Administrator utility from the Hard Disk/Applications/Utilities folder. 7. From the Drivers tab, select the current MySQL driver and click Remove. 8. Click Add. 9. In the Add dialog box, enter the new driver description of MySQL (minus the quote marks). This description must be entered precisely or the driver will not function properly. 10. Click Choose and select the new driver, or type in the location of the new driver: /usr/lib/libmyodbc3.dylib 11. Click OK and then click Apply. 12. The ODBC Administrator utility can sometimes fail to save your settings. To ensure that the settings are saved, close the ODBC Administrator utility, and then relaunch it. If the settings were not saved, return to step 5 of this procedure. To install the Connector / MyODBC on PowerPC- based systems: 1. Download the Connector / MyODBC version installer from the MySQL website: 2. Double click the installer package and follow the instructions. Create the DSN file 1. Launch the ODBC Administrator utility from the Hard Disk/Applications/Utilities folder. 2. Click the lock icon in the lower-left hand corner of the ODBC Administrator window and enter your Mac OS X username and password when prompted. 3. From the User DSN tab, click Add, select the ODBC driver name and click OK. 4. In the Data Source Name (DSN) field, enter a name for your new DSN. This will be the name of your Portfolio catalog. Underscores and spaces are not allowed in the DSN name. You may also enter a description if desired. 5. Click the Add button four times to add four new keywords. 6. Double-click each Keyword and Value and edit them to match the following values. Use the database name that your created earlier in the setup process, and the password value for the portsql user. Keyword SERVER USER DATABASE PASSWORD Value localhost portsql <yourdatabasename> <portsqlpassword> Various versions of the MyODBC installer can create default keywords that can interfere with the correct operation of SQL Connect. If by default there are additional keywords in the DSN, remove those keywords.

8 MySQL Installation and Setup The MySQL Administrator application 7. Click OK to save the DSN and associated keywords. 8. Click Apply to apply the newly created DSN and ODBC settings. For convenience, and easy maintenance, you may wish to use the MySQL Administrator application. This application provides a graphical interface for many common tasks that you would typically accomplish via the command line. This application is useful for creating databases, checking table structure, assigning users as well as backing up and restoring. Download the most current Administrator application from the following location: If you intend to serve multiple Portfolio catalogs, you must create a DSN with a unique name for each catalog. 9. Close the ODBC Administrator. Adding the server and serving the catalog After installing MySQL, the MyODBC/Connector, creating the database and the DSN, you are ready to connect to your catalog from the Portfolio Client. Please see the Portfolio Server for complete instructions about how to connect to a Portfolio Server and serve an MySQL catalog.

9 Portfolio SQL Connect Installing MySQL on Windows Installing MySQL on Windows is a process of installing the MySQL database server, MyODBC, creating a database, creating a DSN and then installing SQL Connect. Use the following procedures to correctly configure MySQL to work with Portfolio on Windows. 4. Choose the Typical option as the setup type and click Next. Install the MySQL Database Server These instructions are for version and SQL Connect 8 has been fully tested with MySQL versions and Use newer versions of MySQL at your own risk. 1. Download the current version of MySQL from The Windows Essentials (x86) or Windows (x86) version can be used. 5. Click Install. 2. Double-click setup.exe to launch the installer. 3. At the Welcome screen of the Setup Wizard click Next.

10 10 MySQL Installation and Setup 6. At this point you are prompted to create an account on the MySQL.com website. If you would like to do so, choose the appropriate option and follow the instructions. 8. At the Welcome screen of the MySQL Server Instance Configuration Wizard, click Next. Otherwise, choose the Skip Sign-up option and click Next. 9. Choose the Detailed Configuration option and click Next. 7. The MySQL Server Database Engine is now installed. At this point the server must be configured, choose the Configure the MySQL Server now option and click Finish.

11 Portfolio SQL Connect Choose the Server Machine option and click Next. 11. Choose the database usage type that best describes your installation. If you are unsure, choose the Multifunctional Database option and click Next. 13. This step of the Wizard allows you to help optimize the database for the number of concurrent connections that you expect to have to a Portfolio catalog. If you are not sure how many concurrent users you will have, choose the Online Transaction Processing (OLTP) option and click Next. 12. Choose a location that will house the database tablespace and click Next. If the current machine will be used to store the Portfolio catalog, the default location will work fine.

12 12 MySQL Installation and Setup 14. Choose the Enable TCP/IP Networking option and click Next. 15. Choose the Best Support for Multilingualism option and click Next. 17. In this step you choose enable the root user and choose a password. Check the Modify Security Settings option, then enter and confirm the new root user password. When finished, click Next. 16. Extensis recommends running the MySQL server as a service. To do so, check the Install as a Windows Service option and choose a Service Name. It is also recommended to launch the MySQL Service automatically, choose the appropriate option and click Next.

13 Portfolio SQL Connect Click Execute to configure the MySQL instance. Install MyODBC Use the following procedure to install and configure MyODBC on Windows. 1. Download MySQL Connector/ODBC driver installer from These instructions are for the version of the MySQL Connector/ODBC driver. SQL Connect 8 has been fully tested with the Connector/ODBC driver versions Use newer versions at your own risk. 2. Close any programs that you have running. 19. Click Finish to close the Wizard. 3. Double click to launch the installer. 4. At the Welcome step of the Installation Wizard, click Next.

14 14 MySQL Installation and Setup 5. Accept the GNU general public license and click Next. 8. Click Finish to close the installer. 6. Scan the ReadMe Information and click Next. 7. Click Next to install MyODBC.

15 Portfolio SQL Connect 15 Create the Database and DSN 1. From the Start menu, choose Start > MySQL > MySQL Server 4.1 > MySQL Command Line Client 8. In the Create New Data Source dialog box, click to highlight the MySQL ODBC 3.51 driver and click Finish. 2. Enter the root user password that you set in step 17 of the MySQL database engine installation. 3. Type the following command to create a database. create database <databasename>; Replace <databasename> with the desired name of your SQL database. 9. In the Connector/ODBC - Add Data Source Name dialog box, to create the DSN, enter the following information on the Login tab: 4. Type exit to close the command line client. 5. Choose Start > Control Panel. 6. Open Administrative Tools and double click Data Sources. 7. In the ODBC Data Source Administrator, from the System DSN tab, click Add. Data Source Name this is the Portfolio catalog name. Description general description of the catalog.

16 16 MySQL Installation and Setup Server enter the IP Address of where the MySQL database engine is installed. User enter a username that has full access rights to the MySQL database. Often the root user is specified. To do so, enter root in this field. Password enter a password for the user above. Database choose the databasename that you created in step Click Test to test the connection to the database. After successfully connecting to the database, click OK to accept the Connector/ODBC settings. The MySQL Administrator application For convenience, and easy maintenance, you may wish to use the MySQL Administrator application. This application provides a graphical interface for many common tasks that you would typically accomplish via the command line. This application is useful for creating databases, checking table structure, assigning users as well as backing up and restoring. Download the most current Administrator application from the following location: Click OK in the ODBC Data Source Administrator dialog box. Finish installation After you have completed the above steps, you can proceed to installing Portfolio Sever and SQL Connect. For further instructions, see the Portfolio Server.

Creative assets management. Visual Basic Guide

Creative assets management. Visual Basic Guide Creative assets management Visual Basic Guide Contact Extensis 1800 SW First Avenue, Suite 500 Portland, OR 97201 Toll Free: (800) 796-9798 Phone: (503) 274-2020 Fax: (503) 274-0530 http://www.extensis.com

More information

MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh

MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh March 11, 2009 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296

More information

VERTECH. VERTECH Central Station Software Installation Manual

VERTECH. VERTECH Central Station Software Installation Manual VERTECH Central Station Software Installation Manual Installation Manual July 2006 1 Table of Contents 1.0 Introduction... 3 2.0 Vertx Access Control System 1.0 Installation Guide... 3 3.0 Vertx Access

More information

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards What You Need: Sonnet Presto or Presto Plus processor upgrade card. Sonnet Presto 8 Enabler Boot diskette. Macintosh

More information

Bitnami MariaDB for Huawei Enterprise Cloud

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

More information

Agilent CytoGenomics 2.5

Agilent CytoGenomics 2.5 Agilent CytoGenomics 2.5 Installation and Administration Guide Research Use Only. Not for Diagnostic Procedures. Agilent Technologies Notices Agilent Technologies, Inc. 2012 No part of this manual may

More information

Bitnami MySQL for Huawei Enterprise Cloud

Bitnami MySQL for Huawei Enterprise Cloud Bitnami MySQL for Huawei Enterprise Cloud Description MySQL is a fast, reliable, scalable, and easy to use open-source relational database system. MySQL Server is intended for mission-critical, heavy-load

More information

Esko. Suite 12 Engines Installation (Beta)

Esko. Suite 12 Engines Installation (Beta) Suite 12 Engines Installation (Beta) Contents 1. Before installing Suite 12... 3 1.1 How to change Data Execution Prevention (DEP) Settings...3 1.2 How to change the password policy... 4 2. How to install

More information

INSTALLATION GUIDE. Trimble AllTrak Software

INSTALLATION GUIDE. Trimble AllTrak Software INSTALLATION GUIDE Trimble AllTrak Software INSTALLATION GUIDE Trimble AllTrak software Version 3.5 Revision A_ENG November 2012 F Trimble Navigation Limited Building Construction 5475 Kellenburger Road

More information

Studio Manager. for / Installation Guide. Keep This Manual For Future Reference.

Studio Manager. for / Installation Guide. Keep This Manual For Future Reference. Studio Manager for / Installation Guide Keep This Manual For Future Reference. E i Important Information Exclusion of Certain Liability Trademarks Copyright Manufacturer, importer, or dealer shall not

More information

CaliberRDM. Installation Guide

CaliberRDM. Installation Guide CaliberRDM Installation Guide Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. CaliberRDM contains derivative

More information

RSA WebCRD Getting Started

RSA WebCRD Getting Started RSA WebCRD Getting Started User Guide Getting Started With WebCRD Document Version: V9.2.2-1 Software Version: WebCRD V9.2.2 April 2013 2001-2013 Rochester Software Associates, Inc. All Rights Reserved.

More information

Computer Connections & Software Install Guide

Computer Connections & Software Install Guide C5400 & C5400n Computer Connections & Software Install Guide Installation Overview: Windows Network Installation: Model C5400n Only Ethernet Connection... 2 Software: TCP/IP... 3 Software: Novell... 8

More information

How to install PHP/MySQL on Mac OS 10.5

How to install PHP/MySQL on Mac OS 10.5 How to install PHP/MySQL on Mac OS 10.5 For web development purposes, the ability to test your pages on your local machine can be very valuable. This tutorial shows you how you can enable PHP and MySQL

More information

Read Naturally SE Update Windows Network Installation Instructions

Read Naturally SE Update Windows Network Installation Instructions Windows Network This document explains how to apply the Read Naturally Software Edition 2.0.3 update to existing installations of SE version 2.0, 2.0.1, or 2.0.2. First update the SE server software, and

More information

Software Installation Guide

Software Installation Guide Software Installation Guide Xanté Corporation 2800 Dauphin St., Suite 100 Mobile, AL 36606-2400 P.O. Box 16526, Mobile, AL 36616-0526 Phone: 800-926-8839, 251-473-6502 Fax: 251-473-6503 Web Site: www.xante.com

More information

APPENDIX B: INSTALLATION AND SETUP

APPENDIX B: INSTALLATION AND SETUP APPENDIX B: INSTALLATION AND SETUP Page A. Overview... B:1 How do I install and setup ICMS?... B:1 Do I need special security rights to install ICMS?... B:1 Installation Basics... B:1 How do I get a quick

More information

MF9300. Software setup guide

MF9300. Software setup guide MF900 Software setup guide 0000 79-0 S INTRODUCTION This manual explains how to install and configure the software that is required for the printer function of the machine. The procedure for viewing the

More information

Workstation Setup Instructions Release 9.5

Workstation Setup Instructions Release 9.5 Workstation Setup Instructions Release 9.5 Copyright 2007 Newmarket International, Inc. All rights reserved. The information in this document is confidential and proprietary to Newmarket International,

More information

Professional Edition on a Server for Network Access & On Thin-Client Workstations Using Client Deployment 5

Professional Edition on a Server for Network Access & On Thin-Client Workstations Using Client Deployment 5 Addendum to the Microsoft Business Solutions for Analytics FRx 6.7 Installation and Configuration Guide FRx 6.7 Solomon Installation Copyright and Trademarks Copyright 2002 Great Plains Software, Inc.

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

Software Installation with Microsoft SQL 2008

Software Installation with Microsoft SQL 2008 Agency Information Manager Software Installation with Microsoft SQL 2008 Revised: 3.7.2012 2012 Vertafore, Inc. All Rights Reserved. This software and documentation are copyrighted materials. Law prohibits

More information

Installation Manual. Fleet Maintenance Software. Version 6.4

Installation Manual. Fleet Maintenance Software. Version 6.4 Fleet Maintenance Software Installation Manual Version 6.4 6 Terri Lane, Suite 700 Burlington, NJ 08016 (609) 747-8800 Fax (609) 747-8801 Dossier@dossiersystemsinc.com www.dossiersystemsinc.com Copyright

More information

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Server

Parallels Software International, Inc. Parallels Compressor. Installation Guide. Server Parallels Software International, Inc. Parallels Compressor Installation Guide Server (c) 2005-2007 Copyright 2006-2007 by Parallels Software International Inc. All rights reserved. Parallels, Parallels

More information

User Guide Hilton Court St. Paul, MN (651)

User Guide Hilton Court St. Paul, MN (651) User Guide 6331 Hilton Court St. Paul, MN 55115 (651) 779 0955 http://www.qdea.com sales@qdea.com support@qdea.com Synchronize! and Qdea are trademarks of Qdea. Macintosh and the Mac OS logo are trademarks

More information

Operating Instructions

Operating Instructions Operating Instructions Software (Direct Printing System) For Digital Imaging Systems Direct Printing System Setup Using Direct Printing System General Description System Requirements Before using this

More information

Agilent Genomic Workbench 6.0

Agilent Genomic Workbench 6.0 Agilent Genomic Workbench 6.0 Standard Edition Installation Guide Notices Agilent Technologies, Inc. 2010 No part of this manual may be reproduced in any form or by any means (including electronic storage

More information

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE

ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE ADOBE EXPERIENCE MANAGER DAM CONNECTOR FOR ADOBE DRIVE CC: TECHNICAL NOTE 2015 Adobe Systems Incorporated. All rights reserved. Technical Note: Adobe Experience Manager DAM Connector for Adobe Drive CC

More information

C-MagSys and Q-MagSys Components Installation Guide (20 January 2010) C-MagSys and Q-MagSys Components Overview at Clinic

C-MagSys and Q-MagSys Components Installation Guide (20 January 2010) C-MagSys and Q-MagSys Components Overview at Clinic C-MagSys and Q-MagSys Components Installation Guide (20 January 2010) C-MagSys and Q-MagSys Components Overview at Clinic The following are files used for this installation: 1. CMagSysSetup.exe 2. QMagSysSetup.exe

More information

Practice and Review Activities Software

Practice and Review Activities Software Practice and Review Activities Software Installation and Setup Procedure Reading Mastery Signature Edition Corrective Reading Installation Insert the Practice and Review Activities CD-ROM into the CD/DVD

More information

Read Naturally SE Software Guide. Version 2.0

Read Naturally SE Software Guide. Version 2.0 Read Naturally SE Software Guide Version 2.0 Under the terms of the Read Naturally Software Edition License Agreement, you have permission to use only the levels you purchased with the number of users

More information

Executive Series 1220n Computer Connections & Software Install Guide

Executive Series 1220n Computer Connections & Software Install Guide Executive Series 1220n Computer Connections & Software Install Guide Installation Checklist Network Install: Hardware...2 Network Install: Software...3 TCP/IP...3 Novell...6 Local Install: Windows USB

More information

C5150n, C5200ne & C5200n Computer Connections & Software Install Guide

C5150n, C5200ne & C5200n Computer Connections & Software Install Guide C5150n, C5200ne & C5200n Computer Connections & Software Install Guide Installation Overview: Windows Windows TCP/IP Network Installation: C5150n & C5200ne Ethernet Connection... 2 Software... 3 Windows

More information

MassTransit Server Installation Guide for Windows

MassTransit Server Installation Guide for Windows MassTransit 6.1.1 Server Installation Guide for Windows November 24, 2009 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail: info@grouplogic.com

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

PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL

PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL Copyright 2002, Promise Technology, Inc. Copyright by Promise Technology, Inc. (Promise Technology). No part of this manual may be reproduced or transmitted

More information

AR-PK6. SOFTWARE SETUP GUIDE (for printer)

AR-PK6. SOFTWARE SETUP GUIDE (for printer) SOFTWARE SETUP GUIDE (for printer) MODEL AR-PK6 PS EXPANSION KIT INTRODUCTION REQUIREMENTS FOR WINDOWS REQUIREMENTS FOR MACINTOSH SECTIONS OF THE OPERATION MANUALS THAT ARE RELATED TO THE PS EXPANSION

More information

ES 2024/2024e and ES 3037/3037e Software Installation Guide

ES 2024/2024e and ES 3037/3037e Software Installation Guide ES 2024/2024e and ES 3037/3037e Software Installation Guide Installation Checklist Which Printer Driver?... 2 USB Versus Parallel Interface: Windows... 2 Installation... 3 Network Installation... 3 Connect

More information

Connecting BioNumerics to MySQL

Connecting BioNumerics to MySQL Connecting BioNumerics to MySQL A brief overview Applied Maths NV - KJ February 2010 MySQL server side MySQL settings file MySQL is a very flexible DBMS and has quite a number of settings that allows one

More information

Top Producer for Palm Handhelds

Top Producer for Palm Handhelds Top Producer for Palm Handhelds Quick Setup Top Producer Systems Phone number: 1-800-830-8300 Email: support@topproducer.com www.topproducer.com Fax: 604.270.6365 Top Producer for Palm handhelds Quick

More information

LASER PRINTER. Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING

LASER PRINTER. Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING MODEL: MX-B400P LASER PRINTER Software Setup Guide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING Keep this manual close at hand for reference

More information

EasyCatalog For Adobe InDesign

EasyCatalog For Adobe InDesign EasyCatalog For Adobe InDesign ODBC DATA PROVIDER User Guide 65bit Software Ltd Revision History Version Date Remarks 2.0.0 13 July 2005 First draft for InDesign CS2 modifications. 2.1.0 13 March 2006

More information

Installation Guide for Windows

Installation Guide for Windows Installation Guide for Windows IDL Version 5.4 September, 2000 Edition Copyright Research Systems, Inc. All Rights Reserved Restricted Rights Notice The IDL software program and the accompanying procedures,

More information

SOFTWARE SETUP GUIDE DIGITAL MULTIFUNCTIONAL SYSTEM

SOFTWARE SETUP GUIDE DIGITAL MULTIFUNCTIONAL SYSTEM SOFTWARE SETUP GUIDE DIGITAL MULTIFUNCTIONAL SYSTEM BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING AND USEFUL INFORMATION Page 2 8 29 36

More information

RSA WebCRD Getting Started

RSA WebCRD Getting Started RSA WebCRD Getting Started User Guide Getting Started with WebCRD Document Version: V8.1-3 Software Version: WebCRD V8.1.3 June 2011 2001-2011 Rochester Software Associates, Inc. All Rights Reserved. AutoFlow,

More information

CellSync Manager. User Manual F8V7D006-SS F8V7D008-SS. Get online and synchronize anywhere. Web Access. Phone Book Manager

CellSync Manager. User Manual F8V7D006-SS F8V7D008-SS. Get online and synchronize anywhere. Web Access. Phone Book Manager CellSync Manager Get online and synchronize anywhere Web Access Phone Book Manager User Manual F8V7D006-SS F8V7D008-SS TABLE OF CONTENTS Introduction...2 Interactive Phone Menu...3 LG 5350 CellSync Software

More information

MASSTRANSIT DATABASE ANALYSIS. Using Microsoft Excel And ODBC To Analyze MySQL Data

MASSTRANSIT DATABASE ANALYSIS. Using Microsoft Excel And ODBC To Analyze MySQL Data MASSTRANSIT DATABASE ANALYSIS Using Microsoft Excel And ODBC To Analyze MySQL Data AUTHOR: PETE CODY petecody@grouplogic.com 31 May 2007 Document Revision History: Date: Author: Comment: 19 Apr 2007 PMC

More information

Relativity Data Server

Relativity Data Server Relativity Data Server Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2015. All rights reserved. MICRO FOCUS, the Micro Focus

More information

AssetCentre. Asset Management INSTALLATION GUIDE INTEGRATED PRODUCTION & PERFORMANCE SUITE

AssetCentre. Asset Management INSTALLATION GUIDE INTEGRATED PRODUCTION & PERFORMANCE SUITE INTEGRATED PRODUCTION & PERFORMANCE SUITE AssetCentre Asset Management INSTALLATION GUIDE PUBLICATION FTAC-IN002D-EN-E November 2008 Supersedes Publication FTAC-IN002C-EN-E Contact Rockwell Customer Support

More information

Abila MIP. Human Resource Management Installation Guide

Abila MIP. Human Resource Management Installation Guide Human Resource Management Installation Guide This is a publication of Abila, Inc. Version 2017.2 2017 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila

More information

Scholastic Reading Inventory. Installation Guide

Scholastic Reading Inventory. Installation Guide Scholastic Reading Inventory Installation Guide For use with SRI v1.8.1 and SAM v1.8.1 Copyright 2009 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. SCHOLASTIC, SYSTEM 44, SCHOLASTIC

More information

COINS Ti Call Management System Standard Installation Instructions for Citrix Users

COINS Ti Call Management System Standard Installation Instructions for Citrix Users COINS Ti Call Management System Standard Installation Instructions for Citrix Users COINS recommends that the System Administrator or staff trained in both UNIX and Citrix installation processes perform

More information

MySQL for Windows. Tak Auyeung. September 7, 2003

MySQL for Windows. Tak Auyeung. September 7, 2003 MySQL for Windows Tak Auyeung September 7, 2003 1 Getting it Go to http://www.mysql.com for general information. To make your life easier, you can get most of the files on a CD (so you can install it easily

More information

System 44 Installation Guide

System 44 Installation Guide System 44 Installation Guide For use with System 44 v1.0 Suite and SAM v1.8.1 or higher Copyright 2009 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. SCHOLASTIC, SYSTEM 44, SCHOLASTIC

More information

PCLaw Installation and Upgrade Guide

PCLaw Installation and Upgrade Guide PCLaw Installation and Upgrade Guide Version 14.1 2015 LexisNexis. All rights reserved. Copyright and trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks of Reed Elsevier

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide Copyright 2009 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other

More information

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260 READ ME FIRST Windows NT *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 5260NT02A Version 1.2-A. Table of Contents Follow Steps 1 through 8 to complete

More information

AccessData FTK Quick Installation Guide

AccessData FTK Quick Installation Guide AccessData FTK Quick Installation Guide Document date: May 20, 2014 2014 AccessData Group, Inc. All rights reserved. No part of this publication may be reproduced, photocopied, stored on a retrieval system,

More information

Laser Beam Printer. Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference.

Laser Beam Printer. Network Guide. IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. Laser Beam Printer Network Guide IMPORTANT: Read this manual carefully before using your printer. Save this manual for future reference. ENG Network Guide How This Manual Is Organized Chapter 1 Before

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1

Tivoli Management Solution for Microsoft SQL. Statistics Builder. Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Statistics Builder Version 1.1 Tivoli Management Solution for Microsoft SQL Copyright

More information

Call Center Management Information System CC MIS Getting Started Guide (Supervisor Interface)

Call Center Management Information System CC MIS Getting Started Guide (Supervisor Interface) 297-2671-175 Call Center Management Information System CC MIS Getting Started Guide (Supervisor Interface) Release 6.0 Standard 1.0 June 2005 Call Center Management Information System CC MIS Getting Started

More information

User Manual. Unpacking and Setup

User Manual. Unpacking and Setup User Manual USB Print Server LPV2-USB-TX1 Unpacking and Setup This section provides unpacking and setup information for the USB Print Server. Unpacking Open the shipping carton of the Switch and carefully

More information

RWT Network System Installation Guide

RWT Network System Installation Guide RWT Network System Installation Guide Copyright 2003, Talking Fingers, Inc. Page 1 of 48 This document is Copyright 2003 by Talking Fingers, Inc. All rights are reserved. This document may not be copied

More information

LabelWriter. Print Server. User Guide

LabelWriter. Print Server. User Guide LabelWriter Print Server User Guide Copyright 2011 Sanford, L.P. All rights reserved. 04/11 No part of this document or the software may be reproduced or transmitted in any form or by any means or translated

More information

About this guide. This guide provides a list. used under. Suite 310. Canada

About this guide. This guide provides a list. used under. Suite 310. Canada PCLaw 11.0 Installation Guide About this guide LexisNexis Practice Management Systems, Inc. 123 Commerce Valley Drive East Suite 310 Markham, On L3T 7W8 Canada North America: 800.387.9785 Outside North

More information

menu of icons which you can select which item you want to use to startup the computer.

menu of icons which you can select which item you want to use to startup the computer. To begin, insert the media that came with your computer into your CD / DVD drive. While the media is in the computer, power the computer off and restart the system. Upon restart you will need to press

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

Open Transport User s Guide

Open Transport User s Guide apple Open Transport User s Guide K Apple Computer, Inc. 1997 Apple Computer, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

C9600 Software Installation Guide

C9600 Software Installation Guide C9600 Software Installation Guide Table of Contents Network Installation...2 Windows...2 Novell...6 Windows Installation...7 USB Connection...7 Parallel Connection...10 Macintosh Installation...12 OS 9.1

More information

ES3640e MFP Software Installation Guide

ES3640e MFP Software Installation Guide ES3640e MFP Software Installation Guide About this Guide This guide describes the initial printer driver installation. For more detailed information, refer to the EFI User Software Installation Guide and

More information

Upgrading from Call Center Reporting to

Upgrading from Call Center Reporting to Upgrading from Call Center Reporting to Reporting for Call Center Upgrade Document Reporting for Call Center Release 2.2.1xx Document Number: 200-0400-110 Document Status: Standard Document Version: 3.02

More information

AccuRoute Web Client v2.0 installation and configuration guide

AccuRoute Web Client v2.0 installation and configuration guide AccuRoute Web Client v2.0 installation and configuration guide July 22, 2009 Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: +1/1 978 327 5700 Toll-free in the US: +1/1 800 886 7845 Fax: +1/1 978

More information

EasyLobby Database Setup EasyLobby Family of Products Version 10.0

EasyLobby Database Setup EasyLobby Family of Products Version 10.0 EasyLobby Database Setup EasyLobby Family of Products Version 10.0 Introduction This document describes how to set up the EasyLobby 10.0 database on Microsoft SQL Server or Oracle, how to setup an ODBC

More information

Installation / Migration Guide for Windows 2000/2003 Servers

Installation / Migration Guide for Windows 2000/2003 Servers & Installation / Migration Guide for Windows 2000/2003 Servers Ebix, Inc. Corporate Headquarters Concourse Parkway, Suite 3200 Atlanta, GA 30328 USA Phone: 678-281-2020 Fax: 678-281-2019 E-mail: info@ebix

More information

Nikon Message Center

Nikon Message Center Nikon Message Center Notice to Users in Europe and the U.S.A 2 Automatic Update 3 Checking for Updates Manually 3 4 Available Messages 5 My Products 6 Scheduling Updates 6 The Download Log 7 Uninstalling

More information

IPNexus Server Secure Instant Messaging & Integrated Collaboration

IPNexus Server Secure Instant Messaging & Integrated Collaboration IPNexus Server Secure Instant Messaging & Integrated Collaboration Version 1.5 Installation & Setup Guide DOC00023 Rev. 1.0 01.03 VCON IPNexus Server Installation & Setup Guide 1 2003 VCON Ltd. All Rights

More information

Employee Web Services. Installation Guide

Employee Web Services. Installation Guide Employee Web Services This is a publication of Abila, Inc. Version 2017.x 2016 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names

More information

Installation Guide Version May 2017

Installation Guide Version May 2017 Installation Guide Version 2017 5 May 2017 GeoCue Group, Inc 9668 Madison Blvd. Suite 202 Madison, AL 35758 1-256-461-8289 www.geocue.com NOTICES The material in GeoCue Group, Inc. documents is protected

More information

Metalogix Essentials for Office Creating a Backup

Metalogix Essentials for Office Creating a Backup Metalogix Essentials for Office 365 2.1 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

SmartScan. Barcode Translator for QuickBooks USER S MANUAL

SmartScan. Barcode Translator for QuickBooks USER S MANUAL SmartScan Barcode Translator for QuickBooks USER S MANUAL Baus Systems 4727 44 th Ave. SW, Suite 202 Seattle, WA 98116 (206) 932-9986 Office (206) 923-0839 Fax E-mail: support@baus-systems.com 1 TABLE

More information

Fire Behaviour Knowledge Base Installation

Fire Behaviour Knowledge Base Installation Fire Behaviour Knowledge Base Installation To install the Fire Behaviour Knowledge Base, the user must be sure to have administrative privileges. The installation of the FBKB includes the installation

More information

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0

Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Intel Server RAID Controller U2-1 Integration Guide For Microsoft* Windows NT* 4.0 Revision 1.0 February 2000 Revision History Revision Revision History Date 1.0 Initial Release 02/10/00 Intel Corporation

More information

FaxFinder Fax Servers

FaxFinder Fax Servers FaxFinder Fax Servers Models: FF130 FF230 FF430 FF830 Client User Guide FaxFinder Client User Guide Fax Client Software for FaxFinder Series PN S000460B, Version B Copyright This publication may not be

More information

MicroPress 8. MicroPress 8 Installation Guide

MicroPress 8. MicroPress 8 Installation Guide MicroPress 8 MicroPress 8 Installation Guide 2011 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 17 August 2011 MICROPRESS INSTALLATION

More information

MySQL Database Server Installation Guide for SAS Financial Management 5.3 SAS Human Capital Management 5.21 and SAS Strategy Management 5.

MySQL Database Server Installation Guide for SAS Financial Management 5.3 SAS Human Capital Management 5.21 and SAS Strategy Management 5. README MySQL Database Server Installation Guide for SAS Financial Management 5.3 SAS Human Capital Management 5.21 and SAS Strategy Management 5.4 MySQL Database Server 5.1.55 Enterprise Edition Installation

More information

Version June 2016

Version June 2016 HOSTING GUIDE Version 3.2.3 June 2016 This guide is sold in conjunction with the VETtrak Hosting Serv ice and is current at the time of purchase. Later v ersions are av ailable for download from www.v

More information

SonicWALL CDP 2.1 Agent Tool User's Guide

SonicWALL CDP 2.1 Agent Tool User's Guide COMPREHENSIVE INTERNET SECURITY b SonicWALL CDP Series Appliances SonicWALL CDP 2.1 Agent Tool User's Guide SonicWALL CDP Agent Tool User s Guide Version 2.0 SonicWALL, Inc. 1143 Borregas Avenue Sunnyvale,

More information

Abstract. This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices.

Abstract. This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices. MySQL and OS X Abstract This is the MySQL OS X extract from the MySQL 5.5 Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit either the MySQL Forums

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

Reconfiguring VMware vsphere Update Manager. 17 APR 2018 VMware vsphere 6.7 vsphere Update Manager 6.7

Reconfiguring VMware vsphere Update Manager. 17 APR 2018 VMware vsphere 6.7 vsphere Update Manager 6.7 Reconfiguring VMware vsphere Update Manager 17 APR 2018 VMware vsphere 6.7 vsphere Update Manager 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

English. TI.GRAPH LINK é 2 FOR THE MACINTOSH CONDENSED GUIDEBOOK

English. TI.GRAPH LINK é 2 FOR THE MACINTOSH CONDENSED GUIDEBOOK English TI.GRAPH LINK é 2 FOR THE MACINTOSH CONDENSED GUIDEBOOK Note: This guidebook applies to the TI graphing calculators and accessories described on page 3. Graphic screens in this guidebook were captured

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS NZ Tax Management Version: 2015.04 Service Pack Author Created and Published by Reckon Limited Level 12, 65 Berry Street North Sydney NSW 2060 Australia ACN 003 348 730 All Rights

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Software Installation Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Software Installation Guide 2013 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written

More information

Omtool Server Monitor Administrator Guide

Omtool Server Monitor Administrator Guide Omtool Server Monitor Administrator Guide For AccuRoute and Genifax environments March 19, 2010 (4.0342-AA) Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: 978-327-5700 Toll-free in the US: 800-886-7845

More information

Windows Backup Server Installation

Windows Backup Server Installation Windows Backup Server Installation VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 60,000 BUSINESSES Windows Backup Server Installation Vembu BDR Server is currently supported for below versions of Windows

More information

LiteShow WIRELESS FREEDOM FOR YOUR PROJECTOR. QUICK START GUIDE

LiteShow WIRELESS FREEDOM FOR YOUR PROJECTOR. QUICK START GUIDE LiteShow WIRELESS FREEDOM FOR YOUR PROJECTOR. QUICK START GUIDE InFocus LiteShow Quick Start Guide 1 This InFocus LiteShow Quick Start Guide contains the four simple steps you need to perform in order

More information

Abila MIP DrillPoint Reports. Installation Guide

Abila MIP DrillPoint Reports. Installation Guide Abila MIP DrillPoint Reports This is a publication of Abila, Inc. Version 16.1 2015 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service

More information

Reconfiguring VMware vsphere Update Manager. Update 1 VMware vsphere 6.5 vsphere Update Manager 6.5

Reconfiguring VMware vsphere Update Manager. Update 1 VMware vsphere 6.5 vsphere Update Manager 6.5 Reconfiguring VMware vsphere Update Manager Update 1 VMware vsphere 6.5 vsphere Update Manager 6.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Xsan 2 Migration Guide

Xsan 2 Migration Guide Xsan 2 Migration Guide K Apple Inc. 2008 Apple Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of Apple. The Apple logo

More information