Linux OS Backup 교육 자료 V1.1

Total Page:16

File Type:pdf, Size:1020Kb

Linux OS Backup 교육 자료 V1.1 Linux OS Backup 교육 자료 v1.1 2013. 12. 27. 이스턴네트웍스 기술지원팀 전흥수 목 차 1. Linux OS Backup & Cloning Layout 2. Solution Install & Configuration 3. Recovery Procedure 4. Reference Site - 1 - 1. Linux OS Backup / Cloning Layout 1) 테스트 환경 H/W S/W CPU Disk ODD TAPE OS Arch tool 구 분 ARCHIVE 외장 USB Intel CPU Python CentOS Mondorescue 36GB x 3 DS8A8SH X86_64 3.20GHz 06408-XXX 6.4 ( www.mondorescue.org/ ) ( DVD Writer) ( DDS4 ) - 2 - 1. Linux OS Backup / Cloning Layout 2) 목적 Linux OS 백업시 File Base 의 백업솔루션이 가지고 있는 한계를 극복하기 위한 솔루션 필요. Ex 1) RHEL 6.4 / RHCS / Oracle Client / Netbackup / SecureOS / Control-M / T-max (was) -> OS 의 버그, H/W 문제점 등으로 인해 문제발생시 재설치 필요. -> RHEL OS 설치+RHCS 재구성 / 기타 S/W 설치시 파트별 엔지니어 필요. ( 시간 / 인력비용 / 결과적 손해 ) Ex 2) Clonezilla / Ghost / DD 등 Live CD 를 이용한 솔루션 -> Clone Image 를 생성할때마다 시스템의 Reboot 이 필요. -> Down Time 이 허용되지 않는 경우 File Base 의 백업은 가능하나 device , driver 등의 OS 구성을 포함한 Image Backup은 매우 곤란함 - 3 - 1. Linux OS Backup / Cloning Layout 3) Solution ( Mondorescue ) ◐ Online Backup ( DR ) DAT / VTL ( tape device ) ◐ 다양한 백업디바이스 지원 ◐ GUI / CLI 지원 ( script 사용 가능 ) CD / DVD Writer HDD / USB RHEL / Ubuntu / Fedora / SuSe NAS ( NFS / CIFS / SSHFS ) - 4 - 2. Solution Install & Configuration 1) 설치하기 ① 레포지토리 설정파일 #/etc/yum.repos.d/mondorescue.repo [mondorescue] name=rhel 6 x86_64 - mondorescue Vanilla Packages baseurl=ftp://ftp.mondorescue.org/rhel/6/x86_64 enabled=1 gpgcheck=0 gpgkey=ftp://ftp.mondorescue.org/rhel/6/x86_64/mondorescue.pubkey ② yum 을 이용한 설치 #yum install mondo ③ rpm 을 이용한 설치 ( 아래의 URL 에서 rpmfile download ) http://www.mondorescue.org/downloads.shtml - 5 - 2. Solution Install & Configuration 2) 스크립트 2-1 백업 스크립트 ( ISO 이미지를 이용한 백업 스크립트 ) # cat /usr/local/sbin/mondobackup.sh #!/bin/sh DATE=`date +%Y%m%d` BACKUPDIR="/backup" mount /dev/sdb1 /backup wait mkdir -p $BACKUPDIR/$DATE mondoarchive -Oi -s 4880m -d $BACKUPDIR/$DATE -E '/mnt|/backup' -p "`date +%Y%m%d`-os-backup" wait cp /var/cache/mindi/mondorescue.iso $BACKUPDIR/$DATE/os-restore-boot-cd.iso wait sync umount /backup exit 0 - 6 - 2. Solution Install & Configuration 2) 스크립트 2-2 백업 스크립트 ( tape 를 이용한 백업 스크립트 ) #cat /usr/local/sbin/mondo_tape_bk.sh #!/bin/sh mt –f /dev/st0 rewind wait /usr/sbin/mondoarchive -Ot -d /dev/st0 -K 99 -E '/backup' -p "tapebackup“ wait exit 0 2-3 백업 스크립트 ( NAS 를 이용한 백업 스크립트 ) #!/bin/sh /usr/sbin/mondoarchive -On nfs://192.168.1.133:/nas -d /os-backup exit 0 - 7 - 2. Solution Install & Configuration 2) 스크립트 ( cron ) ① cron 설정파일 # cat /etc/cron.daily/os_backup.sh #!/bin/sh /usr/bin/rdate -s time.bora.net wait /usr/local/sbin/mondobackup.sh & exit 0 - 8 - 2. Solution Install & Configuration 3) Mondoarchive options ※ Mondoarchive options -O 파일시스템을 CD,tape,ISO image,NFS등으로 백업. 부트가능한 시디나 플로피가 만들어짐. -i 백업미디어로 ISO파일(시디이미지)를 사용 -L bzip2대신 lzo를 사용 ( 가급적 사용하지 말 것. ) -d dev/dir 백업 디바이스나 디렉토리를 지정 -E "path path ..." 백업에서 제외할 패스를 기록 -l GRUB/LILO 부트로더 지정 -f device 디바이스마스터부트레코드가 있는 드라이브를 지정 -s size 백업미디어의 용량을 지정 -F 3.5인치플로피에 boot+data 쓰지 않도록 지정 -p 백업이미지의 이름을 지정할 수 있다. -T temp 디렉토리 지정 ( 서버운용중인 Disk 외의 디스크에 지정가능 ) -S scratch 디렉토리 지정 ( 백업이미지 파일을 임시로 모아놓는 디렉토리 지정 ) - 9 - 3. Recovery Procedure 1) linux base boot cd buning CLI 1. wodim 패키지 설치 #yum install wodim 2. cdrom 디바이스 찾기 #wodim --devices wodim: Overview of accessible drives (1 found) : ------------------------------------------------------------------------- 0 dev='/dev/scd0' rwrw-- : 'Slimtype' 'DVD A DS8A8SH' ------------------------------------------------------------------------- 3. os-boot-backup CD 제작 #wodim -v dev=/dev/scd0 speed=4 -eject /path/to/mondorescue.iso. - 10 - 3. Recovery Procedure 2) Restore Screen Mondorescue.iso 를 cd writer 를 이용하여 cd 로 제작한 후 서버에서 cd boot 를 하고, 아래의 화면에서 nuke 입력 - 11 - 3. Recovery Procedure 3) Recovery Trouble shooting ① Mondo rescue 를 이용할 경우, /etc/fstab 파일을 기준으로 백업을 실행하므로 백업 대상 디렉토리는 반드시 /etc/fstab 에 등록이 되어 있어야 한다. Ex) /dev/sdb1 /data …… /dev/sdb1 /data ext4 defaults 0 0 …… ② swap 은 별도로 백업되지 않으므로 복구과정이 끝나고 나면, 반드시 rescue mode 로 진입하여 swap 을 생성해준다. boot : linux text rescue #chroot /mnt/sysimage #lvcreate –l 100%FREE –n /dev/Volgroup/lv_swap #mkswap –f /dev/Volgroup/lv_swap #ext #reboot - 12 - 4. Reference Site http://www.mondorescue.org/ http://en.wikipedia.org/wiki/Comparison_of_disk_cloning_software http://www.tecmint.com/how-to-clone-linux-systems/ http://comptia.idglabs.net/?p=4079 - 13 - Q & A 감사합니다. - 14 - .
Recommended publications
  • Unix Profession Webcast October 2007
    Common Disaster Recovery Tools In Unix and Linux* © 2008 Dusan Baljevic The information contained herein is subject to change without notice Business Continuity Plans and Backups • People make IT support a complex issue! • Disaster Recovery must be based on Business Continuity Plans and meet the requirements as set in the following question: What is the cost of downtime per hour? February 1, 2016 Webinar 2 Loss of Data - Most Feared Threat Human error 35 Systems failure 31 s Supply chain disruption t n 29 e Virus, worm or other malicious attack on IT systems d n 28 o Employee malfeasance (e.g. theft or fraud) p s 25 e r Natural disasters, such as fires or floods f o 22 Unplanned downtime of online systems % 22 Terrorism 16 Power outage 13 Pandemic 13 Application failure 12 Industrial Action 8 February 1, 2016 Webinar 3 Bootable System Images in Unix and Linux Many tools available. For the sake of brevity, the following will be discussed: AIX mksysb, Network Installation Manager (NIM) HP make_tape_recovery/make_net_recovery, Dynamic Root Disk (DRD)* Linux Mondo Rescue, Clonezilla Solaris ufsdump, fssnap+ufsdump, flash/JumpStart Tru64 btcreate February 1, 2016 Webinar 4 Tape Drives Limitations inherent with tape media: • A tape drive must be available on each system to be archived. • Must remove old tapes and insert new ones for new backups. • If an archive exceeds the capacity of a tape, you must swap tapes for both creation and extraction. • Must check log files and run dummy restores to ensure data consistency. • Tape drives are more error-prone than a local network or CD- ROM and DVD.
    [Show full text]
  • Data Protection and Recovery in the Small and Mid-Sized Business (SMB)
    Data Protection and Recovery in the Small and Mid-sized Business (SMB) An Outlook Report from Storage Strategies NOW By Deni Connor, Patrick H. Corrigan and James E. Bagley Intern: Emily Hernandez October 11, 2010 Storage Strategies NOW 8815 Mountain Path Circle Austin, Texas 78759 Note: The information and recommendations made by Storage Strategies NOW, Inc. are based upon public information and sources and may also include personal opinions both of Storage Strategies NOW and others, all of which we believe are accurate and reliable. As market conditions change however and not within our control, the information and recommendations are made without warranty of any kind. All product names used and mentioned herein are the trademarks of their respective owners. Storage Strategies NOW, Inc. assumes no responsibility or liability for any damages whatsoever (including incidental, consequential or otherwise), caused by your use of, or reliance upon, the information and recommendations presented herein, nor for any inadvertent errors which may appear in this document. This report is purchased by Geminare, who understands and agrees that the report is furnished solely for its internal use only and may not be furnished in whole or in part to any other person other than its directors, officers and employees, without the prior written consent of Storage Strategies NOW. Copyright 2010. All rights reserved. Storage Strategies NOW, Inc. 1 Sponsor 2 Table of Contents Sponsor ..................................................................................................................................................................
    [Show full text]
  • Fedora 7 Unleashed / Andrew Hudson, Paul Hudson
    Andrew Hudson and Paul Hudson Fedora™ 7 UNLEASHED 800 East 96th Street, Indianapolis, Indiana 46240 USA Fedora™ 7 Unleashed Acquisitions Editor Copyright © 2008 by Sams Publishing Damon Jordan All rights reserved. No part of this book shall be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical, photocopying, recording, Development Editor or otherwise, without written permission from the publisher. No patent liability is Michael Thurston assumed with respect to the use of the information contained herein. Although every precaution has been taken in the preparation of this book, the publisher and author Managing Editor assume no responsibility for errors or omissions. Nor is any liability assumed for Gina Kanouse damages resulting from the use of the information contained herein. ISBN-13: 978-0-672-32942-5 Project Editor ISBN-10: 0-672-32942-5 George E. Nedeff Library of Congress Cataloging-in-Publication Data Copy Editor Margo Catts Hudson, Andrew, 1978- Indexer Fedora 7 unleashed / Andrew Hudson, Paul Hudson. Brad Herriman p. cm. ISBN 978-0-672-32942-5 (pbk. w/dvd) Proofreader 1. Linux. 2. Operating systems (Computers) I. Hudson, Paul, 1979- II. Title. Heather Waye Arle Technical Editor QA76.76.O63H794 2007 Dallas Releford 005.4’32—dc22 2007030725 Publishing Coordinator Printed in the United States on America Vanessa Evans First Printing: August 2007 Multimedia Developer Trademarks Dan Scherf All terms mentioned in this book that are known to be trademarks or service marks have been appropriately capitalized. Sams Publishing cannot attest to the accuracy of Book Designer this information. Use of a term in this book should not be regarded as affecting the Gary Adair validity of any trademark or service mark.
    [Show full text]
  • Availability Digest
    the Availability Digest www.availabilitydigest.com High-Availability Topics at HP Discover 2011 May 2011 HP’s major North American conference, Discover 2011, will be held this year in Las Vegas from June 6th through June 10th. In our article entitled HP Discover 2011,1 published in our March, 2011, issue, we summarized the various tracks, keynotes, and social events that will take place at the event as well as the event’s registration fees. There are over 800 sessions in the Discover 2011 schedule. In this issue, we highlight some of the sessions that deal with availability. Many are generic sessions, and we provide the abstracts.. Others are product-oriented, and the abstracts for these sessions follow the generic session abstracts.2 Breakout sessions are one hour in length. Hands-on labs are scheduled for 90 minutes each. Dr. Bill Highleyman, Managing Editor of the Availability Digest, will present two breakout sessions. His abstracts are given first in the following session listing. General Availability Sessions 3888 - So you think your data center is safe? Dr. Bill Highleyman, Availability Digest One of the first steps in a business continuity plan is risk assessment, in which all known risks to the business are detailed. However, experience has shown that many data centers are taken down by unforeseen events. In this session, participants will learn about unforeseen events that have put entire data centers out of commission for hours and even days. They include battery- room explosions to data-center overloads and even server confiscation by law enforcement. The lesson from these experiences is not to plan IT service recovery for predictable catastrophic events but rather to plan recovery for data-center outages no matter what the cause.
    [Show full text]
  • Linux-Cookbook.Pdf
    LINUX COOKBOOK ™ Other Linux resources from O’Reilly Related titles Linux Device Drivers Exploring the JDS Linux Linux in a Nutshell Desktop Running Linux Learning Red Hat Enterprise Building Embedded Linux Linux and Fedora Systems Linux Pocket Guide Linux Security Cookbook Understanding the Linux Kernel Linux Books linux.oreilly.com is a complete catalog of O’Reilly’s books on Resource Center Linux and Unix and related technologies, including sample chapters and code examples. ONLamp.com is the premier site for the open source web plat- form: Linux, Apache, MySQL, and either Perl, Python, or PHP. Conferences O’Reilly brings diverse innovators together to nurture the ideas that spark revolutionary industries. We specialize in document- ing the latest tools and systems, translating the innovator’s knowledge into useful skills for those in the trenches. Visit conferences.oreilly.com for our upcoming events. Safari Bookshelf (safari.oreilly.com) is the premier online refer- ence library for programmers and IT professionals. Conduct searches across more than 1,000 books. Subscribers can zero in on answers to time-critical questions in a matter of seconds. Read the books on your Bookshelf from cover to cover or sim- ply flip to the page you need. Try it today with a free trial. LINUX COOKBOOK ™ Carla Schroder Beijing • Cambridge • Farnham • Köln • Paris • Sebastopol • Taipei • Tokyo Linux Cookbook™ by Carla Schroder Copyright © 2005 O’Reilly Media, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use.
    [Show full text]
  • Linux. Receptury
    IDZ DO PRZYK£ADOWY ROZDZIA£ SPIS TREFCI Linux. Receptury KATALOG KSI¥¯EK Autor: Carla Schroder T³umaczenie: Adam Jarczyk KATALOG ONLINE ISBN: 83-7361-879-1 Tytu³ orygina³u: Linux Cookbook ZAMÓW DRUKOWANY KATALOG Format: B5, stron: 560 TWÓJ KOSZYK Zbiór praktycznych porad dla u¿ytkowników i administratorów Linuksa DODAJ DO KOSZYKA O popularnoYci Linuksa i jej powodach napisano ju¿ bardzo du¿o. Dostêpny nieodp³atnie system operacyjny, stabilny, bezpieczny i mo¿liwy do zastosowania CENNIK I INFORMACJE zarówno w serwerach, jak i stacjach roboczych -- brzmi to niemal jak utopia, a jednak jest prawd¹. Wielu u¿ytkowników komputerów, zachêconych opiniami na temat Linuksa, zdecydowa³o siê na jego instalacjê. Pierwszy kontakt z systemem ZAMÓW INFORMACJE O NOWOFCIACH w wiêkszoYci sytuacji przebiega bez problemów dziêki dopracowanemu modu³owi instalacyjnemu i graficznemu interfejsowi u¿ytkownika. Problemy rozpoczynaj¹ siê ZAMÓW CENNIK w momencie przejYcia do bardziej zaawansowanych zagadnieñ. Tryb tekstowy, polecenia z dziesi¹tkami opcji i parametrów, pliki konfiguracyjne licz¹ce dziesi¹tki linijek i trudna do zlokalizowania dokumentacja doYæ skutecznie odstraszaj¹ CZYTELNIA od prób poznawania tajników Linuksa. „Linux. Receptury” to ksi¹¿ka, dziêki której Linux wyda siê mniej przera¿aj¹cy. FRAGMENTY KSI¥¯EK ONLINE Zawiera rozwi¹zania wiêkszoYci problemów mog¹cych pojawiæ siê podczas pracy z Linuksem. Opisuje sposoby konfigurowania systemu, administrowania nim, znajdowania informacji w dokumentacji oraz korzystania z poleceñ i narzêdzi systemowych. Wszystko, co mo¿e sprawiaæ k³opoty u¿ytkownikowi lub administratorowi Linuksa, zosta³o tu wyjaYnione w jasny i czytelny sposób. Ka¿da receptura, poza omówieniem problemu i przedstawieniem gotowego rozwi¹zania, zawiera tak¿e analizê, która jest bardzo pomocna przy dostosowywaniu sposobu postêpowania do w³asnych potrzeb.
    [Show full text]
  • Disk Imaging Technologies
    Disk Imaging Technologies Backup and Restoration Challenges Topics • Manufacture Firmware Changes • File System Landscape – UEFI – Introduction to GUID Partition Table (GPT) – Partitions & Limitations • Imaging Utilities Windows & Linux • Full Disk Encryption • Source Web-Links Manufacture Firmware Changes • Industry push to a new standard: – BIOS vs. UEFI • UEFI is to replace and extend the old BIOS firmware. • UEFI is not a new thing. Intel has been working in EFI/UEFI since mid 1990s, and there are vendors like HP or Apple that provided EFI machines since a long time ago. But it is when Microsoft announced Windows 8 that UEFI became the required way to boot the new certified machines. • Secure boot is an extension of UEFI. One of the key points of UEFI is that it can be extended. UEFI has an internal virtual machine that is independent of the architecture that it is using. The standard accepts special binary files compiled for this virtual machine (EFI binaries) that can be executed inside the environment. These binaries can be device drivers, applications or extensions to the UEFI standard. UEFI, in some sense, is like a small operative system that runs when the machine is powered on and whose main task is to find and load another operating system. Unified Extensible Firmware Interface Unified Extensible Firmware Interface (UEFI) is meant as a replacement for the Basic Input/Output System (BIOS) firmware interface ● Initially (1998) designed by Intel for Itanium processor ● Since 2005 managed by the Unified EFI Forum (uefi.org) Source: http://loadays.org/archives/2013/static/slides/Integrating-UEFI-into-rear.pdf Why UEFI? • BIOS has its (aging) limitations – 16-bit processes – max.
    [Show full text]
  • Bare Metal Recover by Free Software
    Bare Metal Recover by Free Software Ceasar Sun, Steven Shiau, Jazz Wang, Thomas Tsai http://drbl.nchc.org.tw, http://drbl.org http://clonezilla.nchc.org.tw, http://clonezilla.org National Center for High-Performance Computing Q3, 2011 Outline Introduction to Bare Metal Recovery Bare Metal Recovery and the Available Software Comparisons Introduction to Clonezilla Feature/How to work/Limitation Introduction to Image architecture Demo Save/Restore A System by Clonezilla live Q&A 2 Bare Metal Recovery • The term “Bare Metal” refers to a computer that does not contain an operating system and data. • Bare Metal Recovery/Restore – It means to the process of restoring data to a "bare metal" component – Typically the process includes reinstalling the operating system and software applications and then, if possible, restoring data and configurations.. • When need to do ? – Mass deployment – Disaster recovery – Hardware replacement/crash – .... 3 Bare Metal Recovery (cont') • Available types: – Block-based (image) recovery (e.g. 'dd') – File-based recovery (e.g. 'cp', 'tar', 'rsync'...) – Mix both: combine file base with block information • Use different tool for different purpose – Save a lot of time if choose right toolkit 4 Terminology Raw copying* – A possibility to perform sector-by-sector copying of a whole partition Smart copying* – A possibility to distinguish which portions of the partition really contain data and to copy these only Live copying* – A drive or volume can be copied/imaged while it is in use, avoiding the need
    [Show full text]
  • A Next Generation Clone Solution for Cloud
    Clonezilla : A Next Generation Clone Solution for Cloud Ceasar Sun, Steven Shiau, Jazz Wang, Thomas Tsai http://clonezilla.org, http://drbl.org National Center for High-Performance Computing Taiwan Q3, 2012 OSC Fall Tokyo, 2012 Clonezilla.org Outline Introduction to Clonezilla A Quick Demo as a Begining Feature/How/Limitation/Image Architecture Comparison with Live and Sever Edition(SE) A Toolkit for Windows Mass Deployment : DRBL- Winroll A Possible Solution in Cloud : Cloudboot Cases of Usages Unattended Recovery CD or USB Mass Deployment with Multicast by SE One Image to Multi Devices Deployment Q&A OSC Fall Tokyo, 2012 Clonezilla.org 2 Outline Introduction to Clonezilla A Quick Demo as a Begining Feature/How/Limitation/Image Architecture Comparison with Live and Sever Edition(SE) A Toolkit for Windows Mass Deployment : DRBL- Winroll A Possible Solution in Cloud : Cloudboot Cases of Usages Unattended Recovery CD or USB Tool Mass Deployment with Multicast by SE One Image to Multi Devices Deployment Q&A OSC Fall Tokyo, 2012 Clonezilla.org 3 About us ● From Taiwan, working for the NPO NCHC (National Center for High- Performance Computing) ● Developers of free/open-source software: – DRBL, Clonezilla – DRBL-Winroll, Tux2live – Partclone, Tuxboot, Cloudboot – ... more Taiwan image source: wikipedia.org OSC Fall Tokyo, 2012 Clonezilla.org 4 What is Clonezilla? ● A partition and disk imaging/cloning utility similar to Ghost® and True image® ● A bare metal recovery tool for VMFSVMFS VMware ESX/ESXi *1 *2 *3 *4 *5 *Logo source: (1) Larry Ewing, Simon Budig and Anja Gerwinski, (2) Apple ,(3) Microsoft, (4) Marshall Kirk McKusick, (5) VMWare OSC Fall Tokyo, 2012 Clonezilla.org 5 A Quick Demo as a Begining ● Restore a bare hard disk by Clonezilla Live – http://clonezilla.org/clonezilla-live.php ● A pre-saving image Ubuntu 12.04 system – Text mode only.
    [Show full text]
  • Bioresource Now ! Vol.8 No.9 Reprinting and Reduplication of Any Content of This Newsletter Is Prohibited
    BioResource Now ! Vol.8 No.9 Reprinting and reduplication of any content of this newsletter is prohibited. All the contents are protected by the Japanese BioResource Now ! copyright law and international regulations. Issue Number 8 September 2012 Ongoing Column No.73 Introduction of backup software for Linux servers Introduction to Resource Center No.41 “Mondo Rescue” P2 Messages from the representatives of the newly Recommended Book ! No.9 adopted core institutions in the 3rd stage NBRP “Tsuyoi mono wa ikinokorenai ” P1 (The strong cannot survive) P2 Introduction to Resource Center〈No.41〉 Messages from the representatives of the newly adopted core institutions in the 3rd stage NBRP In this month s’ issue of the newsletter, 4 representatives from newly adopted resource centers of the third stage NBRP introduced their projects and ambitions. Yoichi Matsuda (Avian Bioscience Research Center, “ Chicken/Quail ” Graduate School of Bioagricultural Sciences, Nagoya University) We were adopted as the NBRP Chicken/Quail core institution, which was initiated in the third stage NBRP. Thus far, I have been involved in the molecular and cellular genetic research focusing on birds and various other vertebrates, including amphibians and mammals, at Nagoya University and Hokkaido University. Following which, we have been involved in genetic research of poultry at the Avian Bioscience Research Center since the fiscal year 2009. Japan is rich in avian genetic resources, especially Japanese chicken and other chicken and quail strains with various genetic properties. However, the availability of bird resources for research is inadequate and many precious resources are being lost because of the uneven distribution of industrial strains and restriction of research funds.
    [Show full text]
  • MIRACLE LINUX V5 with Netvault Backup Standard • リカバリ・ディスク作成ソフトウェア Mondo Rescue
    ミラクル・リナックス|商品のご案内 http://www.miraclelinux.com/ 2009年度版 Copyright © 2009 MIRACLE LINUX CORPORATION, All rights reserved. ミラクル・リナックス 商品のご案内 • 取り扱い製品のご紹介 – LinuxOS • Asianux Server 3 ==MIRACLE LINUX V5 HA • Asianux Server 3 ==MIRACLE LINUX V5 • Oracle Database サーバ で Asianux Server 3を選ぶ理由 • ミラクル・リナックス製品で減税! ~ISO/IEC15408を取得製品と減税について~ – システム基盤構築ソリューション • MIRACLE PLUS +シリーズ • ソフトウェアロードバランサー MIRACLE LoadBalancer • クラスタリングソフトウェア MIRACLE CLUSTERPRO X • 統合監視ソフトウェア ZABBIX • Oracle DB バックアップソフトウェア MIRACLE Standby DB X • システム全般 バックアップソフトウェア MIRACLE LINUX V5 with NetVault Backup Standard • リカバリ・ディスク作成ソフトウェア Mondo Rescue – サポートサービス • ミラクル・リナックスサポート製品 • CentOS サポート • Oracle Unbreakable Linux • ミラクル・リナックス製品に関するご相談窓口のご紹介 – MIRACLE DIRECT Linux OS 信頼性、可用性、サポートを追及した、安心して利用できるLinuxサーバOS 自動障害復帰 強力な監視機能 国内エンジニアによる 機能搭載 迅速なサポート 本製品はIPv6 Ready Logo Program Phase 2を取得しています 「Asianux Server 3 ==MIRACLE LINUX v5 HA」はミッションクリティカル環境下で 安心してご利用いただける対障害性を追及したエンタープライズLinux OS 障害、メンテナンスによるサービス停止時間を最低限に抑え、ビジネス継続性を高める仕組みを多数取り 込んでいます。本当に安心してご利用いただける、唯一のエンタープライズLinux OS、 Asianux Server 3 ==MIRACLE LINUX v5 HAは大切なサービスを守ります。 DBの障害を検出 DBを再起動し復旧 WebUIで設定・管理 高可用性を追求したエンタープライズLinux 特徴 豊富な対障害機能 主要コンポーネント パッケージ バージョン パッケージ バージョン 自動障害復帰機能 プロセス、サービス、OSを常に監視し、プロセスの消失、サービスの kernel 2.6.18 Perl 5.8.8 停止、OSやHWの障害を検知した際、自動で処置を行いサービスを継 続します。 glibc 2.5 PHP 5.1.6 豊富なオプション GCC 4.1.2 Ruby 1.8.5 主要なアプリケーションごとに、さまざまなオプションをご用意。プロ Apache 2.2.3 PostgreSQL 8.1.11 セス監視のみでなく実際のサービスに近い形で監視を行い、より速い 段階で確実に障害を検知、復旧することができます。 KDE 3.5.5 MySQL 5.0.22 OS起動失敗を防止 ZABBIX 1.4.5 MIRACLE 2.0.2 ドライバのロード失敗、kernelのアップデート失敗によるブート失敗を
    [Show full text]
  • Mondo Rescue
    Mondo Rescue Mondo Rescue: A GPL disaster recovery solution Bruno Cornec EMEA Open Source and Linux Profession Lead © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 1 Mondo Rescue Why am I here ? © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 2 Mondo Rescue because I'm from France ... ... no ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 3 Mondo Rescue because I'm from HP ... ... no ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 4 Mondo Rescue because I'm a great speaker ... ... no ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 5 Mondo Rescue because I'm an expert ... ... no ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 6 Mondo Rescue because I take nice pictures ... ... lost again ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 7 Mondo Rescue because some others were unavailable ... ... Bingo ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 8 Mondo Rescue Why am I here ? because I'm the only one dealing with Open Source AND really playing recorder ! © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 9 Mondo Rescue The User's View Need for a Rescue CD for pre-installed servers in 2000 2 choices: mkCDrec and mondorescue mondorescue nearer from my initial needs Developper happy to receive patch -H option added © Bruno Cornec / HP - Document under/sous FDL Date : 01/19/2007 Page 10 Mondo Rescue Distribution neutral (Mandriva, RedHat, Fedora,
    [Show full text]