Unix Profession Webcast October 2007

Total Page:16

File Type:pdf, Size:1020Kb

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. • Cost of tapes in large environment is significant. • Cost of managing tape loading and storage is significant. • Generally slower that disk or LAN. February 1, 2016 Webinar 5 AIX – mksysb(1) Creates a backup of the operating system (root volume group). The file system image is in backup-file format. The tape format includes a boot image, a bosinstall image, and an empty table of contents followed by the system backup (root volume group) image. The root volume group image is in backup-file format, starting with data files and then any optional map files. February 1, 2016 Webinar 6 AIX – mksysb(1) Pros highlights: • For managing a single or limited number of servers. • Can be used for system cloning. • Use when servers are not networked. • Allows backup to tape drive (CD-ROM and DVD typically done through mkcd(1)). February 1, 2016 Webinar 7 AIX – mksysb(1) Cons highlights: • Identical tape drive is needed for an off-site recovery. • Cannot back up files that are mounted from a remote server. • If /usr is remote-mounted, you cannot reinstall system from backup image. • Image does not include data on raw devices or in user- defined paging spaces. • It may not restore all device configurations for special features, such as /dev/netbios and some device drives not shipped with the product. • LC_ALL environment variable should be unset (if non-C value). • Does not have built-in error checking to minimize problems when backing up an active file system. • Format specific to AIX (backup-file).* February 1, 2016 Webinar 8 AIX – mksysb(1) Examples # mksysb –i /dev/rmt0* # mksysb –m /dev/rmt1** # mksysb –i –e /dev/rmt1*** # mksysb /dev/rmt0 –V # mkcd –U –d /dev/cd0 –P –V rootvg**** # mkdvd –d /dev/cd1 February 1, 2016 Webinar 9 AIX – mksysb(1) Recovery • Boot off the tape drive. • Select option 3 “Maintenance mode for system recovery”. • Access your devices. • Restore files. • Boot. February 1, 2016 Webinar 10 AIX – NIM(1) • Requires a NIM master and the number of client instances. • NIM depends on certain protocols (NFS, bootp or DHCP, and TFTP). Older versions of AIX also required RSH and other RCMD commands, but in AIX 5.3 and above you can use basic nimsh or openssl. • NIM master must be at the highest level of AIX that it is required to support. • Now supports Linux installations too. February 1, 2016 Webinar 11 HP-UX – make_tape_recovery(1) Pros highlights: • For managing a single or limited number of servers. • Can be used for system cloning. • Use when servers are not networked. • Suitable tape drive must exist. • Allows backup to tape drive, CD-ROM, or DVD. • Interactive and non-interactive. • Supports tar (default), cpio or pax formats. • Supports LVM and VxVM. • Multi-tape CLUI only. • Configurable. • Versions 7.x and above have ability to block particular paths and protocols during inventory (see instl_adm(4)). February 1, 2016 Webinar 12 HP-UX – make_tape_recovery(1) Cons highlights: • Identical tape drive is needed for an off-site recovery. • Cannot back up files that are mounted from a remote server. • Does not have built-in error checking to minimize problems when backing up an active file system. • LVM disk mirrors not restored. • LVM physical extents allocated to a logical volume may be in a different location on a disk than before (consider extending contiguous volumes). • Cannot use remote tape drive.* February 1, 2016 Webinar 13 HP-UX – make_tape_recovery(1) checks # check_tape_recovery # copy_boot_tape –u /dev/rmt/0mn –b –d /tmp # lifls –l /tmp/bootimage # mt –f /dev/rmt/0mn rew # mt –f /dev/rmt/0mn fsf 1 # tar tvf /dev/rmt/0mn* February 1, 2016 Webinar 14 HP-UX – make_net_recovery(1) Pros highlights: • For managing a large number of servers. • Can be used for system cloning. • Use when servers are networked. • No tape, CD-ROM, or DVD drives needed. • Interactive and non-interactive. • Supports tar (default), cpio or pax formats. • Highly configurable. February 1, 2016 Webinar 15 HP-UX – make_net_recovery(1) Cons highlights: • Requires large space if many clients are backed up. • Ignite-UX bundles must be at same version on server and clients. • NFS used to save data to Ignite server (firewall issues, especially older versions of NFS)*. • Requires Ignite server for recoveries. February 1, 2016 Webinar 16 HP-UX – make_net_recovery Protocols and Ports 67 bootpd UDP2 Bootstrap Protocol Server - This service should function only if the server is a BOOTP/DHCP server 68 bootpd UDP Bootstrap Protocol Client - This service should function only if the server is a BOOTP server 69 tftpd UDP Trivial File Transfer Protocol - Found on systems that have Ignite-UX installed. This service should function only if the host is being used as a TFTP server 111 portmap/sunrpc/ rpcbind TCP/UDP SUN Remote Procedure Call (RPC) February 1, 2016 Webinar 17 HP-UX – make_net_recovery Protocols and Ports (continued) 135 rpcd/dced TCP Distributed Computing Environment (DCE)-based RPC 514 shell TCP Remote Command, No Password Used 1067 instl_boots UDP Installation Bootstrap Protocol Server 1068 instl_bootc UDP Installation Bootstrap Protocol Client 2049 nfsd TCP/UDP NFS Remote File System February 1, 2016 Webinar 18 HP-UX – make_net_recovery Protocols and Ports (continued) 2121 swagentd TCP/UDP HP Software Distributor Daemon - Used for communication between systems for software installation, listing, or other sw commands 4000 - 4009 secure swagent ports TCP/UDP The swagent firewall configurable ports 49152 - 65535 Dynamic or Private Ports TCP/UDP Dynamic and Private Ports are used by many applications for dynamic port assignments. UDP ports in this range are often RPC ports February 1, 2016 Webinar 19 HP-UX – Ignite(1) Examples # make_tape_recovery -v -a /dev/rtape/tape3 -x \ inc_entire=vg00 -d “mysrv Ignite“ # make_net_recovery -s remsrv -n 3 -P s -x inc_entire=vg00 \ -x exclude=/tmp -x exclude=/var/tmp –d “mysrv Ignite" February 1, 2016 Webinar 20 HP-UX – Dynamic Root Disk • DRD (current release A.3.1.0 - February 2008) runs on both Integrity and PA platforms running the following operating systems: HP-UX 11i v2 (11.23) September 2004 or more recent HP-UX 11i v3 (11.31) • Root group being cloned can be managed by any release of LVM on an O/S release supported by DRD. In addition, the root group can be managed by VxVM 4.1 (HP-UX 11i v2 or 11i v3) or VxVM 5.0 (HP-UX 11i v2 only). February 1, 2016 Webinar 21 HP-UX DRD Benefit: Minimizing Planned Downtime Without DRD: Software management may require extended downtime With DRD: Install/remove software on the clone while applications continue running Install patches lvol1 lvol1 lvol1 lvol1 on the clone; lvol2 lvol2 lvol2 lvol2 applications lvol3 lvol3 lvol3 lvol3 remain running boot diskboot mirror clone clone mirror disk vg00 (active) cloned vg00 (inactive/patched) Activate the lvol1 lvol1 lvol1 lvol1 lvol2 lvol2 lvol2 lvol2 clone to make lvol3 lvol3 lvol3 lvol3 changes take effect boot diskboot mirror clone clone mirror disk vg00 (inactive) cloned vg00 (active/patched) February 1, 2016 Webinar 22 HP-UX – Dynamic Root Disk Pros highlights: • Fully supported by HP. • Full clone. • Complements other parts of total HP solution by reducing system downtime required to install and update patches and other software. • Copy operation is currently done by fbackup and frecover. • Kctune(1) command can be used to modify kernel parameters in the clone. • The ioconfig file and the entire /dev directory are copied by the DRD clone operation, so instance numbers will not change when the clone is booted.* • Supports nPars, vPars, and Integrity VMs. February 1, 2016 Webinar 23 HP-UX – Dynamic Root Disk Pros highlights: • No tape drive is needed. • No impact on network performance. • No security issues of transferring data across the network. • All DRD processes, including drd clone and drd runcmd, can be safely interrupted issuing Control-C (SIGINT) from the controlling terminal or by issuing kill -HUP<pid> (SIGHUP). This action causes DRD to abort processing and perform any necessary clean up. Do not interrupt DRD using the kill -9 <pid> command (SIGKILL), which fails to abort safely and does not perform cleanup.
Recommended publications
  • 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]
  • Mondorescue Presentation
    MondoRescue Mondo Rescue: A GPL disaster recovery and cloning solution Bruno Cornec WW Linux Community Lead - Open Source and Linux Profession © Bruno Cornec / HP - Document under/sous CC-by-SA-3.0 Date : 07/09/2015 Page 1 Introducing Myself ● Software engineering and Unices since 1988 – Mostly Configuration Management Systems (CMS), Build systems, quality tools, on multiple commercial Unix systems – Discovered Open Source & Linux (OSL) & made first contributions in 1993 – Full time on OSL since 1995, first as HP reseller then @HP ● Currently: – OSL Technology Strategist, EMEA EG Innovation Solution Center aka HP/Intel Solution Center, Grenoble – HP OSL Advocate and Converged Infrastructure Ambassador – WW Linux Community Lead for the HP Open Source Profession – Solutions Linux Conference and AFUL board member. Conferences at WW level at LinuxCon, Linux.conf.au – MondoRescue, Project-Builder.org, UUWL and PUSK Project Lead – LinuxCOE, mrepo, tellico, rinse, fossology, collectl contributor – FOSSBazaar/SPDX and OSL Governance enthusiast – Mandriva, Mageia, Fedora packager ● And also: – Amateur singer (Alto / Tenor) and recorder player since 1976 and Choir director since 1987 – CD collector since 1981 (5000+ and counting) – Concert attendance since 1976 – Amateur photograph since 1976 © Copyright 2015 Bruno Cornec & Hewlett-Packard. - Licensed under CC-by-SA 3.0 Definitions Disaster Recovery Plan (DRP): Identifying, inventorying and classifying the critical systems and data in the enterprise (in relationship with their value for the enterprise) and consequent procedures, processes and systems to put in place to recover from a disaster. Balance between DRP implementation costs and downtime costs, or loss of data/services costs. Much more paper based than computer based.
    [Show full text]