Note The Garoon 3 system is not available while backing up. You must use the same version of Garoon 3 to perform data backup and restoration.

Size: px
Start display at page:

Download "Note The Garoon 3 system is not available while backing up. You must use the same version of Garoon 3 to perform data backup and restoration."

Transcription

1 Maintenance Maintenance This chapter describes how to back up and restore data and how to migrate Garoon to another server, assuming that Garoon is installed in the following environment: Web server Windows: IIS 7 Linux: Apache. Installation identifier: cbgrn Install directory On Windows OS: C:\Program Files\Cybozu On Linux OS: /usr/local/cybozu/ Tip The following error is output in the results of slow query logs, but this error does not affect the operation of Garoon : [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file' instead.. Backup and Restoration Backup and restoration of data can be performed by a user with "Administrator" privileges in a Windows environment or by a root user in a Linux environment. Note The Garoon system is not available while backing up. You must use the same version of Garoon to perform data backup and restoration. Backup Target Garoon can back up the following data in a MySQL database: On Windows OS: C:\Program Files\Cybozu\mysql-.0data C:\Program Files\Cybozu\mysql-.0files On Linux OS: /usr/local/cybozu/mysql-.0/data /usr/local/cybozu/mysql-.0/files Data in the database The following data is stored in the "data" directory: mysql: Data required for MySQL to operate, such as the database administrator's password cb_cbgrn: User information and other data used in Garoon applications such as Messages and Scheduler 88 Cybozu Garoon Administrator Guide

2 . Backup and Restoration Attachments These are the data stored in the "file" directory, including the files attached to messages and topics. Data in MySQL and attachments are linked. Careful planning is required for backup and restoration to avoid data discrepancies. Note Garoon uses InnoDB for MySQL tables. You cannot use mysqlhotcopy. Backup Method Data in MySQL can be backed up using operating system commands or mysqldump. Attachments can be backed up using operating system commands. Stop MySQL and Cybozu scheduling service when you use operating system commands. We recommend that you remove Garoon from the monitoring target till the task is complete, if you are monitoring operations of services and daemons. Tip You can use operating system commands for faster data backups. The following methods are available: Use storage software to back up difference of the data only. Use a snapshot function. mysqldump is installed at the same time as MySQL. Unused areas in the database are removed if you use mysqldump for backup. Therefore, restored data may occupy less area than before in some cases. Backup Mode Setting There may be data discrepancies observed between MySQL data and attachments since their backup methods are different. Database updates should be prohibited during backup in order to maintain the data consistency. You can configure Garoon to not allow database updates by turning on backup mode. The backup mode function is disabled by default. Modify the configuration file common.ini to enable the backup mode function. The location of the common.ini file and the required modifications are as follows: Location of the configuration file (CGI directory)/(installation identifier)/common.ini On Windows OS: C:\Inetpub\scripts\cbgrn\common.ini On Linux OS: /var/www/cgi-bin/cbgrn/common.ini Cybozu Garoon Administration Guide 89

3 Maintenance Required changes Delete part of the line describing "disable = """ under [BackupMode] as follows. Before deletion [BackupMode] disable = "" driver = "xxxxx" After deletion [BackupMode] driver = "xxxxx" Tip Execute a command from the command line to turn on or release backup mode. Users cannot use Garoon while backup mode is enabled. Restore the configuration file contents to the original state to disable backup mode. What is Cybozu scheduling service? Cybozu scheduling service regularly provides specified service at a scheduled time. For example, the scheduling service automatically deletes unnecessary files from Garoon or retrieves weather data at the time specified in the "sched.ini" file. The date and time of the Garoon server are applied to the scheduling service. The scheduling service is performed according to the time zone, date and time of the Garoon server. Note You must first stop the scheduling service before stopping the database engine. You must first start the database engine before starting the scheduling service. Cybozu scheduling service and Cybozu database engine must be stopped or started by the following users: For Windows OS: Users with "Administrator" accounts For Linux OS: Users with "root" user accounts.. Backing Up with OS Commands This part describes how to copy a directory to back up data using operating system commands. Backing up in Windows Environment You can create a backup directory and back up the data using the following procedure: C:\backup\YYYYMMDD To back up data using OS commands: 90 Stop the scheduling service, then the database engine. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and stop the following services: Cybozu Garoon Administrator Guide

4 . Backup and Restoration Cybozu_Scheduling_Service_cbgrn Cybozu_Database_Engine 0 : "cbgrn" may be replaced by your installation identifier. Launch the command prompt. Create a backup directory under the current directory. mkdir C:\backup\YYYYMMDD Copy the "data" directory and the "files" directory to the directory created in the step. xcopy "C:\Program Files\Cybozu\mysql-.0\data" C:\backup\YYYYMMDD\data /E /I xcopy "C:\Program Files\Cybozu\mysql-.0\files" C:\backup\YYYYMMDD\files /E /I If you copy to an existing directory, a message is displayed to confirm whether or not to overwrite the data. Enter "Yes" or "All" to overwrite, or "No" to cancel. Start the database engine, then the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and start the following services: Cybozu_Database_Engine 0 Cybozu_Scheduling_Service_cbgrn Check that Garoon can be accessed without any problems. Backing up in Linux Environment You can create a backup directory and back up the data using the following procedure: /backup/yyyymmdd To back up data using OS commands: Launch the command prompt. /etc/init.d/cyss_cbgrn stop /etc/init.d/cyde 0 stop : "cbgrn" may be replaced by your installation identifier. Stop the scheduling service, then the database engine. Create a backup directory. mkdir -p /backup/yyyymmdd Copy the "data" directory and "files" directory to the directory created in the step. cp -rp /usr/local/cybozu/mysql-.0/data /backup/yyyymmdd/ Cybozu Garoon Administration Guide 9

5 Maintenance cp -rp /usr/local/cybozu/mysql-.0/files /backup/yyyymmdd/ Start the database engine, then the scheduling service. /etc/init.d/cyss_cbgrn start /etc/init.d/cyde 0 start Check that Garoon can be accessed without any problems... Restoring with OS Commands This part describes how to restore the copied data using operating system commands. Restoring in Windows Environment You can restore the data stored in a backup directory using the following procedure: C:\backup\YYYYMMDD To restore data using OS commands: Stop the scheduling service, then the database engine. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and stop the following services: Cybozu_Scheduling_Service_cbgrn Cybozu_Database_Engine 0 : "cbgrn" may be replaced by your installation identifier. Launch the command prompt. Delete the existing database area and attachments area. rmdir /s /q "C:\Program Files\Cybozu\mysql-.0\data" rmdir /s /q "C:\Program Files\Cybozu\mysql-.0\files" Copy the backup data to the original directory. xcopy C:\backup\YYYYMMDD\data "C:\Program Files\Cybozu\mysql-.0\data" /E /I xcopy C:\backup\YYYYMMDD\files "C:\Program Files\Cybozu\mysql-.0\files" /E /I Start the database engine, then the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and start the following services: Cybozu_Database_Engine 0 Cybozu_Scheduling_Service_cbgrn 9 Cybozu Garoon Administrator Guide

6 . Backup and Restoration Check that Garoon can be accessed without any problems. Restoring in Linux Environment You can restore the data stored in a backup directory using the following procedure: /backup/yyyymmdd To restore data using OS commands: Stop the scheduling service, then the database engine. /etc/init.d/cyss_cbgrn stop /etc/init.d/cyde 0 stop : "cbgrn" may be replaced by your installation identifier. Delete the existing database area and attachments area. rm -rf /usr/local/cybozu/mysql-.0/data rm -rf /usr/local/cybozu/mysql-.0/files Copy the backup data to the original directory. cp -rp /backup/yyyymmdd/data /usr/local/cybozu/mysql-.0/ cp -rp /backup/yyyymmdd/files /usr/local/cybozu/mysql-.0/ Start the database engine, then the scheduling service. /etc/init.d/cyss_cbgrn start /etc/init.d/cyde 0 start Check that Garoon can be accessed without any problems. Tip The database engine may not start in some cases due to a change in the directory privileges after the restoration. In such cases, use the chown command to grant read and write privileges for the MySQL data area to CGI users such as apache. Cybozu Garoon Administration Guide 9

7 Maintenance.. Backing up with mysqldump You must perform the backup during the period when users do not access Garoon. This part describes how to back up data by executing mysqldump in backup mode. See the following section for backup mode: "Backup Method" on page 89. Notes on the use of mysqldump The MySQL tables (privilege database) may be lost due to disk corruption or system failures. If you cannot import the data backed up with dump due to the damaged MySQL tables, the data can be restored using the following procedure: To restore the dump data: Install Garoon as a new installation. Back up the data of Garoon installed in the step using operating system commands. See ".. Backing Up with OS Commands" on page 90. Restore the data backed up in the step using operating system commands. See ".. Restoring with OS Commands" on page 9. Restore the dump data using mysqldump. See ".. Backing up with mysqldump" on page 9. Speed of mysqldump If you use mysqldump, the backup and restoration process may take a long time to complete depending on the data size. Restoration takes longer than backup. Restoration with mysqldump takes longer than restoration with operating system commands. Disk space after restoration The data after restoration with mysqldump may occupy less area than the data before backup. This is because unused areas are removed when the data is backed up, but not because the data is lost. 9 Cybozu Garoon Administrator Guide

8 . Backup and Restoration Backing up in Windows Environment You can create a backup directory and back up the data using the following procedure: C:\backup\YYYYMMDD Tip Modify the Garoon configuration in advance to enable backup mode. "Backup Method" on page 89. To back up data using mysqldump: Launch the command prompt. Create a backup directory. mkdir C:\backup\YYYYMMDD Stop the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and stop the following service: Cybozu_Scheduling_Service_cbgrn : "cbgrn" may be replaced by your installation identifier. Set Garoon to backup mode. cd C:\Inetpub\scripts\cbgrn grn_command.exe -f.\code\command\backupmode_start.csp Execute mysqldump as a database administrator. "C:\Program Files\Cybozu\mysql-.0\bin\mysqldump" --defaults-file="c:\program Files\Cybozu\mysql-.0\etc\my.ini" --all-databases --single-transaction -u cbroot p > C:\backup\YYYYMMDD\full.sql 7 8 Enter the database administrator's password. Back up the attachments. xcopy "C:\Program Files\Cybozu\mysql-.0\files" C:\backup\YYYYMMDD\files /E /I Release backup mode. cd C:\Inetpub\scripts\cbgrn grn_command.exe -f.\code\command\backupmode_end.csp 9 Start the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and start Cybozu Garoon Administration Guide 9

9 Maintenance the following service: Cybozu_Scheduling_Service_cbgrn 0 Check that Garoon can be accessed without any problems. Backing up in Linux Environment You can create a backup directory and back up the data using the following procedure: /backup/yyyymmdd Tip Modify the Garoon configuration in advance to enable backup mode. "Backup Method" on page 89. To back up data using mysqldump: Create a backup directory. mkdir -p /backup/yyyymmdd Stop the scheduling service. /etc/init.d/cyss_cbgrn stop : "cbgrn" may be replaced by your installation identifier. Turn on backup mode. cd /var/www/cgi-bin/cbgrn./grn_command -f./code/command/backupmode_start.csp Execute mysqldump as a database administrator. /usr/local/cybozu/mysql-.0/bin/mysqldump --defaults-file=/usr/local/cybozu/mysql-.0/etc/my.ini --all-databases --single-transaction -u cbroot -p > /backup/yyyymmdd/full.sql 7 Enter the database administrator's password. Back up the attachments. cp -rp /usr/local/cybozu/mysql-.0/files /backup/yyyymmdd/ Release backup mode. cd /var/www/cgi-bin/cbgrn./grn_command -f./code/command/backupmode_end.csp 8 Start the scheduling service. /etc/init.d/cyss_cbgrn start 9 Cybozu Garoon Administrator Guide

10 . Backup and Restoration 9 Check that Garoon can be accessed without any problems... Restoring with mysqldump This part describes how to restore the backup data and attachments using mysqldump. You must perform the restoration during the period when users do not access Garoon. Restoring in Windows Environment You can restore the data stored in a backup directory using the following procedure: C:\backup\YYYYMMDD To restore data using mysqldump: 7 8 Launch the command prompt. Stop the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and stop the following service: Cybozu_Scheduling_Service_cbgrn : "cbgrn" may be replaced by your installation identifier. Set Garoon to backup mode. cd C:\Inetpub\scripts\cbgrn grn_command.exe -f.\code\command\backupmode_start.csp Import the backup data as a database administrator. "C:\Program Files\Cybozu\mysql-.0\bin\mysql" --defaults-file="c:\program Files\Cybozu\mysql-.0\etc\my.ini" -u cbroot -p < C:\backup\YYYYMMDD\full.sql Enter the database administrator's password. Delete the existing attachments area. rmdir /s /q "C:\Program Files\Cybozu\mysql-.0\files" Restore the attachments. xcopy C:\backup\YYYYMMDD\files "C:\Program Files\Cybozu\mysql-.0\files" /E /I Release backup mode. cd C:\Inetpub\scripts\cbgrn grn_command.exe -f.\code\command\backupmode_end.csp Cybozu Garoon Administration Guide 97

11 Maintenance 9 Start the scheduling service. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and start the following service: Cybozu_Scheduling_Service_cbgrn 0 Check that Garoon can be accessed without any problems. Restoring in Linux Environment You can restore the data stored in a backup directory using the following procedure: /backup/yyyymmdd To restore data using mysqldump: Stop the scheduling service. /etc/init.d/cyss_cbgrn stop : "cbgrn" may be replaced by your installation identifier. Set Garoon to backup mode. cd /var/www/cgi-bin/cbgrn./grn_command -f./code/command/backupmode_start.csp Import the backup data as a database administrator. /usr/local/cybozu/mysql-.0/bin/mysql --defaults-file=/usr/local/cybozu/mysql-.0/etc/my.ini -u cbroot -p < /backup/yyyymmdd/full.sql 7 Enter the database administrator's password. Delete the existing attachments area. rm -rf /usr/local/cybozu/mysql-.0/files Restore the attachments. cp -rp /backup/yyyymmdd/files /usr/local/cybozu/mysql-.0/ Release backup mode. cd /var/www/cgi-bin/cbgrn./grn_command -f./code/command/backupmode_end.csp 8 Start the scheduling service. /etc/init.d/cyss_cbgrn start 98 Cybozu Garoon Administrator Guide

12 . Migrating Between Servers 9 Check that Garoon can be accessed without any problems. Tip The database engine may not start in some cases due to a change in the directory privileges after the restoration. In such cases, use the chown command to grant read and write privileges for the MySQL data area to CGI users such as apache.. Migrating Between Servers This section describes how to migrate an operating Garoon to another server. A server migration must be performed by a user with "Administrator" privileges in a Windows environment or by a root user in a Linux environment. When you migrate data between servers, the following information must be identical in the source server and the destination server: Garoon version Installation identifier Database user passwords Tip The installation identifier can be found in "app_name" in the "[Global]" section in the "common.ini" file... Migrating between -bit OSs or -bit OSs Garoon can be migrated by copying the data to the destination server, if you migrate data between the same types of servers: for example between -bit operating systems or -bit operating systems. This part describes how to migrate from a server in a Windows environment to a server in a Linux environment. To migrate between servers with the same operating systems: Back up the data in Garoon in a Windows environment. See ".. Backing Up with OS Commands" on page 90. Install and initialize Garoon in a Linux environment. Use the same installation identifier and database user password as the source server. The Administrator password is optional. The password in the source server will be set to the destination server when the migration is complete. Tip: Garoon will use the language and time zone specified during initialization as default. You cannot change either the default language or the default time zone once Garoon is initialized. Stop the scheduling service, then database engine in the Linux environment. /etc/init.d/cyss_cbgrn stop /etc/init.d/cyde 0 stop : "cbgrn" may be replaced by your installation identifier. Cybozu Garoon Administration Guide 99

13 Maintenance 7 Copy the data in the Windows environment to the Linux environment. See ".. Restoring with OS Commands" on page 9. Configure the permissions and the owner of the data area in the Linux environment. chmod -R 7 data chmod -R 700 files chown -R apache:root data files Start the database engine, then the scheduling service in the Linux environment. /etc/init.d/cyde 0 start /etc/init.d/cyss_cbgrn start Check that Garoon can be accessed without any problems... Migrating from -bit OS to -bit OS Garoon can be migrated by overwriting the database using mysqldump, if you migrate data between different types of servers: for example, from a -bit operating system to a -bit operating system, or from a -bit operating system to a -bit operating system. Migrating to Windows Environment To migrate to a Windows environment: 00 On the source server, back up the data in Garoon using mysqldump. ".. Backing up with mysqldump" on page 9. Install and initialize Garoon on the destination server. Use the same installation identifier and database user password as the source server. The Administrator password is optional. The password in the source server will be set to the destination server when the migration is complete. Tip: Garoon will use the language and time zone specified during initialization as default. You cannot change either the default language or the default time zone once Garoon is initialized. Stop the scheduling service on the destination server. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and stop the following services Cybozu_Scheduling_Service_cbgrn : "cbgrn" may be replaced by your installation identifier. Launch the command prompt. Delete the existing attachments area. Cybozu Garoon Administrator Guide

14 . Migrating Between Servers rmdir /s /q "C:\Program Files\Cybozu\mysql-.0\files" Import the backup data from the source server to the destination server as a database administrator. When the backup data is "C:\backup\YYYYMMDD\full.sql" "C:\Program Files\Cybozu\mysql-.0\bin\mysql" --defaults-file="c:\program Files\Cybozu\mysql-.0\etc\my.ini" -u cbroot -p < C:\backup\YYYYMMDD\full.sql 7 8 Enter the database administrator's password. Copy the attachments from the source server to the destination server. When the backup data is "C:\backup\YYYYMMDD\files" xcopy C:\backup\YYYYMMDD\files "C:\Program Files\Cybozu\mysql-.0\files" /E /I 9 0 Press the Enter key. Start the scheduling service on the destination server. From the Windows Start menu, select Control Panel > Administrative Tools > Service, and start the following services: Cybozu_Scheduling_Service_cbgrn Check that Garoon can be accessed without any problems. Migrating to Linux Environment To migrate to a Linux environment: On the source server, back up the data in Garoon using mysqldump. ".. Backing up with mysqldump" on page 9. Install and initialize Garoon on the destination server. Use the same installation identifier and database user password as the source server. The Administrator password is optional. The password in the source server will be set to the destination server when the migration is complete. Tip: Garoon will use the language and time zone specified during initialization as default. You cannot change either the default language or the default time zone once Garoon is initialized. Stop the scheduling service on the destination server. /etc/init.d/cyss_cbgrn stop : "cbgrn" may be replaced by your installation identifier. Delete the existing attachments area. rm -rf /usr/local/cybozu/mysql-.0/files Cybozu Garoon Administration Guide 0

15 Maintenance Import the backup data from the source server to the destination server as a database administrator. When the backup data is "/backup/yyyymmdd/full.sql" /usr/local/cybozu/mysql-.0/bin/mysql --defaults-file=/usr/local/cybozu/mysql-.0/etc/my.ini -u cbroot -p < /backup/yyyymmdd/full.sql 7 Enter the database administrator's password. Copy the attachments from the source server to the destination server. When the backup data is "/backup/yyyymmdd/files" cp -rp /backup/yyyymmdd/files /usr/local/cybozu/mysql-.0/ 8 Configure the permissions and the owner of the data area. chmod -R 700 files chown -R apache:root data files 9 0 Start the scheduling service on the destination server. /etc/init.d/cyss_cbgrn start Check that Garoon can be accessed without any problems.. Resetting Administrator Passwords If you forget or lose Garoon administrator password, you must reset the password from the command line. This section describes how to reset the password, assuming that Garoon is installed in the following environment: Install identifier: cbgrn Install directory On Windows OS: C:\Inetpub\scripts On Linux OS: /var/www/cgi-bin Resetting a password in Windows environment To reset a password in a Windows environment: Launch the command prompt. Proceed to the CGI directory. cd C:\Inetpub\scripts\cbgrn Execute "set_admin_password.csp". grn_command.exe -f.\code\command\set_admin_password.csp 0 Cybozu Garoon Administrator Guide

16 . Resetting Administrator Passwords Enter "yes" and press the Enter key. Enter a new password and press the Enter key. Enter a confirmation password and press the Enter key. Resetting a password in Linux environment To reset a password in a Linux environment: Proceed to the CGI directory. cd /var/www/cgi-bin/cbgrn Execute "set_admin_password.csp"../grn_command -f./code/command/set_admin_password.csp Enter "yes" and press the Enter key. Enter a new password and press the Enter key. Enter a confirmation password and press the Enter key. Cybozu Garoon Administration Guide 0

Cybozu Garoon 3 Installation Guide

Cybozu Garoon 3 Installation Guide Cybozu Garoon 3 Installation Guide Edition 3.2 Cybozu, Inc. Preface Preface This guide describes instructions on installation and initial configurations of Cybozu Garoon Version 3.1.0 on one server machine.

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Installation guide. Copyright (C) 2011 Cybozu, Inc.

Installation guide. Copyright (C) 2011 Cybozu, Inc. Installation guide Copyright (C) 2011 Cybozu, Inc. Contens Setup guide Accessing from computers... 2 Installation tasks... 2 System administrator tasks... 2 Users tasks... 3 Accessing from your mobile

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

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

Installation and Configuration Guide (for Linux)

Installation and Configuration Guide (for Linux) v5.2 MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition to the procedures for upgrading,

More information

TPM 1.2 Firmware Update Guidance. for Infineon SLB9655 and SLB9660

TPM 1.2 Firmware Update Guidance. for Infineon SLB9655 and SLB9660 TPM 1.2 Firmware Update Guidance for Infineon SLB9655 and SLB9660 Rev. 05 Toshiba Client Solutions Co., Ltd. Document Number: 3600xxxxx 1. Introduction This guidance described about in-field firmware update

More information

APPLICATION USER GUIDE

APPLICATION USER GUIDE APPLICATION USER GUIDE Application: FileManager Version: 3.2 Description: File Manager allows you to take full control of your website files. You can copy, move, delete, rename and edit files, create and

More information

1Z Oracle. MySQL 5 Database Administrator Certified Professional Part I

1Z Oracle. MySQL 5 Database Administrator Certified Professional Part I Oracle 1Z0-873 MySQL 5 Database Administrator Certified Professional Part I Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-873 A. Use the --log-queries-indexes option. B. Use the

More information

Veritas NetBackup for MySQL Administrator's Guide

Veritas NetBackup for MySQL Administrator's Guide Veritas NetBackup for MySQL Administrator's Guide Windows and Linux Release 8.1.1 Documentation version: 8.1.1 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the

More information

Performing Administrative Tasks

Performing Administrative Tasks This chapter describes how to perform administrative tasks using Cisco CMX. Users who are assigned administration privileges can perform administrative tasks. Cisco CMX User Accounts, page 1 Backing Up

More information

Plesk 7.5 for Windows Migration Manager

Plesk 7.5 for Windows Migration Manager SWsoft, Inc. Plesk 7.5 for Windows Migration Manager Administrator's Guide Revision 1.4.1 (June 29, 2006) (c) 2005-2006 ISBN: N/A SWsoft, Inc. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA

More information

MySQL for Database Administrators Ed 4

MySQL for Database Administrators Ed 4 Oracle University Contact Us: (09) 5494 1551 MySQL for Database Administrators Ed 4 Duration: 5 Days What you will learn The MySQL for Database Administrators course teaches DBAs and other database professionals

More information

Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance

Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance First Published: May 29, 2012 Revised: August 2, 2012 This module describes how to migrate

More information

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc.

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc. WA2572 Introduction to Responsive Web Development for Mac Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3

More information

Troubleshooting the Installation

Troubleshooting the Installation APPENDIX A This appendix provides troubleshooting information for CD One installation. It contains: Checking Files and Directories After Installation Viewing and Changing Process Status Understanding Installation

More information

Upgrade Guide Version 7.2

Upgrade Guide Version 7.2 Upgrade Guide Version 7.2 Copyright IBM Corporation 2017 1 Resiliency Orchestration Upgrade Guide DISCLAIMER IBM believes that the information in this publication is accurate as of its publication date.

More information

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

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

More information

Working with Basic Linux. Daniel Balagué

Working with Basic Linux. Daniel Balagué Working with Basic Linux Daniel Balagué How Linux Works? Everything in Linux is either a file or a process. A process is an executing program identified with a PID number. It runs in short or long duration

More information

Getting Started With UNIX Lab Exercises

Getting Started With UNIX Lab Exercises Getting Started With UNIX Lab Exercises This is the lab exercise handout for the Getting Started with UNIX tutorial. The exercises provide hands-on experience with the topics discussed in the tutorial.

More information

IT 341: Introduction to System Administration. Notes for Project #8: Backing Up Files with rsync

IT 341: Introduction to System Administration. Notes for Project #8: Backing Up Files with rsync IT 341: Introduction to System Administration Notes for Project #8: Backing Up Files with rsync These notes explain some of the concepts you will encounter in Project #08: Backing Up Files with rsync Topics

More information

MySQL Database Backup and Restore for Windows

MySQL Database Backup and Restore for Windows MySQL Database Backup and Restore for Windows CloudBacko Corporation 1 March 2018 2018 CloudBacko Corporation. All rights reserved. The use and copying of this product is subject to a license agreement.

More information

BACKUP APP V7 MYSQL DATABASE BACKUP AND RESTORE FOR WINDOWS

BACKUP APP V7 MYSQL DATABASE BACKUP AND RESTORE FOR WINDOWS V7 MYSQL DATABASE BACKUP AND RESTORE FOR WINDOWS Table of Contents 1 Requirements and Recommendations... 1 2 Limitations... 4 3 Starting Backup App... 5 3.1 Login to Backup App... 5 4 Creating a MySQL

More information

Installing, Migrating, and Uninstalling HCM Dashboard

Installing, Migrating, and Uninstalling HCM Dashboard CHAPTER 2 Installing, Migrating, and Uninstalling HCM Dashboard This chapter describes how to install, migrate data from HCM 1.0, and uninstall HCM Dashboard. It includes: HCM Dashboard Server Requirements,

More information

Server Edition. V8 Peregrine User Manual. for Linux and Unix operating systems

Server Edition. V8 Peregrine User Manual. for Linux and Unix operating systems Server Edition V8 Peregrine User Manual for Linux and Unix operating systems Copyright Notice and Proprietary Information All rights reserved. Attix5, 2015 Trademarks - Red Hat is a registered trademark

More information

Dell EMC Repository Manager Version 3.1. Quick Start Guide

Dell EMC Repository Manager Version 3.1. Quick Start Guide Dell EMC Repository Manager Version 3.1 Quick Start Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands Week 2 Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands mkdir, cd, cls, del, copy, attrib, date, path, type, format, exit. Basic commands in LINUX - cat, ls, pwd,,

More information

Veritas NetBackup for MySQL Administrator's Guide

Veritas NetBackup for MySQL Administrator's Guide Veritas NetBackup for MySQL Administrator's Guide Windows and Linux Release 8.1 Veritas NetBackup for MySQL Agent Administrator's Guide Documentation version: 8.1 Legal Notice Copyright 2017 Veritas Technologies

More information

Zend Server Cluster Manager 5.x Installation Guide

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

More information

How To Start Mysql Use Linux Command Line Client In Xampp

How To Start Mysql Use Linux Command Line Client In Xampp How To Start Mysql Use Linux Command Line Client In Xampp It also assumes that you're familiar with the MySQL command-line client and that you And since both Amazon and Bitnami have a free tier, you can

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

CDP Data Center Console User Guide CDP Data Center Console User Guide Version

CDP Data Center Console User Guide CDP Data Center Console User Guide Version CDP Data Center Console User Guide CDP Data Center Console User Guide Version 3.18.2 1 README FIRST Welcome to the R1Soft CDP Data Center Console User Guide The purpose of this manual is to provide you

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

Sun Microsystems. MySQL Backup and Security Best practices on how to run MySQL on Linux in a secure way. Lenz Grimmer

Sun Microsystems. MySQL Backup and Security Best practices on how to run MySQL on Linux in a secure way. Lenz Grimmer MySQL Backup and Security Best practices on how to run MySQL on Linux in a secure way Lenz Grimmer DrupalCon 2008 Szeged, Hungary 28. August 2008 Sun Microsystems 1 Introduction

More information

Restoring data from a backup

Restoring data from a backup Restoring data from a backup The following topics explain how to find a backup to restore and then perform a restore: Finding a backup to restore on page 98 Restoring to the original location on page 101

More information

Installing and Configuring Cisco Unified Real-Time Monitoring Tool

Installing and Configuring Cisco Unified Real-Time Monitoring Tool CHAPTER 2 Installing and Configuring Cisco Unified Real-Time Monitoring Tool You can install Cisco Unified Real-Time Monitoring Tool (RTMT), which works for resolutions 800*600 and above, on a computer

More information

Can Delete Sharing Folder Windows 7 Access Denied

Can Delete Sharing Folder Windows 7 Access Denied Can Delete Sharing Folder Windows 7 Access Denied File and folder permissions on Windows are pretty great when they're working for you but when the OS suddenly decides to deny access to a folder on your

More information

Copyright Heraflux Technologies. Do not redistribute or copy as your own. 1

Copyright Heraflux Technologies. Do not redistribute or copy as your own. 1 @kleegeek davidklee.net heraflux.com in/davidaklee Specialties / Focus Areas / Passions: Performance Tuning Business Continuity Virtualization & Cloud Infrastructure Architecture Health & Efficiency Capacity

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications File Manager allows you to take full control of your website files. You can copy, move, delete, rename and edit files, create and remove directories, change file permissions and upload files from your

More information

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM This guide details the steps required to install and configure MySQL on a CentOS VM Introduction The FUJITSU Cloud Service

More information

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2 Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades 2017-2018 Q2 Facultat d Informàtica de Barcelona This first lab session is focused on getting experience in working

More information

WA2423 JavaScript for Web 2.0 Development. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2423 JavaScript for Web 2.0 Development. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2423 JavaScript for Web 2.0 Development Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

MySQL and Virtualization Guide

MySQL and Virtualization Guide MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit

More information

Dell Protected Workspace Management

Dell Protected Workspace Management Dell Protected Workspace Management Upgrade Guide Dell Protected Workspace Management v4.1 Created and Maintained by Invincea, Inc. Proprietary For Customer Use Only Dell Protected Workspace Management

More information

Agiloft Installation Guide

Agiloft Installation Guide Agiloft Installation Guide HELP-13APR17 CONTENTS 1. Installation Guide............................................ 3 1.1 Pre-Installation for Windows................................ 5 1.2 Pre-Installation

More information

PostMaster Enterprise v8.xx Setup Guide Windows

PostMaster Enterprise v8.xx Setup Guide Windows PostMaster Enterprise v8.xx Setup Guide Windows How Do I Carry Out A Fresh Setup Of PMEv8 The complete installation of PMEv8 covers the following steps Start PMEv8 How Do I Carry Out A Fresh Setup Of PMEv8

More information

Zend Server Cluster Manager 5.6 Installation Guide

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

More information

SQL Server Administration on Linux 2017

SQL Server Administration on Linux 2017 @kleegeek davidklee.net heraflux.com davidaklee Specialties / Focus Areas / Passions: Performance Tuning Business Continuity Virtualization & Cloud Infrastructure Architecture Health & Efficiency Capacity

More information

Lab Working with Linux Command Line

Lab Working with Linux Command Line Introduction In this lab, you will use the Linux command line to manage files and folders and perform some basic administrative tasks. Recommended Equipment A computer with a Linux OS, either installed

More information

Dell EMC Repository Manager Version 3.2. Quick Start Guide

Dell EMC Repository Manager Version 3.2. Quick Start Guide Dell EMC Repository Manager Version 3.2 Quick Start Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

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

Installing and Configuring Cisco Unified Real-Time Monitoring Tool

Installing and Configuring Cisco Unified Real-Time Monitoring Tool CHAPTER 2 Installing and Configuring Cisco Unified Real-Time Monitoring Tool You can install Cisco Unified Real-Time Monitoring Tool (RTMT), which works for resolutions 800*600 and above, on a computer

More information

Lab 2A> ADDING USERS in Linux

Lab 2A> ADDING USERS in Linux Lab 2A> ADDING USERS in Linux Objective In this lab, student will learn how to create user accounts using the Linux operating system. Scenario The XYZ Company has just installed a server running Linux.

More information

Installing IPM on Windows

Installing IPM on Windows CHAPTER 5 This chapter describes how to install the IPM server software on Windows NT, Windows 2000 Professional, or Windows 2000 Server system, and how to install the IPM client software on a Windows

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center MySQL 5.5 Installation and Configuration Guide (for Linux) Abstract This document provides installation and configuration information for MySQL. It includes the procedures

More information

Users, Groups and Permission in Linux

Users, Groups and Permission in Linux Users, Groups and Permission in Linux A small company is using Linux as the main operating and has hired you as a consultant. You completed a site walk through and also met with various individuals for

More information

LevelOne FPS-9021/FPS User Manual. Mini Printer Server w/parallel (USB2.0) Port V

LevelOne FPS-9021/FPS User Manual. Mini Printer Server w/parallel (USB2.0) Port V LevelOne FPS-9021/FPS-9022 Mini Printer Server w/parallel (USB2.0) Port User Manual V1.0.0-0601 CONTENTS 1. INTRODUCTION...1 1.1 Product Introduction... 2 1.2 Product Package... 3 1.3 Network Printing

More information

Std: XI CHAPTER-3 LINUX

Std: XI CHAPTER-3 LINUX Commands: General format: Command Option Argument Command: ls - Lists the contents of a file. Option: Begins with minus sign (-) ls a Lists including the hidden files. Argument refers to the name of a

More information

Cockpit ITSM - Administration - Linux. Technical specification

Cockpit ITSM - Administration - Linux. Technical specification Technical specification Table of contents Introduction... 4 Architecture... 5 Configuration... 7 I. Installed software... 7 II. File location... 7 A. Database... 7 B. Cockpit IT Service Manager...7 III.

More information

Due: February 26, 2014, 7.30 PM

Due: February 26, 2014, 7.30 PM Jackson State University Department of Computer Science CSC 438-01/539-01 Systems and Software Security, Spring 2014 Instructor: Dr. Natarajan Meghanathan Project 1: Exploring UNIX Access Control in a

More information

Commands are in black

Commands are in black Starting From the Shell Prompt (Terminal) Commands are in black / +--------+---------+-------+---------+---------+------ +------ +------ +------ +------ +------ +-- Bin boot dev etc home media sbin bin

More information

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

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

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

WA2442 Introduction to JavaScript. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2442 Introduction to JavaScript. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2442 Introduction to JavaScript Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

TEKLYNX BACKTRACK I N S T A L L A T I O N G U I D E

TEKLYNX BACKTRACK I N S T A L L A T I O N G U I D E TEKLYNX BACKTRACK I N S T A L L A T I O N G U I D E Note Installation Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this

More information

Websoft9 Weblate is a pre-configured, ready to run image for running Weblate on Alibaba Cloud.

Websoft9 Weblate is a pre-configured, ready to run image for running Weblate on Alibaba Cloud. Weblate Image Guide Version 2.16 Websoft9 Weblate is a pre-configured, ready to run image for running Weblate on Alibaba Cloud. Weblate is a free web-based translation tool with tight version control integration.

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

Scoreboard 2.16 Installation Guide. For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit

Scoreboard 2.16 Installation Guide. For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit Scoreboard 2.16 Installation Guide For Apache Tomcat 8.0 On Windows 2003 (or later) Server, 64-bit Updated November 10, 2016 1 Scoreboard and Connect By Spider Strategies Minimum Server Requirements The

More information

Introduction to Computing

Introduction to Computing Chapter 1 Introduction to Computing Unix is an operating system. In a unix environment, the fundamental layer is the hardware which provides the service the users need. The hardware include the CPU, memory,

More information

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms:

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms: Processes The Operating System, Shells, and Python Shell Commands a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms: - Command prompt - Shell - CLI Shell commands

More information

Booting a Galaxy Instance

Booting a Galaxy Instance Booting a Galaxy Instance Create Security Groups First time Only Create Security Group for Galaxy Name the group galaxy Click Manage Rules for galaxy Click Add Rule Choose HTTPS and Click Add Repeat Security

More information

Backing Up And Restoring Your Nagios XI System

Backing Up And Restoring Your Nagios XI System Backing Up And Restoring Your System Purpose This document describes how to backup a installation and restore a installation from a previously made backup. Backups are an important aspect of administration

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

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

Linux/Cygwin Practice Computer Architecture

Linux/Cygwin Practice Computer Architecture Linux/Cygwin Practice 2010 Computer Architecture Linux Login Use ssh client applications to connect (Port : 22) SSH Clients zterm ( http://www.brainz.co.kr/products/products4_2.php ) Putty ( http://kldp.net/frs/download.php/3411/hangulputty-0.58.h2.exe

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

Modifying image file contents with Ghost Explorer. This section includes the following topics:

Modifying image file contents with Ghost Explorer. This section includes the following topics: Modifying image file contents with Ghost Explorer This section includes the following topics: Using Ghost Explorer Viewing image files and their properties Launching a file Extracting a file or directory

More information

Installation Guide. Version

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

More information

Linux Network Administration. MySQL COMP1071 Summer 2017

Linux Network Administration. MySQL COMP1071 Summer 2017 Linux Network Administration MySQL COMP1071 Summer 2017 Databases Database is a term used to describe a collection of structured data A database software package contains the tools used to store, access,

More information

Installing Koha on Windows XP. Amandeep Kapila

Installing Koha on Windows XP. Amandeep Kapila Installing Koha on Windows XP For MLIS Online by Amandeep Kapila 0 Introduction KOHA is an Integrated Library System with all the features that are required in day to day library management operations.

More information

Plesk 8.1 for Windows Backup and Restore Utilities

Plesk 8.1 for Windows Backup and Restore Utilities SWsoft Plesk 8.1 for Windows Backup and Restore Utilities Administrator's Guide (Revision 2.3) (c) 1999-2007 ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703)

More information

Framework Server Manager

Framework Server Manager Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, for any purpose, without the express written permission

More information

Compiere 3.3 Installation Instructions Windows System - Oracle Database

Compiere 3.3 Installation Instructions Windows System - Oracle Database Compiere 3.3 Installation Instructions Windows System - Oracle Database Compiere Learning Services Division Copyright 2010 Consona ERP, inc. All rights reserved www.compiere.com Table of Contents Compiere

More information

Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch

Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch Security Patch Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch Revision 0.5 22 September 2009 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA

More information

AIM Enterprise Platform Software IBM z/transaction Processing Facility Enterprise Edition 1.1.0

AIM Enterprise Platform Software IBM z/transaction Processing Facility Enterprise Edition 1.1.0 z/tpf V1.1 Title: z/tpf File System Review Subtitle: Our Greatest Hits Name: Stephen Record Venue: DBDF Subcommittee AIM Enterprise Platform Software IBM z/transaction Processing Facility Enterprise Edition

More information

Linux Essentials Objectives Topics:

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

More information

Operational DBA In a Nutshell - HandsOn Reference Guide

Operational DBA In a Nutshell - HandsOn Reference Guide 1/12 Operational DBA In a Nutshell - HandsOn Reference Guide Contents 1 Operational DBA In a Nutshell 2 2 Installation of MySQL 2 2.1 Setting Up Our VM........................................ 2 2.2 Installation

More information

Veritas NetBackup for SQLite Administrator's Guide

Veritas NetBackup for SQLite Administrator's Guide Veritas NetBackup for SQLite Administrator's Guide Windows and Linux Release 8.1.1 Documentation version: 8.1.1 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the

More information

Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5

Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Setting Up the Dell DR Series System as an NFS Target on Amanda Enterprise 3.3.5 Dell Engineering September 2015 A Dell Technical White Paper Revisions Date June 2015 September 2015 Description Initial

More information

Installing and Patching Oracle

Installing and Patching Oracle APPENDIXA This section provides supporting information to assist you with the Oracle 11g installation. Note Oracle 11g is available only for a 64-bit architecture. Use the information in this section in

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

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows

Crystal Enterprise. Overview. Contents. Upgrading CE8.5 to CE10 Microsoft Windows Crystal Enterprise Upgrading CE8.5 to CE10 Microsoft Windows Overview This document is intended to assist you upgrade from a Crystal Enterprise (CE) 8.5 system to a CE 10 system. NOTE: The scenario outlined

More information

Installing Intellicus DotNet Client on Windows. Version: 16.0

Installing Intellicus DotNet Client on Windows. Version: 16.0 Installing Intellicus DotNet Client on Windows Version: 16.0 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

CST8207: GNU/Linux Operating Systems I Lab Six Linux File System Permissions. Linux File System Permissions (modes) - Part 1

CST8207: GNU/Linux Operating Systems I Lab Six Linux File System Permissions. Linux File System Permissions (modes) - Part 1 Student Name: Lab Section: Linux File System Permissions (modes) - Part 1 Due Date - Upload to Blackboard by 8:30am Monday March 12, 2012 Submit the completed lab to Blackboard following the Rules for

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.2 Legal Notice Copyright 2016 Veritas Technologies

More information

Table of Contents. About this Guide..3. This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4. Welcome to Pinnacle..

Table of Contents. About this Guide..3. This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4. Welcome to Pinnacle.. Installation Guide Table of Contents About this Guide..3 This workis licensed under a Creative Commons Attribution 2.5 License. Getting Help..4 Welcome to Pinnacle..4 Introduction..4 Organizational Hierarchy..4

More information

Oracle Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure

Oracle Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure Oracle Communications Method of Procedure Oracle Communications Policy Management Configuring NetBackup for Upgrade Method of Procedure E82603-01 January 2017 Page 1 E82603-01 Oracle Communications Oracle

More information

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER CHAPTER 4 Revised: September 27, 2012, Introduction This chapter describes the following utilities: Working with SCE Platform Files, page 4-1 The User Log, page 4-5 Managing Syslog, page 4-8 Flow Capture,

More information

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux)

v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) v7.0 HP Intelligent Management Center MySQL 5.6 Installation and Configuration Guide (for Linux) Abstract This document is intended to be the installation and configuration guide for MySQL in addition

More information

Operating Systems Linux 1-2 Measurements Background material

Operating Systems Linux 1-2 Measurements Background material Operating Systems Linux 1-2 Measurements Background material Introduction The Linux measurements were designed to allow you to have an impression about the administration of Linux severs along with providing

More information