Building Elastix-1.3 High Availability Clusters with Redfone fonebridge2, DRBD and Heartbeat

Size: px
Start display at page:

Download "Building Elastix-1.3 High Availability Clusters with Redfone fonebridge2, DRBD and Heartbeat"

Transcription

1 Building Elastix-1.3 High Availability Clusters with Redfone fonebridge2, DRBD and Heartbeat Disclaimer DRBD and Heartbeat are not programs maintained or supported by Redfone Communications LLC. Do not contact Redfone for support on these programs. Use the information in this document at your own risk. Redfone disavows any potential liability for the contents of this document. Use of the concepts, examples, and/or other content of this document are entirely at your own risk. All copyrights are owned by their owners, unless specifically noted otherwise. Use of a term in this document should not be regarded as affecting the validity of any trademark or service mark. You are strongly recommended to take a backup of your system before major installation and backups at regular intervals. Credits Special thanks to Telesoft Integrando Technologies whose earlier documentation on doing DRBD in Elastix was a great reference for this work;

2 Operational Overview What is DRBD? DRBD refers to block devices designed as a building block to form high availability (HA) clusters. This is done by mirroring a whole block device via an assigned network. It is shown as network raid-1- DRBD. In the illustration above, the two orange boxes represent two servers that form an HA cluster. The boxes contain the usual components of a Linux kernel: file system, buffer cache, disk scheduler, disk drivers, TCP/IP stack and network interface card (NIC) driver. The black arrows illustrate the flow of data between these components. The orange arrows show the flow of data, as DRBD mirrors the data of a high availably service from the active node of the HA cluster to the standby node of the HA cluster. (Source In our implementation we will be creating a DRBD synchronized partition on /dev/sda3 called replica. This partition will contain only those directories and files we want synchronized between our primary and secondary server. Namely, the important Asterisk and Elastix related directories and files.

3 What is Heartbeat? The upper part of this picture shows a cluster where the left node is currently active, i.e., the service's IP address is currently on the left node, and the client machines are talking to the service via its service's IP address on the active (left) node. The service, including its IP address, can be migrated to the other node at any time, either due to a failure of the active node or as an administrative action. The lower part of the illustration shows a degraded cluster. In HA speak the migration of a service is called failover, the reverse process is called failback and when the migration is triggered by an administrator it is called switchover. (Source In our implementation we will utilize Heartbeat to monitor the state of two servers and during a failover mount our synchronized partition on the secondary server and start up the following resources/applications; fonulator, asterisk, mysql and http. The fonulator utility will re-configure the fonebridge to reroute T1/E1 traffic to the secondary server as specified in /etc/redfone.conf and asterisk, mysql and http start up all aspects of Elastix on the secondary. During failover our floating IP address will move from the primary to the secondary server. This IP address should be used to register SIP and other VoIP endpoints against.

4 Equipment Overview This installation scenario assumes two servers, each with three Ethernet interfaces and a single SATA hard drive. You may have a different type of hard drive (IDE, SCSI, etc) and therefore some of these steps may need to be modified to better reflect your environment. A fonebridge2 (providing T1/E1 connectivity), interconnected with the two servers via a dedicated Ethernet switch or on a shared managed switch with an isolated VLAN for fonebridge to Asterisk traffic. It is also possible to implement this with only two Ethernet interfaces. Under those circumstances it would be advisable to use one Eth for the fonebridge and the other for IP, heartbeat and DRBD traffic. Network Diagram

5 DRBD Install and Configuration The following steps are to be performed on both primary and secondary servers; 1. Boot Elastix-1.3 Install CD 2. From boot menu, type advanced and enter. 3. During install routine choose to manually partition hard drive. The following is based on a GB SATA Create root (/), ext3 partition with 6144MB (sda1) Create swap partition with 3072MB (sda2) 4. The remainder of the install routine is standard. 5. After installation and booting perform upgrade yum y update 6. Ensure /boot/grum/menu.1 st to boot non-xen kernel unless you need the Xen kernel. default=1 7. Create partition that will contain the replicated data fdisk /dev/sda Add a new partion (n) Primary (p) Partition number (3) Press enter until returned to fdisk command prompt NOTE: if your servers have two different sized hard drives it is imperative that the third partition is identical in size or they will never synchronize over DRBD. Do this by accepting the default first cylinder and then specifying the Last cylinder with the +sizem option. Ex M. Make these same specifications on both servers. Press t to change the partition system ID Press 3 to choose partition number Choose HEX 83 for type Press w to save changes RESTART SERVER 8. Format newly made partition mke2fs j /dev/sda3 9. Now we delete the file system from the disk we just created dd if=/dev/zero bs=1m count=1 of=/dev/sda3; sync 10. Install DRBD, Heartbeat and dependencies with yum. (or install_utilities script) yum install drbd yum install kmod-drbd82 yum install OpenIPMI-libs yum install heartbeat-pils yum install openhpi

6 yum install heartbeat yum install heartbeat-stonith 11. To ensure proper host name to IP resolution it is recommended that you manually update the /etc/hosts file to reflect proper host-to-ip mapping primary.yourdomain.com secondary.yourdomain.com primary.yourdomain.com ::1 localhost6.localdomain6 localhost6 12. DRBD allows us to write the declared partition in both members of the cluster. In our case /dev/sda3. To make this happen we need to create a virtual partition called /dev/drbd Edit /etc/drbd.conf on both primary and secondary servers. drbd.conf file must be identical on both servers. Modify this sample to meet your particular needs. resource "r0" { protocol A; disk { on-io-error pass_on; } startup { wfc-timeout 5; degr-wfc-timeout 3; } syncer { rate 100M; } on primary.yourdomain.com { device /dev/drbd0; disk /dev/sda3; address :7789; meta-disk internal; } on secondary.yourdomain.com { device /dev/drbd0; disk /dev/sda3; address :7789; meta-disk internal; } } 14. Before continuing, change the name of the server in the Elastix web interface. 15. Now we create the virtual partition /dev/drdb0 on both servers drbdadm create-md r0 16. Start drbd service on both servers to begin synchronization process. service drbd start 17. Verify sync process with the following command service drbd status

7 18. Initially, both servers will be secondary. We need to assign who is the primary. Enter the following command on the primary server only drbdsetup /dev/drbd0 primary -o 19. Check drbd status again with service drbd status. You should obtain a status similar to the following; # service drbd status drbd driver loaded OK; device status: version: (api:86/proto:86) SVN Revision: 2881 build by buildsvn@c5-i386-build, :22:43 0: cs:connected st:primary/secondary ds:uptodate/uptodate A r--- ns: nr:0 dw:0 dr: al:0 bm:170 lo:0 pe:0 ua:0 ap:0 resync: used:0/31 hits:28977 misses:85 starving:0 dirty:0 changed:85 act_log: used:0/127 hits:0 misses:0 starving:0 dirty:0 changed:0 20. We can determine the role of a server by executing the following; drbdadm state r0 The primary server should return; # drbdadm state r0 Primary/Secondary 21. Primary Server Only: Now we can mount the virtual partition /dev/drbd0, but first we must format the partition with ext3 using the following command mke2fs j /dev/drbd0 mkdir /replica mount /dev/drbd0 /replica 22. Primary Server Only: Now we will copy all of the directories we want synchronized between the two servers to our new partition, remove the original directories and then create symbolic links to replace them. Directories of interest are; /etc/asterisk /var/lib/asterisk /usr/lib/asterisk /var/spool/asterisk /var/lib/mysql /var/log/asterisk /var/www 23. Copy, remove and link. (Or create_directories script which automates this step) cd /replica tar -zcvf etc-asterisk.tgz /etc/asterisk tar -zxvf etc-asterisk.tgz

8 tar -zcvf var-lib-asterisk.tgz /var/lib/asterisk tar -zxvf var-lib-asterisk.tgz tar -zcvf usr-lib-asterisk.tgz /usr/lib/asterisk/ tar -zcvf var- /var/www/ tar -zxvf usr-lib-asterisk.tgz tar -zcvf var-spool-asterisk.tgz /var/spool/asterisk/ tar -zxvf var-spool-asterisk.tgz tar -zcvf var-lib-mysql.tgz /var/lib/mysql/ tar -zxvf var-lib-mysql.tgz tar -zcvf var-log-asterisk.tgz /var/log/asterisk/ tar -zxvf var-log-asterisk.tgz tar -zxvf var- rm -rf /etc/asterisk rm -rf /var/lib/asterisk rm -rf /usr/lib/asterisk/ rm -rf /var/spool/asterisk rm -rf /var/lib/mysql/ rm -rf /var/log/asterisk/ ln -s /replica/etc/asterisk/ /etc/asterisk ln -s /replica/var/lib/asterisk/ /var/lib/asterisk ln -s /replica/usr/lib/asterisk/ /usr/lib/asterisk ln -s /replica/var/spool/asterisk/ /var/spool/asterisk ln -s /replica/var/lib/mysql/ /var/lib/mysql ln -s /replica/var/log/asterisk/ /var/log/asterisk ln -s /replica/var/www /var/www 24. Restart mysql server service mysqld restart Heartbeat Configuration 1. Remember to stop any boot up services that should be controlled by heartbeat. These services will be controlled by heartbeat on the server that is in control. chkconfig asterisk off chkconfig mysqld off chkconfig httpd off

9 2. Edit the /etc/ha.d/ha.cf file. This is a basic config file that provides all of our required functionality. debugfile /var/log/ha-debug logfile /var/log/ha-log logfacility local0 keepalive 2 deadtime 20 warntime 10 initdead 40 udpport 694 bcast eth1 auto_failback off node primary.yourdomain.com node secondary.yourdomain.com 3. Edit /etc/ha.d/haresources. This is where we specify which is our primary server, the name of the drbd partition we will mount and where, our floating IP address ( in this example on eth1 with a 24 bit subnet mask) and the init.d scripts that will be started during a failover or switchover (fonulator, asterisk, mysqld, httpd) primary.yourdomain.com drbddisk::r0 Filesystem::/dev/drbd0::/replica::ext3 IPaddr:: /24/eth1/ fonulator asterisk mysqld httpd 4. Edit /etc/ha.d/authkeys. This provides a level of security/authentication between the nodes. auth 1 1 sha1 B!gb@dUndUglIp@$$werd 5. Change permissions on the /etc/ha.d/authkeys file chmod 600 /etc/ha.d/authkeys 6. Configure heartbeat to initialize at boot chkconfig --add heartbeat 7. Restart drbd on both servers service drbd restart 8. Verify that both servers are currently in secondary state drbdadm state r0 Result should be Secondary/Secondary on both 9. Restart heartbeat service heartbeat restart

10 10. Wait a few moments are re-check the state of the servers. drbdadm state r0 Result this time should be Primary/Secondary on the primary server 11. Execute df h on the primary to confirm that our /dev/drbd0 partition is mounted and in use. # df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 5.9G 1.9G 3.8G 33% / tmpfs 1.5G 0 1.5G 0% /dev/shm /dev/drbd0 138G 305M 131G 1% /replica 12. You can also monitor the synchronization process with the following command watch -n 1 cat /proc/drbd Install and configure fonebridge Support 1. Install fonulator utility (install_utilities script) rpm -ivh 2. Download sample redfone.conf file 1. cd /etc/ 2. wget 3. Edit redfone.conf to match your requirements Refer to fonebridge general install guide for details and options 4. Download fonulator initd script cd /etc/init.d wget mv fonulator_initd_script fonulator chmod +x fonulator 5. Reboot both servers and confirm functionality. Under normal operation your primary server should boot, mount drbd partition and start up those init scripts specified in /etc/ha.d/haresources.

11 6. Verify drbd partition is mounted by executing df h. You should see something similar to the following. # df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 5.9G 1.8G 3.8G 32% / tmpfs 125M 0 125M 0% /dev/shm /dev/drbd0 5.7G 409M 5.0G 8% /replica Troubleshooting 1. Split brain or nodes running in standalone mode. Ex; cs:standalone st:secondary/unknown ds:uptodate/dunknown, drbdadm -- --discard-my-data connect all DRBD documentation Heartbeat documentation Centos DRBD/Heartbeat Howtos Last updated December 23, 2008

============================================== ==============================================

============================================== ============================================== Elastix High Availability ( DRBD + Heartbeat ) ============================================== this is How to configure Documentation :) ============================================== Before we Start :

More information

Trixbox High-Availability with fonebridge Tutorial

Trixbox High-Availability with fonebridge Tutorial Trixbox High-Availability with fonebridge Tutorial REDFONE Communications Table of Contents i Table of Contents 1 Introduction 1.1 Overview... 1 1.1.1 Core components & requirements... 1 1.1.2 Operational

More information

ELASTIX HIGH AVAILABILITY (HA) MODULE

ELASTIX HIGH AVAILABILITY (HA) MODULE ELASTIX HIGH AVAILABILITY (HA) MODULE Authors: Alfio Muñoz, Alberto Santos Version: 1.1 Date: March 28, 2016 2016 PaloSanto Solutions All rights reserved. This documentation is public and its intellectual

More information

Clustering Quick Installation Guide. for PacketFence version 6.5.0

Clustering Quick Installation Guide. for PacketFence version 6.5.0 Clustering Quick Installation Guide for PacketFence version 6.5.0 Clustering Quick Installation Guide by Inverse Inc. Version 6.5.0 - Jan 2017 Copyright 2015 Inverse inc. Permission is granted to copy,

More information

SIOS Protection Suite for Linux: DataKeeper for Linux. Evaluation Guide

SIOS Protection Suite for Linux: DataKeeper for Linux. Evaluation Guide SIOS Protection Suite for Linux: DataKeeper for Linux This document and the information herein is the property of SIOS Technology Corp. Any unauthorized use and reproduction is prohibited. SIOS Technology

More information

LINBIT DRBD Proxy Configuration Guide on CentOS 6. Matt Kereczman 1.2,

LINBIT DRBD Proxy Configuration Guide on CentOS 6. Matt Kereczman 1.2, LINBIT DRBD Proxy 3.1.1 Configuration Guide on CentOS 6 Matt Kereczman 1.2, 2018-03-20 Table of Contents 1. About this guide.......................................................................................

More information

ClusteringQuickInstallationGuide. forpacketfenceversion6.2.1

ClusteringQuickInstallationGuide. forpacketfenceversion6.2.1 ClusteringQuickInstallationGuide forpacketfenceversion6.2.1 ClusteringQuickInstallationGuide byinverseinc. Version6.2.1-Jul2016 Copyright 2015Inverseinc. Permissionisgrantedtocopy,distributeand/ormodifythisdocumentunderthetermsoftheGNUFreeDocumentationLicense,Version

More information

Samba HA Cluster on SLES 9

Samba HA Cluster on SLES 9 Samba HA Cluster on SLES 9 High Availability with Samba 3 on Linux Rolf Schmidt Support Engineer Novell, Inc. Rolf.Schmidt@novell.com May 29, 2006 Agenda Introduction Samba Setup Definitions High Availability

More information

Reference Design and How-To For

Reference Design and How-To For Reference Design and How-To For High Availability 2-Node XenServer Pool Provides Full Functionality with Live Migration Without External Shared Storage for HA-Lizard Version 1.3.1 1 P a g e The information

More information

iscsi-ha: High Availability 2-Node XenServer Pool How-To For use with XenServer and Xen Cloud Platform

iscsi-ha: High Availability 2-Node XenServer Pool How-To For use with XenServer and Xen Cloud Platform Reference Design and How-To For High Availability 2-Node XenServer Pool Provides Full Functionality with Live Migration Without External Shared Storage for HA-Lizard Version 1.3.7 1 P a g e The information

More information

Linux-HA Clustering, no SAN. Prof Joe R. Doupnik Ingotec, Univ of Oxford, MindworksUK

Linux-HA Clustering, no SAN. Prof Joe R. Doupnik Ingotec, Univ of Oxford, MindworksUK Linux-HA Clustering, no SAN Prof Joe R. Doupnik jrd@netlab1.oucs.ox.ac.uk Ingotec, Univ of Oxford, MindworksUK Ingotec offers IT to charities A charity is receiving a new server, having GroupWise, POSIX

More information

SpycerBox High Availability Administration Supplement

SpycerBox High Availability Administration Supplement Supplement: High Availability (Version 1.0) SpycerBox High Availability Administration Supplement Supplement for the SpycerBox Ultra/Flex hardware guide: High Availability Document Version 1.0 Copyright

More information

HA NFS Cluster using Pacemaker and DRBD on RHEL/CentOS 7. Matt Kereczman Version 1.5,

HA NFS Cluster using Pacemaker and DRBD on RHEL/CentOS 7. Matt Kereczman Version 1.5, HA NFS Cluster using Pacemaker and DRBD on RHEL/CentOS 7 Matt Kereczman Version 1.5, 2018-02-26 Table of Contents 1. Abstract..............................................................................................

More information

SIOS Protection Suite for Linux: Apache/MySQL. Evaluation Guide

SIOS Protection Suite for Linux: Apache/MySQL. Evaluation Guide : Apache/MySQL This document and the information herein is the property of SIOS Technology Corp. Any unauthorized use and reproduction is prohibited. SIOS Technology Corp. makes no warranties with respect

More information

High Availability and Disaster Recovery

High Availability and Disaster Recovery High Availability and Disaster Recovery ScienceLogic version 8.4.0 rev 2 Table of Contents High Availability & Disaster Recovery Overview 4 Overview 4 Disaster Recovery 4 High Availability 4 Differences

More information

Installation and Reference Guide High Availability iscsi Add-On for HA-Lizard

Installation and Reference Guide High Availability iscsi Add-On for HA-Lizard Installation and Reference Guide High Availability iscsi Add-On for HA-Lizard Version 1.4 1 P a g e The information in this document and any product or service specifications referred to herein are subject

More information

The Zenoss Enablement Series:

The Zenoss Enablement Series: The Zenoss Enablement Series: Zenoss Service Dynamics Impact and Event Management on Red Hat Cluster Suite Configuration Guide Document Version 424-P1 Zenoss, Inc. www.zenoss.com Copyright 2013 Zenoss,

More information

ExpressCluster X 2.0 for Linux

ExpressCluster X 2.0 for Linux ExpressCluster X 2.0 for Linux Installation and Configuration Guide 03/31/2009 3rd Edition Revision History Edition Revised Date Description First 2008/04/25 New manual Second 2008/10/15 This manual has

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL CONFIGURING iscsi AUGUST 2012 You can use a iscsi storage network in your STRM deployment. This document provides information on configuring and using iscsi devices with your deployment. Unless

More information

Partitioning and Formatting Guide

Partitioning and Formatting Guide Partitioning and Formatting Guide Version 1.2 Date 05-15-2006 Partitioning and Formatting Guide This guide is designed to explain how to setup your drive with the correct partition and format for your

More information

MySQL High Availability on the Pacemaker cluster stack. Brian Hellman, Florian Haas

MySQL High Availability on the Pacemaker cluster stack. Brian Hellman, Florian Haas MySQL High Availability on the Pacemaker cluster stack Brian Hellman, Florian Haas Table of Contents 1. Introduction...........................................................................................

More information

TwinStar Plus: How it Works

TwinStar Plus: How it Works TwinStar Plus: How it Works Document version: 1.0 Modification: May 7, 2015 PM0630.01-2015 Xorcom Ltd. www.xorcom.com Page 1 of 15 Table of Contents 1. An Example of an Asterisk High Availability Cluster...

More information

ExpressCluster for Linux Ver3.0

ExpressCluster for Linux Ver3.0 ExpressCluster for Linux Ver3.0 Cluster Installation and Configuration Guide (Shared Disk) 2004.06.30 1st Revision Revision History Revision Revision date Descriptions 1 2004/06/30 New manual 2 EXPRESSCLUSTER

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

Course 55187B Linux System Administration

Course 55187B Linux System Administration Course Outline Module 1: System Startup and Shutdown This module explains how to manage startup and shutdown processes in Linux. Understanding the Boot Sequence The Grand Unified Boot Loader GRUB Configuration

More information

Avaya Aura System Manager 5.2 HA and CLI Restore

Avaya Aura System Manager 5.2 HA and CLI Restore Avaya Aura System Manager 5.2 HA and CLI Restore Version: 1.0 June 22nd, 2010 Table of Contents 1. Introduction...3 2. HA...3 2.1 Overview...3 2.2 How to setup Failure cluster...4 3. CLI Restore...14 3.1

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

Mashery Local Troubleshooting Guide

Mashery Local Troubleshooting Guide Local Troubleshooting Guide General Guidelines for how to Gather Detailed Information on an issue Run Local Debug Utilities (see installation and configuration guide for configuration details) Turn on

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Contents Introduction Prerequisites Requirements Components Used Background Information Configure Step 1. Prepare the firmware images (and

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

High Availability. Prepared by Vaibhav Daud

High Availability. Prepared by Vaibhav Daud High Availability Prepared by Vaibhav Daud Table of Contents Purpose Prerequisite Base Plan Base Architecture Overview Configuration Steps Purpose High Availability This is to ensure that the application

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

Installation Instructions for Xorcom TwinStar Plus Servers

Installation Instructions for Xorcom TwinStar Plus Servers Document version: 1.0 Overview Installation Instructions for Xorcom TwinStar Plus Servers This document describes the configuration process which must be performed at the customer site for pre-configured

More information

EXPRESSCLUSTER X 4.0 for Linux

EXPRESSCLUSTER X 4.0 for Linux EXPRESSCLUSTER X 4.0 for Linux Installation and Configuration Guide April 17, 2018 1st Edition Revision History Edition Revised Date Description 1st Apr 17, 2018 New manual. Copyright NEC Corporation 2018.

More information

ExpressCluster X LAN V1 for Linux

ExpressCluster X LAN V1 for Linux ExpressCluster X LAN V1 for Linux Installation and Configuration Guide Revision 1NA Copyright NEC Corporation of America 2006-2007. All rights reserved. Copyright NEC Corporation 2006-2007. All rights

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

CIS 191A Final Exam. Fall CIS 191 Final Exam

CIS 191A Final Exam. Fall CIS 191 Final Exam CIS 191A Final Exam Fall 2008 CIS 191 Final Exam The final for CIS 191A is composed several parts: A. (10 points) Questions B. (5 points) Checklist C. (10 points) Troubleshooting D. (35 points) Building

More information

Reference Design and How-To For

Reference Design and How-To For Reference Design and How-To For High Availability 2-Node XenServer Pool Provides Full Functionality with Live Migration Without External Shared Storage for HA-Lizard and XenServer 6.x Version 2.1 IMPORTANAT:

More information

Configuring Control Center 1.0.x for HA

Configuring Control Center 1.0.x for HA The Zenoss Enablement Series: Configuring Control Center 1.0.x for HA Document Version 500-P4 Zenoss, Inc. www.zenoss.com Copyright 2015-2016 Zenoss, Inc. 11305 Four Points Drive, Bldg. 1 - Suite 300,

More information

Installing caos with Cinch on Floppy Disk

Installing caos with Cinch on Floppy Disk Installing caos with Cinch on Floppy Disk Troy Andrew Johnson May 21, 2004 Abstract cinch is the caos Linux (http://www.caosity.org/) installer. Prerequisites What you need: two floppy disks (at least)

More information

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3 NetXplorer Centralized NetEnforcer Management Software Installation Guide P/N D357006 R3 Important Notice Important Notice Allot Communications Ltd. ("Allot") is not a party to the purchase agreement

More information

Exam LFCS/Course 55187B Linux System Administration

Exam LFCS/Course 55187B Linux System Administration Exam LFCS/Course 55187B Linux System Administration About this course This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

ExpressCluster X 3.1 for Linux

ExpressCluster X 3.1 for Linux ExpressCluster X 3.1 for Linux Installation and Configuration Guide 10/11/2011 First Edition Revision History Edition Revised Date Description First 10/11/2011 New manual Copyright NEC Corporation 2011.

More information

TimeIPS Server. IPS256T Virtual Machine. Installation Guide

TimeIPS Server. IPS256T Virtual Machine. Installation Guide TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision

More information

EXPRESSCLUSTER X 3.3 for Linux

EXPRESSCLUSTER X 3.3 for Linux EXPRESSCLUSTER X 3.3 for Linux Installation and Configuration Guide 04/10/2017 5th Edition Revision History Edition Revised Date Description 1st 02/09/2015 New manual. 2nd 06/30/2015 Corresponds to the

More information

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx.

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx. Adding a New Disk, page 1 Mounting the Replication Set from Disk to tmpfs After Deployment, page 3 Manage Disks to Accommodate Increased Subscriber Load, page 5 Adding a New Disk This section describes

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

Migration of Existing NSM Server from standalone to an Extended HA environment

Migration of Existing NSM Server from standalone to an Extended HA environment Migration of Existing NSM Server from standalone to an Extended HA environment The below procedure is to migrate the existing Standalone NSM server setup to a 4 Server HA environment where the GUI Server

More information

ExpressCluster for Linux Version 3 ExpressCluster LAN Installation Guide

ExpressCluster for Linux Version 3 ExpressCluster LAN Installation Guide ExpressCluster for Linux Version 3 ExpressCluster LAN Installation Guide Revision 5us EXPRESSCLUSTER is a registered trademark of NEC Corporation. Linux is a trademark or registered trademark of Linus

More information

ExpressCluster X 3.2 for Linux

ExpressCluster X 3.2 for Linux ExpressCluster X 3.2 for Linux Installation and Configuration Guide 5/23/2014 2nd Edition Revision History Edition Revised Date Description 1st 2/19/2014 New manual 2nd 5/23/2014 Corresponds to the internal

More information

TECHNICAL WHITE PAPER. Using Stateless Linux with Veritas Cluster Server. Linux

TECHNICAL WHITE PAPER. Using Stateless Linux with Veritas Cluster Server. Linux TECHNICAL WHITE PAPER Using Stateless Linux with Veritas Cluster Server Linux Pranav Sarwate, Assoc SQA Engineer Server Availability and Management Group Symantec Technical Network White Paper Content

More information

Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact

Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact CustomerCare. All basic configurations outlined in the online

More information

ExpressCluster for Linux Ver3.0

ExpressCluster for Linux Ver3.0 ExpressCluster for Linux Ver3.0 Cluster Installation and Configuration Guide (Mirror Disk) 2004.06.30 1st Revision Revision History Revision Revision date Descriptions 1 2004/06/30 New manual 2 EXPRESSCLUSTER

More information

ExpressCluster X 1.0 for Linux

ExpressCluster X 1.0 for Linux ExpressCluster X 1.0 for Linux Installation and Configuration Guide 10/12/2007 Fifth Edition Revision History Edition Revised Date Description First 2006/09/08 New manual Second 2006/12/12 EXPRESSCLUSTER

More information

Document Number ECX-Exchange2010-HD-QMG, Version 1, December 2015 Copyright 2015 NEC Corporation.

Document Number ECX-Exchange2010-HD-QMG, Version 1, December 2015 Copyright 2015 NEC Corporation. EXPRESSCLUSTER X for Windows Quick Migration Guide for Microsoft Exchange Server 2010 Migration from a single-node configuration to a three-node hybrid disk cluster Version 1 NEC EXPRESSCLUSTER X 3.x for

More information

Document Number ECX-Exchange2010-Migration-QSG, Version 1, May 2015 Copyright 2015 NEC Corporation.

Document Number ECX-Exchange2010-Migration-QSG, Version 1, May 2015 Copyright 2015 NEC Corporation. EXPRESSCLUSTER X for Windows Quick Start Guide for Microsoft Exchange Server 2010 Migration from a single-node configuration to a two-node mirror disk cluster Version 1 NEC EXPRESSCLUSTER X 3.x for Windows

More information

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

ExpressCluster X V1 for Linux

ExpressCluster X V1 for Linux ExpressCluster X V1 for Linux Getting Started Guide Revision 1NA Copyright NEC Corporation of Americ 2006-2007. All rights reserved. Copyright NEC Corporation 2006-2007. All rights reserved. Disclaimer

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 3 Virtual Machine Resource and Performance Checks,

More information

INSTALLATION. Security of Information and Communication Systems

INSTALLATION. Security of Information and Communication Systems Security of Information and Communication Systems INSTALLATION Table of contents 1.Introduction...2 2.Installation...3 2.1.Hardware requirement...3 2.2.Installation of the system...3 2.3.Installation of

More information

Resource Manager Collector RHCS Guide

Resource Manager Collector RHCS Guide The Zenoss Enablement Series: Resource Manager Collector RHCS Guide Document Version 424-D1 Zenoss, Inc. www.zenoss.com Copyright 2014 Zenoss, Inc., 275 West St., Suite 204, Annapolis, MD 21401, U.S.A.

More information

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7 First Published: November 20, 2015 Contents Scope of MOP... 4 Release Components... 4 Pre Requisites... 4 Assumptions... 4 Process Information... 5 Upgrade Timing... 5 Requirements... 5 Pre Maintenance...

More information

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning)

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning) This process allows you to back up your fit-pc2 workstation (or any USB-bootable computer) so you can quickly and easily restore your computer to its original state in the event of a hard drive failure,

More information

How to Deploy Axon on VMware vcenter

How to Deploy Axon on VMware vcenter How to Deploy Axon on VMware vcenter Copyright Informatica LLC 2017. Informatica, the Informatica logo, Intelligent Data Lake, Big Data Mangement, and Live Data Map are trademarks or registered trademarks

More information

VMware Infrastructure Update 1 for Dell PowerEdge Systems. Deployment Guide. support.dell.com

VMware Infrastructure Update 1 for Dell PowerEdge Systems. Deployment Guide.   support.dell.com VMware Infrastructure 3.0.2 Update 1 for Dell PowerEdge Systems Deployment Guide www.dell.com support.dell.com Notes and Notices NOTE: A NOTE indicates important information that helps you make better

More information

ExpressCluster X 1.0 for Linux

ExpressCluster X 1.0 for Linux ExpressCluster X 1.0 for Linux Installation and Configuration Guide 12/12/2006 Second Edition Revision History Edition Revised Date Description First 2006/09/08 New manual Second 2006/12/12 EXPRESSCLUSTER

More information

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks SANS Institute - Operations Essentials Operating System Installation Guidelines The following document guides you step-by-step through the process of creating a dualboot system. Even if you do not use

More information

Synology High Availability (SHA)

Synology High Availability (SHA) Synology High Availability (SHA) Based on DSM 5.1 Synology Inc. Synology_SHAWP_ 20141106 Table of Contents Chapter 1: Introduction... 3 Chapter 2: High-Availability Clustering... 4 2.1 Synology High-Availability

More information

ExpressCluster for Linux Version 3 Web Manager Reference. Revision 6us

ExpressCluster for Linux Version 3 Web Manager Reference. Revision 6us ExpressCluster for Linux Version 3 Web Manager Reference Revision 6us EXPRESSCLUSTER is a registered trademark of NEC Corporation. Linux is a trademark or registered trademark of Linus Torvalds in the

More information

VMware vsphere Storage Appliance Installation and Configuration

VMware vsphere Storage Appliance Installation and Configuration VMware vsphere Storage Appliance Installation and Configuration vsphere Storage Appliance 1.0 vsphere 5.0 This document supports the version of each product listed and supports all subsequent versions

More information

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space NEC Express Servers NEC Express5800/ft Series 1st Edition 03-2013 Introduction This document is intended as a

More information

Linux Quick Installation Guide

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

More information

ForeScout CounterACT Resiliency Solutions

ForeScout CounterACT Resiliency Solutions ForeScout CounterACT Resiliency Solutions User Guide CounterACT Version 7.0.0 About CounterACT Resiliency Solutions Table of Contents About CounterACT Resiliency Solutions... 5 Comparison of Resiliency

More information

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command.

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command. How to Increase the size of a Linux LVM by adding a new disk This post will cover how to increase the disk space for a VMware virtual machine running Linux that is using logical volume manager (LVM). First

More information

ExpressCluster X 2.1 for Windows

ExpressCluster X 2.1 for Windows ExpressCluster X 2.1 for Windows Getting Started Guide 09/30/2009 Second Edition Revision History Edition Revised Date Description First 06/15/2009 New manual Second 09/30/2009 This manual has been updated

More information

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit

Stop all processes and then reboot - same as above startx. Log in as superuser from current login exit Starting & Stopping shutdown -h now Shutdown the system now and do not reboot shutdown -r 5 Shutdown the system in 5 minutes and reboot shutdown -r now Shutdown the system now and reboot reboot Stop all

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine ISE Features Not Supported in a Virtual Machine, page 1 Supported VMware Versions, page 1 Support for VMware vmotion, page 2 Support for Open Virtualization Format, page 2 Virtual Machine Requirements,

More information

FONEBridge2 Installation Guide

FONEBridge2 Installation Guide FONEBridge2 Installation Guide Version 1.0 Objective The present document is intended to explain in the greatest possible detail all steps required to install, configure and maintain FONEBridge2 devices.

More information

Parallels Containers for Windows 6.0

Parallels Containers for Windows 6.0 Parallels Containers for Windows 6.0 Deploying Microsoft Clusters June 10, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse

More information

ExpressCluster X 1.0 for Windows

ExpressCluster X 1.0 for Windows ExpressCluster X 1.0 for Windows Getting Started Guide 6/22/2007 Third Edition Revision History Edition Revised Date Description First 09/08/2006 New manual Second 12/28/2006 Reflected the logo change

More information

1. Set up the storage to allow access to the LD(s) by the server following the NEC storage user guides.

1. Set up the storage to allow access to the LD(s) by the server following the NEC storage user guides. Overview Server running Red Hat Enterprise Linux (RHEL) must be configured to recognize and work with NEC storage systems. The following procedure demonstrates the steps necessary to configure multipath

More information

Performing Maintenance Operations

Performing Maintenance Operations This chapter describes how to back up and restore Cisco Mobility Services Engine (MSE) data and how to update the MSE software. It also describes other maintenance operations. Guidelines and Limitations,

More information

Cisco Prime Performance 1.3 Installation Requirements

Cisco Prime Performance 1.3 Installation Requirements 1 CHAPTER Cisco Prime Performance 1.3 Installation Requirements The following topics provide the hardware and software requirements for installing Cisco Prime Performance Manager 1.3: Gateway and Unit

More information

CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================

CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================ Requirements :: --------------- CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================ * I prepared my stand alone RTAI for the following hardware configurations.

More information

ScaleArc for SQL Server Release Notes

ScaleArc for SQL Server Release Notes ScaleArc for SQL Server 3.6.1 Release Notes Trademarks ScalArc, Inc. 2015 ScaleArc 2015 ALL RIGHTS RESERVED. THIS DOCUMENT IS PROPRIETARY TO SCALARC, INC., AND MAY NOT BE REVISED, MODIFIED OR OTHERWISE

More information

ExpressCluster X 3.1 for Solaris

ExpressCluster X 3.1 for Solaris ExpressCluster X 3.1 for Solaris Getting Started Guide 10/11/2011 First Edition Revision History Edition Revised Date Description First 10/11/2011 New manual Copyright NEC Corporation 2011. All rights

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. OPENFILER INSTALLATION...

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 2 Virtual Machine Resource and Performance Checks,

More information

ExpressCluster for Linux Version 3 ExpressCluster SAN Installation Guide

ExpressCluster for Linux Version 3 ExpressCluster SAN Installation Guide ExpressCluster for Linux Version 3 ExpressCluster SAN Installation Guide Revision 5us EXPRESSCLUSTER is a registered trademark of NEC Corporation. Linux is a trademark or registered trademark of Linus

More information

SAP HANA Backup Guide (for Ivy-Bridge Model)

SAP HANA Backup Guide (for Ivy-Bridge Model) SAP HANA Backup Guide (for Ivy-Bridge Model) Version 1.1 2014/12/06 NEC SAP Global Conpetence Center Page 1 C NEC Corporation 2014 Version history Version Date Revision contents 1.0 2014/10/06 Created

More information

SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER

SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER Version 1.1 2005 Promise Technology, Inc. All rights reserved. SuperTrak EX8300, EX8350 RAID 6 Upgrade & Primer Copyright 2005 Promise Technology, Inc.

More information

Installing. ServerXchange. ServerXchange ControlCenter Installation

Installing. ServerXchange. ServerXchange ControlCenter Installation Installing 2 ServerXchange Before you install EnsimServerXchange, be sure you have the necessary information and technology architecture. Much of this will be basic for you, but we have found that collecting

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. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

MongoDB Management Suite Manual Release 1.4

MongoDB Management Suite Manual Release 1.4 MongoDB Management Suite Manual Release 1.4 MongoDB, Inc. Aug 10, 2018 MongoDB, Inc. 2008-2016 2 Contents 1 On-Prem MMS Application Overview 4 1.1 MMS Functional Overview........................................

More information

Novell SUSE Linux Enterprise Server

Novell SUSE Linux Enterprise Server SLES 10 Storage Administration Guide for EVMS Novell SUSE Linux Enterprise Server 10 February 1, 2007 STORAGE ADMINISTRATION GUIDE FOR EVMS www.novell.com Legal Notices Novell, Inc., makes no representations

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

Step by Step Installation of CentOS Linux 7 and Active Circle

Step by Step Installation of CentOS Linux 7 and Active Circle Step by Step Installation of CentOS Linux 7 and Active Circle Active Circle Storage System Abstract This document describes the step-by-step procedures for installing and configuring the CentOS Linux 7

More information