Sybase on CLUSTERPRO for Linux HowTo

Size: px
Start display at page:

Download "Sybase on CLUSTERPRO for Linux HowTo"

Transcription

1 Sybase on CLUSTERPRO for Linux HowTo

2 DB... 8 DB DB DB CLUSTERPRO

3 Sybase Adaptive Server Enterprise Red Hat Enterprise Linux AS3 Update5 CLUSTERPRO SE for Linux Sybase Adaptive Server Enterprise Sybase DB Sybase Sybase -3-

4 (1) 2 : SYB01 SYB02 : AS01 CLUSTER /dev/sdb1 /dev/sdb2 SYB01 : /mnt/sdb2 Adaptive : /dev/sdb1 AS01 DB : /dev/sdb2 SYBDB01 SYB02 AS01 Master (2) 2 : 1 SYB01 2 SYB02 AS01 AS02 : CLUSTER /dev/sdb1 SYB01 SYB02 1 /dev/sdb2 2 /dev/sdb3 : /dev/sdb1 /dev/sdb2 /mnt/sdb2 /dev/sdb3 /mnt/sdb3 /dev/sdb2 AS01 Adaptive : /dev/sdb3 Master DB 1 AS01 AS02 DB 2 AS02 Master DB : AS01 DB SYBDB01 AS02 DB SYBDB02-4-

5 [ ] 3-1. sybase groupadd sybase useradd -g sybase sybase passwd sybase 3-2. /opt/sybase mkdir /opt/sybase chown sybase:sybase /opt/sybase 3-3. sybase row NEC Sybase mkdir /mnt/sdb2 mount /dev/sdb2 /mnt/sdb2 chown sybase:sybase /mnt/sdb2 mkdir /mnt/sdb2 mkdir /mnt/sdb3 mount /dev/sdb2 /mnt/sdb2 mount /dev/sdb3 /mnt/sdb3 chown sybase:sybase /mnt/sdb2 chown sybase:sybase /mnt/sdb3 CLUSTERPRO -5-

6 3-4. /sbin/sysctl -w kernel.shmmax= MB(= ) /etc/init.d/boot.local sybase sybase GUI XWindow SYB01: SYB02:

7 ================================================== CD CD-ROM $ mount /mnt/cdrom /media/cdrom CD-ROM setup $ /mnt/cdrom/setup 1 GUI Install Shield /opt/sybase Typical 1 GUI Sybase -7-

8 DB DB Adaptive XP 4 DB (1) (2) Adaptive Adaptive (1) Adaptive Adaptive (2) (3) DB DB Sybase ASE 12.5 AS01 /opt/sybase/interfaces /opt/sybase/ase-12_5/ AS01.cfg /opt/sybase/ase-12_5/install/run_ AS01 /opt/sybase/ase-12_5/install/run_ AS01_bak Note: DB interfaces CLUSTERPRO IP /etc/hosts interfaces -8-

9 DB DB isql SQL isql DB DB 8-1. $. /opt/sybase/sybase.sh $ isql -Usa -P -SAS01 1> SQL DB 1> create database SYBDB01 2> go DB 1> use SYBDB01 2> go connect -9-

10 ================================================== CD CD-ROM $ mount /mnt/cdrom /media/cdrom CD-ROM setup $ /mnt/cdrom/setup 2 GUI Install Shield /opt/sybase Typical 2 GUI Sybase -10-

11 DB DB Adaptive XP 4 DB (1) (2) Adaptive (1) Adaptive DB (2) DB (3) DB DB Sybase ASE 12.5 AS02 /opt/sybase/interfaces /opt/sybase/ase-12_5/as01.cfg /opt/sybase/ase-12_5/install/run_ AS02 /opt/sybase/ase-12_5/install/run_ AS02_bak (4) DB 8-4. DB Note: DB interfaces CLUSTERPRO IP /etc/hosts interfaces -11-

12 DB DB isql SQL isql DB DB 8-1. $. /opt/sybase/sybase.sh $ isql -Usa -P -SAS02 1> SQL DB 3> create database SYBDB02 4> go DB 3> use SYBDB02 4> go connect DB -12-

13 CLUSTERPRO 7-1. Sybase Sybase exec pid 7-2. CLUSTERPRO Sybase DB -13-

14 (1) start.sh! /bin/sh *************************************** * start.sh * *************************************** correct the installation path of Sybase. /opt/sybase/sybase.sh if [ "$CLP_EVENT" = "START" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "NORMAL1" if [ "$CLP_SERVER" = "HOME" ] echo "NORMAL2" echo "ON_OTHER1" data +"%Y/%m/%d %T" echo "Sybase ASE start" correct the sybase account and the install path of ASE su sybase c. ${SYBASE}/SYBASE.sh; startserver f \ {SYBASE}/${SYBASE_ASE}/install/RUN_ AS01 > /dev/null 2>&1 & sleep 10 echo "ERROR_DISK from START" -14-

15 elif [ "$CLP_EVENT" = "FAILOVER" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "FAILOVER1" if [ "$CLP_SERVER" = "HOME" ] echo "FAILOVER2" echo "ON_OTHER2" data +"%Y/%m/%d %T" echo "Sybase ASE start" correct the sybase account and the install path of ASE su sybase c. ${SYBASE}/SYBASE.sh; startserver f \ {SYBASE}/${SYBASE_ASE}/install/RUN_ AS01 > /dev/null 2>&1 & sleep 10 echo "ERROR_DISK from FAILOVER" echo "NO_CLP" echo "EXIT" exit 0-15-

16 (2) stop.sh! /bin/sh *************************************** * stop.sh * *************************************** correct the installation path of Sybase. /opt/sybase/sybase.sh if [ "$CLP_EVENT" = "START" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "NORMAL1" if [ "$CLP_SERVER" = "HOME" ] echo "NORMAL2" echo "ON_OTHER1" date +"%Y/%m/%d %T" echo "Sybase ASE stop" correct the path of shutdown script for ASE dataserver shutdown=/home/sybase/shutdown correct the server name of ASE data server su - sybase -c ". ${SYBASE}/SYBASE.sh; isql -S AS01 -U sa -P -i $shutdown" sleep 10 echo "ERROR_DISK from START" -16-

17 elif [ "$CLP_EVENT" = "FAILOVER" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "FAILOVER1" if [ "$CLP_SERVER" = "HOME" ] echo "FAILOVER2" echo "ON_OTHER2" date +"%Y/%m/%d %T" echo "Sybase ASE stop" correct the path of shutdown script for ASE dataserver shutdown=/home/sybase/shutdown sleep 10 correct the server name of ASE data server su - sybase -c ". ${SYBASE}/SYBASE.sh; isql -S AS01 -U sa -P -i $shutdown" sleep 10 echo "ERROR_DISK from FAILOVER" echo "NO_CLP" echo "EXIT" exit 0 shutdown /home/sybase/shutdown SQL shutdown go -17-

18 (3) start.sh!/bin/sh *************************************** * start.sh * *************************************** correct the install path of syb and the library pass. /opt/sybase/sybase.sh export LD_LIBRARY_PATH=/opt/sybase/OCS-12_5/lib if [ "$CLP_EVENT" = "START" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "NORMAL1" if [ "$CLP_SERVER" = "HOME" ] echo "NORMAL2" echo "ON_OTHER1" correct or add the prameters, server naem, databsyb name, etc... clp_sybmon sybwatch -d SYBDB01 -s AS01 -u sa -i 10 -r 10 -c 2 echo "ERROR_DISK from START" elif [ "$CLP_EVENT" = "FAILOVER" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "FAILOVER1" if [ "$CLP_SERVER" = "HOME" ] echo "FAILOVER2" echo "ON_OTHER2" correct or add the prameters, server naem, databsyb name, etc... clp_sybmon sybwatch -d SYBDB01 -s AS01 -u sa -i 10 -r 10 -c 2 echo "ERROR_DISK from FAILOVER" echo "NO_CLP" echo "EXIT" exit 0-18-

19 (4) stop.sh! /bin/sh *************************************** * stop.sh * *************************************** correct the library pass export LD_LIBRARY_PATH=/opt/sybase/OCS-12_5/lib if [ "$CLP_EVENT" = "START" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "NORMAL1" if [ "$CLP_SERVER" = "HOME" ] echo "NORMAL2" echo "ON_OTHER1" correct the watch id clp_sybmon sybwatch -stop echo "ERROR_DISK from START" elif [ "$CLP_EVENT" = "FAILOVER" ] if [ "$CLP_DISK" = "SUCCESS" ] echo "FAILOVER1" if [ "$CLP_SERVER" = "HOME" ] echo "FAILOVER2" echo "ON_OTHER2" correct the watch id clp_sybmon sybwatch -stop echo "ERROR_DISK from FAILOVER" echo "NO_CLP" echo "EXIT" exit 0-19-

20 8-1. DB $ /opt/sybase/ase-12_5/install/startserver f /opt/sybase/ase-12_5/install/run_as DB $ /opt/sybase/ase-12_5/install/showserver 8-3. DB isql 1> shutdown 2> go $ isql -Usa -P -SMyServer -i /home/sybase/shutdown /home/sybase/shutdown shutdown go 8-4. DB $ srvbuild GUI DB $. /opt/sybase/sybase.sh Sybsystemprocs device path DB 8-5. SA System Administrator sa Sybase sa null DB isql 1> sp_password OldPass, NewPass 2> go sa OldPass null 1> sp_password null, NewPass 2> go -20-

Samba_HowTo.doc

Samba_HowTo.doc Samba 3.0.0 on CLUSTERPRO for Linux HowTo 1 Linux Samba CLUSTERPRO for Linux Samba Linux Samba Samba Samba 2 Samba Red Hat Enterprise Linux AS release 3 CLUSTERPRO SE for Linux Ver3.0 Samba 3.0.0-14.3

More information

DHCPサーバのクラスタ化

DHCPサーバのクラスタ化 DHCP サーバのクラスタ化 次 DHCP サーバのクラスタ化 概要 この文書は CLUSTERPRO for Linux による DHCP サーバのクラスタ化に関する情報を載せています 目次 1 はじめに 1.1 改版履歴 1.2 免責事項 1.3 商標 2 構築手順 2.1 構築環境 2.2 事前準備 2.3 DHCP サーバの設定 2.4 クラスタ構成情報の作成 2.5 クラスタ構成情報の適用

More information

Samba on CLUSTERPRO for Linux HOWTO

Samba on CLUSTERPRO for Linux HOWTO Samba 2.2.2 n CLUSTERPRO fr Linux HOWTO 1 はじめに この文書は Linux の Samba サーバと CLUSTERPRO fr Linux を組み合わせて フェイルオーバクラスタ化するために必要な情報を記述したものです Samba サーバをフェイルオーバクラスタ化することにより 単一 Linux サーバでは達成し得ない可用性の高い高信頼な Samba サーバを構築することができます

More information

CLUSTERPRO for Linux PostgreSQL HowTo

CLUSTERPRO for Linux PostgreSQL HowTo PostgreSQL on CLUSTERPRO for Linux HOWTO 1 はじめに この文章は CLUSTERPRO for Linux 上で PostgreSQL を動作させる際に参考となる情報を記述したもので す PostgreSQL を片方向および双方向スタンバイで運用するための設定方法や注意点を述べます この文章を書くにあたって次のディストリビューションと同梱されている PostgreSQL

More information

NFS On CLUSTERPRO for Linux

NFS On CLUSTERPRO for Linux NFS On CLUSTERPRO for Linux 1 はじめに この文書は Linux の NFS 機能 ( サーバ部分 ) を CLUSTERPRO for Linux と組み合わせてフェイルオーバクラスタ化するために必要な情報を記述したものです たとえば ファイルサーバ等をフェイルオーバクラスタ化することにより 単一 Linux サーバでは達成し得ない可用性の高い高信頼なファイルサーバを構築することができます

More information

CLUSTERPRO ファイルサーバ監視オプション編

CLUSTERPRO ファイルサーバ監視オプション編 CLUSTERPRO SE for Linux Ver3.0 2004.03.31 1 1 2004/03/31 2 CLUSTERPRO for Linux R2.0 CLUSTERPRO Linux Linus Torvalds URL NEC http://soreike.wsd.mt.nec.co.jp/ [ ][ ][CLUSTERPRO ] NEC http://www.ace.comp.nec.co.jp/clusterpro/

More information

CLUSTERPRO による MariaDB の HA クラスタ動作検証 第 1 版 日本電気株式会社クラウドプラットフォーム事業部 CLUSTERPRO グループ

CLUSTERPRO による MariaDB の HA クラスタ動作検証 第 1 版 日本電気株式会社クラウドプラットフォーム事業部 CLUSTERPRO グループ CLUSTERPRO による MariaDB の HA クラスタ動作検証 2015.08.10 第 1 版 日本電気株式会社クラウドプラットフォーム事業部 CLUSTERPRO グループ 改版履歴 版数改版日付内容 1 2015/08/10 新規作成 Copyright NEC Corporation 2015. All rights reserved. 免責事項本書の内容は 予告なしに変更されることがあります

More information

CLUSTERPRO/システム構築ガイド

CLUSTERPRO/システム構築ガイド CLUSTERPRO for Linux Ver 2.0 GFS 編 第 2 版 2002.3.6 改版履歴 版数 改版年月日 改版ページ 内 容 第 1 版 2002.2.19 - 先行リリース用. 第 2 版 2002.3.6 - IA-64 固有部分を削除. GFSに依存した記述のみに変更. 2 1 概要 本書は Azusa IA-64 Linux 用の CLUSTERPRO for Linux

More information

INR-HG5290b_users_Linux-RHEL4_.doc

INR-HG5290b_users_Linux-RHEL4_.doc INR-HG5290b 1 ( ) ( ) () 1. RCCMD ADVANCED... 3 1.1....3 1.1.1....3 1.1.2....3 1.2....4 2.... 5 2.1....5 2.2....6 3.... 7 3.1. RCCMD ADVANCED...7 3.2....7 3.3....7 3.4....8 4. RCCMD ADVANCED... 9 4.1.

More information

PrintWalker/LXE インストールガイド

PrintWalker/LXE インストールガイド PrintWalker/LXE V16L20 1 2 PrintWalker/LXE V16L20 for Red Hat Enterprise Linux (for x86) Linux Linus Torvalds Red Hat RPM Red Red Hat, Inc. Common UNIX Printing System CUPS Apple Inc. UNIX Microsoft Windows

More information

install

install SCore SCore 5.0 2001.03.19 [email protected] SCore Backbone LAN Ethernet EEPRO100 Myrinet-2000 Fibre 02/03/20 2 1 NIC (Network Interface Card) NIC 100Mbps Ethernet EEPRO100 Tulip 3C905B Network Trunking

More information

PostgreSQLによる データベースサーバ構築技法

PostgreSQLによる データベースサーバ構築技法 PostgreSQL PostgreSQL PostgreSQL (UCB) Unix/Linux/Windows LC2002 Copyright(C)2002 Tatsuo Ishii 1 PostgreSQL API C, C++, Java, Perl, Tcl/Tk, PHP, Ruby LC2002 Copyright(C)2002 Tatsuo Ishii 2 PostgreSQL (SQL)

More information

INR-HF51882d_users_Linux-Solaris_.doc

INR-HF51882d_users_Linux-Solaris_.doc INR-HF51882d 1 ( ) ( ) () 1. RCCMD ADVANCED... 3 1.1....3 1.1.1....3 1.1.2....3...5 1.2....6 1.2.1....7...8 1.3....9 1.3.1....9 1.3.2....15 2....17 2.1....17 2.1.1....17 2.1.2. Linux (rpm)...17 2.1.3.

More information

WebOTX Application Server クラスタ構築ガイド

WebOTX Application Server クラスタ構築ガイド WebOTX Application Server V10 クラスタ構築ガイド CLUSTERPRO X 編 版数 : 初版 発行 : 2019 年 7 月 Copyright (C) 1998-2019 NEC Corporation. All rights reserved. 目次 1. はじめに... 1 1.1. 本書の目的... 1 1.2. 用語 表記について... 1 1.3. 必要となるソフトウェア...

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 5 6 Xen OS VT AMD-V OSWindows

More information

Xen入門 ppt

Xen入門 ppt http://begi.net/ Xen Xen 2 1 Fedora Core 5 IP IP IP 192.168.1.10/24 server.example.com HDD Web Disabled SELinux Disabled 3 Xen Virtual Machine Monitor 4 Hypervisor Xenoserver 2 5 6 Xen OS VT AMD-V OSWindows

More information

ExpressUpdate Agent インストレーションマニュアル

ExpressUpdate Agent インストレーションマニュアル ExpressUpdate Agent Document Rev.2.10 1 ... 1... 2... 3... 4 1 ExpressUpdate Agent... 5 2... 6 3 ExpressUpdate Agent... 8 3.1 ExpressUpdate Agent (Windows)... 8 3.1.1... 8 3.1.2... 8 3.1.3 ExpressUpdate

More information

CLUSTERPRO 作業報告書

CLUSTERPRO 作業報告書 Micro Focus Server Express + CLUSTERPRO - 検証報告書 - 2003 年 12 月 16 日版 ターボリナックス株式会社 目次 目次 1. 概要...3 2. 対象システム...4 2.1. ハードウェア構成...4 3. CLUSTERPRO の構築...5 3.1. OS のインストール...5 3.2. Turbolinux 8 CLUSTERPRO SE...6

More information

Turbolinux CLUSTERPRO X 3.0 簡易導入ガイド ~ MySQL編 ~

Turbolinux CLUSTERPRO X 3.0 簡易導入ガイド ~ MySQL編 ~ Turbolinux Turbolinux CLUSTERPRO CLUSTERPRO X X 3.0 3.0 簡易導入ガイド 簡易導入ガイド MySQL MySQL 編 編 ターボリナックス株式会社 Copyrights/Trademarks 2011 Turbolinux, Inc. All rights reserved. 本書の一部 または全部を著作権所有者の許諾なしに 商用目的のために複製

More information

Oracle Application Server 10g(9

Oracle Application Server 10g(9 Oracle Application Server 10g (9.0.4) for Microsoft Windows J2EE Oracle Application Server 10g (9.0.4) for Microsoft Windows J2EE and Web Cache...2...3...3...4...6...6...6 OS...9...10...12...13...24...24

More information

Actual ESS Adapterの使用について

Actual ESS Adapterの使用について Actual ESS Adapter SQL External SQL Source FileMaker SQL ESS SQL FileMaker FileMaker SQL FileMaker FileMaker ESS SQL SQL FileMaker ODBC SQL FileMaker Microsoft SQL Server MySQL Oracle 3 ODBC Mac OS X Actual

More information

sg_lenovo_os.xlsx

sg_lenovo_os.xlsx System x OS System Guide Windows Server 1/41 2/41 3/41 4/41 Lenovo OEMRed Hat Enterprise Linux 5/41 6/41 7/41 8/41 9/41 10/41 11/41 12/41 13/41 14/41 15/41 16/41 VMware Lenovo 17/41 18/41 19/41 20/41 21/41

More information

Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015

Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015 Docker Haruka Iwao Storage Solution Architect, Red Hat K.K. February 12, 2015 (@Yuryu) : Web (HPC) ( MMORPG) Docker Web OS nginx HTML nginx OS nginx nginx RHEL RHEL OS Docker 2 Dockerfile $ docker build

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

IBM Power Systems上でのCLUSTERPRO動作検証結果

IBM Power Systems上でのCLUSTERPRO動作検証結果 IBM Power Systems 上での CLUSTERPRO 動作検証結果 2010/01/15 ( 第 2 版 : 2010/07/12 改訂 ) 1. はじめに IT 環境では TCO 削減が求められており サーバーの設置スペースや消費電力の削減 ハードウェア資源の有効利用によりコスト削減を実現する手法の 1つとしてサーバー化技術を活用したサーバー統合が挙げられます IBM Power Systems

More information

Red Hat Enterprise Linux AS (v.3 for IPF) Update 3

Red Hat Enterprise Linux AS (v.3 for IPF) Update 3 2005-09-01 Red Hat Enterprise Linux AS (v.3 for Itanium) PRIMERGY Linux Linux PRIMERGY Global Array Manager-Client Global Array Manager-Client Linux (SupportDesk Product ) All Rights Reserved, Copyright

More information

別紙 : 検証環境の構築手順 ( 章 ) 1. サーバ設定 1.1 IP アドレス設定 サーバは以下の 6 台を用いる pgpool-ii サーバ 2 台 DB サーバ 3 台 上位サーバ 1 台 OS は全サーバで CentOS 6.4 x86_64 とする pgpool-ii のサー

別紙 : 検証環境の構築手順 ( 章 ) 1. サーバ設定 1.1 IP アドレス設定 サーバは以下の 6 台を用いる pgpool-ii サーバ 2 台 DB サーバ 3 台 上位サーバ 1 台 OS は全サーバで CentOS 6.4 x86_64 とする pgpool-ii のサー 別紙 : 検証環境の構築手順 (13.1.1 章 ) 1. サーバ設定 1.1 IP アドレス設定 サーバは以下の 6 台を用いる pgpool-ii サーバ 2 台 DB サーバ 3 台 上位サーバ 1 台 OS は全サーバで CentOS 6.4 x86_64 とする pgpool-ii のサーバは NIC を 3 つ持っているとする (eth0, eth1, eth2) このうち eth0 をサービス提供と

More information

untitled

untitled ALTIRIS DEPLOYMENT SOLUTION 6.9 Quick Startup Guide Rev. 1.2 2008 7 11 1.... 2 DEPLOYMENT SERVER... 2 DEPLOYMENT CONSOLE... 2 DEPLOYMENT DATABASE... 2 DEPLOYMENT SHARE... 3 PXE SERVER... 3 DEPLOYMENT AGENT...

More information

3 4 SAP HANA 5 6 SAP HANA Xeon E7 v3 SAP HANA 6 8 OLTP OLAP 1 9 SAP S/4HANA SAP HANA Studio 13 14

3 4 SAP HANA 5 6 SAP HANA Xeon E7 v3 SAP HANA 6 8 OLTP OLAP 1 9 SAP S/4HANA SAP HANA Studio 13 14 SAP HANA SAP HANA SAP HANA SPS10 2015.07 3 4 SAP HANA 5 6 SAP HANA Xeon E7 v3 SAP HANA 6 8 OLTP OLAP 1 9 SAP S/4HANA 10 11 12 SAP HANA Studio 13 14 SAP Hasso Plattner SAP SAP HANA SAP HANASAP SAP HANA

More information

PowerGres on Linuxマニュアル

PowerGres on Linuxマニュアル PowerGres R on Linux Linux Linus Torvalds TM R 1 2 2 PowerGres on Linux 2 2.1 PowerGres on Linux.................................... 2 2.2.............................................. 2 2.3..............................................

More information

# mv httpd tar.gz /usr/local/src /usr/local/src # tar zxvf httpd tar.gz make #./configure # make # make install Apache # /usr/local/apac

# mv httpd tar.gz /usr/local/src /usr/local/src # tar zxvf httpd tar.gz make #./configure # make # make install Apache # /usr/local/apac LAMP 2007 10 29 1 LAMP LAMP Web L:Linux( ) A:Apache(Web ) M:MySQL( ) P:PHP(Hypertext Preprocessor) OS Windows WAMP Mac OS MAMP Vine Linux OS root yum Red Hat Linux 2 Apache Apache http://httpd.apache.org/download.cgi

More information

CLUSTERPRO X for Windows PPガイド (バックアップツール)

CLUSTERPRO X for Windows PPガイド (バックアップツール) CLUSTERPRO X for Windows PP ガイド (Backup Exec) 2018.02.27 第 2 版 改版履歴 版数 改版日付 内容 1 2012/08/10 PPガイド ( バックアップツール ) より分冊し 新規作成 2 2018/02/27 商標情報を Veritas に関する記載を追加 適用範囲を更新 社外サイトの URL を修正 対象製品を Backup Exec

More information

1 1 CentOS Java JDK(JavaSE Development Kit)......

1 1 CentOS Java JDK(JavaSE Development Kit)...... 1 1 CentOS 3 1.1.................................... 3 1.2......................................... 12 2 Java 15 2.1 JDK(JavaSE Development Kit)................. 15 3 Apache Tomcat 17 3.1....................................

More information

1996 Only One Technology NetJapan System Data Protection Solutions 2009 ActiveImage Protector ActiveImage Protector OS NetJapan System Protection Solu

1996 Only One Technology NetJapan System Data Protection Solutions 2009 ActiveImage Protector ActiveImage Protector OS NetJapan System Protection Solu System Data Protection Solutions 1996 Only One Technology NetJapan System Data Protection Solutions 2009 ActiveImage Protector ActiveImage Protector OS NetJapan System Protection Solutions Windows / Linux

More information

P X-M04-00 PowerChute Network Shutdown PowerChute Network Shutdown Standard v2.2.3a / Enterprise v2.2.3v PowerChute Network Shutdown Standard

P X-M04-00 PowerChute Network Shutdown PowerChute Network Shutdown Standard v2.2.3a / Enterprise v2.2.3v PowerChute Network Shutdown Standard P-2416-211X-M04-00 PowerChute Network Shutdown Standard v2.2.3a GHSVSUUP86 Enterprise v2.2.3v GHSVSUUP87 P-2416-211X-M04-00 PowerChute Network Shutdown PowerChute Network Shutdown Standard v2.2.3a / Enterprise

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information

橡環境設定.PDF

橡環境設定.PDF UNIX Vine Linux 1.1 A B C D E F G XML H mod_rewrite(url Rewriting Engine # /etc/rc.d/init.d/httpd stop /usr/local/src % cd /usr/local/src % cp /copysrcpath/apache_1.3.9.tar.gz./ copysrcpath % gzip cd apache_1.3.9.tar.gz

More information

HITACHI Gigabit Fibre Channel (SUSE Linux Enterprise Server IOCard-FP2-Z-199(1)

HITACHI Gigabit Fibre Channel (SUSE Linux Enterprise Server IOCard-FP2-Z-199(1) HITACHI Gigabit Fibre Channel (SUSE Linux Enterprise Server IOCard-FP2-Z-199(1) 2 (VCCI) Linux Linus Torvalds Red Hat Red Hat Inc. SUSE SUSE LLC All rights reservedcopyright 2014, Hitachi,Ltd. Licensed

More information

はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) と CLUSTERPRO X 3.1 for Linux ( 以後 CLUSTERPRO と記載します ) を組み合わせて フェイルオーバクラスタ

はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) と CLUSTERPRO X 3.1 for Linux ( 以後 CLUSTERPRO と記載します ) を組み合わせて フェイルオーバクラスタ CLUSTERPRO MC ProcessSaver 1.0 for Linux 構築ガイド 2013(Apr) NEC Corporation 責任範囲 適用範囲 概要 事前準備 クラスタ設定 動作確認 はしがき 本書は CLUSTERPRO MC ProcessSaver 1.0 for Linux ( 以後 ProcessSaver と記載します ) と CLUSTERPRO X 3.1 for

More information

Microsoft Word - nvsi_050090jp_oracle10g_vlm.doc

Microsoft Word - nvsi_050090jp_oracle10g_vlm.doc Article ID: NVSI-050090JP Created: 2005/04/20 Revised: Oracle Database10g VLM 環境での NetVault 動作検証 1. 検証目的 Linux 上で稼動する Oracle Database10g を大容量メモリ搭載環境で動作させる場合 VLM に対応したシステム設定を行います その環境において NetVault を使用し

More information

クラスタ環境におけるNetVault Backupバックアップ&リストア構築ガイド

クラスタ環境におけるNetVault Backupバックアップ&リストア構築ガイド クラスタ環境における NetVault Backup バックアップ & リストア構築ガイド Copyrights 著作権 2009 BakBone Software クラスタ環境における NetVault Backup バックアップ & リストア構築ガイド Version 2.0 本ガイドは クラスタ環境のバックアップを NetVault Backup を使用して行うのに必要な情報について 説明しています

More information

アプリケーションサーバ JBoss超入門

アプリケーションサーバ JBoss超入門 アプリケーションサーバ JBoss 超入門 ~ 10 分で始める JBoss ~ 株式会社日立ソリューションズ OSS ソリューションビジネス推進センタ山本慎悟 Contents 1. 自己紹介 2. JBoss 概要 3. JBossのインストールおよび初期設定 4. デモ (10 分でセットアップ ) 5. 日立ソリューションズのオープンソースソリューションのご紹介 6. まとめ 2.JBoss

More information

PowerGres on Linuxマニュアル

PowerGres on Linuxマニュアル PowerGres R on Linux Linux Linus Torvalds TM R 1 2 2 PowerGres on Linux 2 2.1 PowerGres on Linux.................................... 2 2.2.............................................. 2 2.3..............................................

More information

100123SLES11HA.pptx

100123SLES11HA.pptx SLES11 Xen +HA CEO [email protected] VirtualTech Japan Inc. VTJ 2006 12 14,250,000 1-1-10 CEO CTO 8 5.5 URL http://virtualtech.jp/ 2 1 P2V Xen 3 High Availability Extension SUSE Linux Enterprise

More information

概要

概要 JobCenter for JobCenter R12.4 2 A C D 1 2005/03/11 2 2005/07/01 C JobCenter R12.4.1 2 3 2005/07/01 A MC/ServiceGuard Linux 4 2005/07/01 A daemon.conf 5 2005/07/01 C 6 2005/07/01 A MSCS 7 2005/07/01 A JobCenter

More information

Oracle Database Clientクイック・インストレーション・ガイド, 10gリリース 1( ) for Linux x86-64

Oracle Database Clientクイック・インストレーション・ガイド, 10gリリース 1( ) for Linux x86-64 Oracle Database Client クイック インストレーション ガイド 10g リリース 1(10.1.0.3)for Linux x86-64 部品番号 : B15538-01 原典情報 : B14403-01 Oracle Database Client Quick Installation Guide 10g Release 1 (10.1.0.3) for Linux x86-64

More information

ゲスト OS インストール ガイド

ゲスト OS インストール ガイド 2 VMware, Inc. VMware, Inc. 3 4 VMware, Inc. VMware, Inc. 5 6 VMware, Inc. VMware, Inc. 7 8 VMware, Inc. VMware, Inc. 9 10 VMware, Inc. VMware, Inc. 11 12 VMware, Inc. VMware, Inc. 13 14 VMware, Inc. VMware,

More information

ESMPRO/DeliveryManager

ESMPRO/DeliveryManager DeliveryManager Standard Edition [] (1) (2) (3) (4) (3) Microsoft MSMS-DOS Microsoft Windows Microsoft Corporation ESMPRO TM HP-UX Hewlett-Packard UNIX X/Open Motif Open Software Foundation,Inc. X Window

More information

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF A.2 Bash macos.bash_profile exp

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF   A.2 Bash macos.bash_profile exp A Erlang/OTP Elixir Phoenix nvm Node.js A.1 Erlang/OTP 21.1 $ kerl update releases $ kerl build 21.1 21.1 $ kerl install 21.1 ~/erlang/21.1 $ source ~/erlang/21.1/activate Erlang/OTP 1 203 A : kerl kerl

More information

Asterisk PBX 不正利用防止

Asterisk PBX 不正利用防止 Asterisk PBX ICTR120716-OR01A Info Circus,Inc. 1 2 2 IP-PBX 3 2.1........................... 3 3 IP-PBX 4 3.1........................................... 4 3.2..................................... 4 3.3..............................

More information

PostgreSQL Plus 管理者ガイド

PostgreSQL Plus 管理者ガイド 2.4 旧バージョンからの移行 ここでは PostgreSQL Plus V1.0 および V1.1 から PostgreSQL Plus V2.0 にインスタンスの資産 を移行する手順について説明します PostgreSQL Plus V1.0 および V1.1 は PostgreSQL 7.3 をベースとしています また PostgreSQL Plus V2.0 は PostgreSQL 7.4

More information

NEC COBOL Media V2.0 セットアップカード SL438740B01-1

NEC COBOL Media V2.0 セットアップカード SL438740B01-1 NEC COBOL Media V2.0 セットアップカード ごあいさつ このたびは COBOL 製品をお買い上げ頂き まことにありがとうございます 本書は 下記 COBOL 製品のインストール方法について記述しております COBOL Enterprise Edition Compiler V2.0 COBOL Enterprise Edition Server Runtime V2.0 COBOL

More information

IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Informati

IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Informati IBM Software Group XML Features in DB2 UDB V8 IBM Software Group DB2 Information Management Software DB2 V8 XML SQL/XML 2 XML XML UDF XMLExtender XML XML XMLCollection, XMLColumn XML UDF Information Integrator

More information

ソフトウェア説明書 CA APM 9 (9.5)

ソフトウェア説明書 CA APM 9 (9.5) CA Introscope Windows Vista Windows 7 Windows Windows XP Red Hat Enterprise Linux 5 Red Hat Enterprise Linux Red Hat Enterprise Linux Microsoft Windows Server 20 Microsoft Windows Server 20 Microsoft

More information

Oracle Database 10g Automatic Storage Management の NEC iStorage S シリーズへの適用

Oracle Database 10g Automatic Storage Management の NEC iStorage S シリーズへの適用 Oracle Database 10g TM Automatic Storage Management NEC istorage S An Oracle and NEC White Paper August 2005 2006/04-1 - Copyright 2005 NEC and Oracle Corporation. All rights reserved. Oracle, Oracle Database

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

More information

WebSphere Application Server V5.0 for Linux Ver. 1.11

WebSphere Application Server V5.0 for Linux Ver. 1.11 WebSphere Application Server V5.0 for Linux Ver. 1.11 1.... 3 2.... 4 2.1.... 4 2.2.... 4 2.3. ( ) rpm... 5 2.4.... 6 3. WebSphere Application Server V5 Base... 7 3.1. WebSphere Application Server... 7

More information

Oracle Application Server 10g (9.0.4) for Linux x86 インストール手順 - J2EE実行環境編

Oracle Application Server 10g (9.0.4) for Linux x86 インストール手順 - J2EE実行環境編 Oracle Application Server 10g Release 2 (10.1.2) for Linux x86 J2EE Oracle Application Server 10g Release 2 (10.1.2) for Linux J2EE and Web Cache J2EE Oracle Application Server 10g Release 2 (10.1.2) J2EE

More information

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL -

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart Web for SellSide ver3.1.0 2002/03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart intra-mart intra-mart - 1 - intra-mart

More information

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド Cisco ASA DigiCert 2013 7 8 Cisco ASA VPN DigiCert : 2013 7 8 Copyright 2018 DigiCert, Inc. All rights reserved. DigiCert DigiCert DigiCert, Inc. Symantec Norton Symantec Corporation DigiCert, Inc. DigiCert,

More information

CLUSTERPRO 作業報告書

CLUSTERPRO 作業報告書 WebSphere MQ + CLUSTERPRO - 検証報告書 - 2003 年 11 月 21 日版 ターボリナックス株式会社 目次 目次 1. 概要...3 2. 対象システム...4 2.1. ハードウェア構成...4 2.2. ソフトウェア構成...6 3. インストール...7 3.1. OS...7 3.2. FAStT デバイスドライバ (qla2300.o)...8 3.3. Turbolinux

More information