HP OpenSource ブループリント

Size: px
Start display at page:

Download "HP OpenSource ブループリント"

Transcription

1 HP OpenSource Blue Print MySQL Enterprise Server 5.0 Red Hat Enterprise Linux 3 tar.gz ver 1.1 1

2 MySQL Red Hat Enterprise Linux 3 MySQL Community Server Enterprise Server 2 MySQL Enterprise Server MySQL Enterprise Server MySQL MySQL Red Hat Enterprise Linux3 1 MySQL 2 MySQL MySQL 3 MySQL tar.gz MySQL 4 HP Smart Array 2

3 MySQL MySQL OS tar MySQL MySQL MySQL Appendix1 : Appendix2 : HP Smart

4 1. MySQL 3 tar.gz rpm tar.gz MySQL 1 MySQL ) rpm ) MySQL MySQL ( ) 1 MySQL ) MySQL Enterprise MySQL Enterprise 2. MySQL MySQL MySQL Enterprise 1 MySQL Enterprise ( Address Password) 4

5 1 MySQL Enterprise 5

6 2 MySQL Enterprise Home 2 MySQL Enterprise Home Enterprise Software MySQL MySQL Red Hat Enterprise Linux 3 AS Update8 (x86, 32-bit) tar.gz Linux TAR(x86, dynamic glibc-2.3) mysql-enterprise-gpl linux-i686- glibc23.tar.gz /tmp 3. MySQL MySQL tar.gz tar.gz MySQL OS MySQL # rpm -qa grep mysql OS msql # rpm -qa grep mysql xargs rpm -e 3.1. OS MySQL OS 'mysql' mysql 'mysql' $ su 6

7 # /usr/sbin/groupadd mysql # /usr/sbin/useradd -g mysql mysql # passwd mysql ( ) 3.2. tar tar /usr/local tar.gz # cd /usr/local/ # tar xvzf /tmp/mysql-enterprise-gpl linux-i686-glibc23.tar.gz # chown -R mysql:mysql mysql-enterprise-gpl linux-i686-glibc23/ # ln -s mysql-enterprise-gpl linux-i686-glibc23 mysql MySQL /usr/local/mysql Owner MySQL OS (mysql) chown tar mysql-enterprise-gpl linux-i686-glibc23 tar bin data docs include lib scripts share sql-bench mysql, Change 3.3. MySQL (/etc/my.cnf) MySQL # cd /usr/local/mysql # cp./support-files/my-huge.cnf /etc/my.cnf # chown mysql:mysql /etc/my.cnf # chmod 644 /etc/my.cnf my-hoge.cnf 1G 2Gbyte (my-large.cnf, my-medium.cnf ) 3.4. MySQL # cd /usr/local/mysql #./scripts/mysql_install_db --user=mysql Installing all prepared tables Fill help tables To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER! To do so, start the server, then issue the following commands:./bin/mysqladmin -u root password 'new-password'./bin/mysqladmin -u root -h dl380g4node1 password 'new-password' See the manual for more instructions. 7

8 You can start the MySQL daemon with: cd. ;./bin/mysqld_safe & You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory: cd sql-bench ; perl run-all-tests Please report any problems with the./bin/mysqlbug script! The latest information about MySQL is available on the web at Support MySQL by buying support/lic./senses at tar.gz mysql_install_db MySQL (/usr/local/mysql) 3.5. MySQL MySQL # cd /usr/local/mysql #./bin/mysqld_safe --user=mysql & Starting mysqld daemon with databases from /usr/local/mysql/data 3.6. MySQL #./bin/mysqladmin ping mysqld is alive mysqld is alive MySQL 3.7. MySQL # /usr/local/mysql/bin/mysql -u root mysql> use mysql; mysql> select host, user, password from user; host user password localhost localhost root host1 host1 root rows in set (0.03 sec) mysql> delete from user where user = '' or host='host1'; Query OK, 3 rows affected (0.01 sec) mysql> set password for 'root'@'localhost' = password('root_password'); Query OK, 0 rows affected (0.00 sec) mysql> grant all privileges on *.* to 'root'@'%' identified by 8

9 mysql> 'root_password' with grant option; Query OK, 0 rows affected (0.00 sec) mysql> select host, user from user; host user password localhost root *2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19 % root *97E3CA0A0B E6ECCD76C473CCA8757F rows in set (0.00 sec) mysql> quit root@localhost mysql> delete from user where user='root' and host='%'; mysql> grant all privileges on *.* to 'root'@'hostname' identified by 'dbpassword'; mysql> select host, user, password from user; host user password localhost root *2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19 admin_host root *2AF14BD74D8A4FDB580D3208C0092BE75EE95B hostname dbpass root 3.8. MySQL # mysqladmin version MySQL # mysqladmin version mysqladmin Ver 8.41 Distrib , for pc-linux-gnu on i686 Copyright (C) MySQL AB This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL license Server version enterprise-gpl Protocol version 10 Connection Localhost via UNIX socket UNIX socket /var/lib/mysql/mysql.sock Uptime: 3 hours 35 min 32 sec Threads: 1 Questions: 1 Slow queries: 0 Opens: 12 Flush tables: 1 Open tables: 6 Queries per second avg:

10 4. MySQL 4.1. MySQL mysql mydb root MySQL mydb cp932 # mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: enterprise-gpl MySQL Enterprise Server (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE DATABASE mydb CHARACTER SET cp932; Query OK, 1 row affected (0.00 sec) 4.2. mydb mydbuser mydbpass mysql> GRANT ALL PRIVILEGES ON mydb.* TO 'mydbuser'@'localhost' -> IDENTIFIED BY 'mydbpass'; Query OK, 0 rows affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON mydb.* TO 'mydbuser'@'%' -> IDENTIFIED BY 'mydbpass'; Query OK, 0 rows affected (0.00 sec) localhost mydb Table mydbuser mydbuser mydb Table 4.3. mydb mytable mysql> USE mydb Database changed mysql> CREATE TABLE mytable -> ( -> id INT NOT NULL AUTO_INCREMENT, -> last_name CHAR(30) NOT NULL, -> first_name CHAR(30) NOT NULL, -> PRIMARY KEY (id) -> ); Query OK, 0 rows affected (0.00 sec) 4.4. mytable mysql> INSERT INTO mytable (last_name, first_name) -> VALUES ('Hewlett','Bill'),('Packard','Dave'); Query OK, 2 rows affected (0.00 sec) Records: 2 Duplicates: 0 Warnings: 0 10

11 mysql> SELECT * FROM mytable; id last_name first_name Hewlett Bill 2 Packard Dave rows in set (0.00 sec) 11

12 Appendix1 : MySQL (/usr/local/mysql)./data 1. /dev/cciss/c0d1p1 Appendix2 2. # mount /dev/cciss/c0d1p1 /mnt/mysql-data 3. # chown mysql:mysql /mnt/mysql-data # chmod 755 /mnt/mysql-data 4. /etc/my.cnf [mysqld] [mysqld] datadir = /mnt/mysql-data 5. # cd /usr/local/bin #./scripts/mysql_install_db --datadir=/mnt/mysql-data --user=mysql mysql /dev/cciss/c0d1p1 Appendix2 : HP Smart HP ProLiant RAID [F8] Rom Configuration for Arrays Utility RCAU RCAU [Create Logical Drive] 12

13 Tab RAID HP ProLiant 13

14 :00 19:00 10:00 18:00 Linux/ HP Copyright 2007 Hewlett-Packard Development Company,L.P

untitled

untitled HP OpenSource MySQL Server 5.0 Red Hat Enterprise Linux 4 ver 1.5 MySQL Red Hat Enterprise Linux 4 Super Smack Super Smac MySQL Super Smack RHEL4 1 2 MySQL SuperSmack SuperSmack 3 SuperSmack MySQL 4 MySQL

More information

[user@linux tmp]$ tar xzvf utvpn-src-unix-v100-7092-beta-2010.06.25.tar.gz [user@linux tmp]$ cd utvpn-unix-v100-7092-beta [user@linux utvpn-unix-v100-7092-beta]$ ls License-ja.txt configure makefiles src

More information

Microsoft PowerPoint - 2-MySQL50_intro.ppt

Microsoft PowerPoint - 2-MySQL50_intro.ppt MySQL 5.0 入門 日本ヒューレット パッカード株式会社 オープンソース コンピテンシ センター 2006 年 8 月 31 日 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice 目次 MySQLのインストール ユーザデータベースの作成

More information

HeartCoreインストールマニュアル

HeartCoreインストールマニュアル HeartCore インストールマニュアル (JSP 版 ) October2013 Ver1.1-1 - 改訂履歴 改訂日 改訂内容 Ver1.0 2013 年 07 月 マニュアル改訂 Ver1.1 2013 年 10 月 フォーマット改訂 - 2 - 目次 1. 本文書の目的と対象...- 4-1.1. 概要説明... - 4-2. インストールの流れ...- 4-3. MySQL ユーザの作成...-

More information

MySQL5.0データベース ログファイルおよびステータスの収集

MySQL5.0データベース ログファイルおよびステータスの収集 HP OpenSource MySQL 5.0 ver. 1.0 1 MySQL Server 5.0 MySQL Server 5.0 MySQL Server MySQL Server MySQL Server MySQL Character Set MySQL Character Set 1 MySQL Server MySQL Server 5.0 2 MySQL Server 5.0 MySQL

More information

スライド 1

スライド 1 2005 3 26 (MATSUNOBU Yoshinori MySQL mysqldump FLUSH TABLES WITH READ LOCK SQL (InnoDB Linux,Solaris,HP-UX,AIX,Windows C/C++( SQL92 SQL99 Core 4.1 5.0 InnoDB MyISAM ( B-Tree ( 5.0 4 (InnoDB ( (InnoDB (4.1

More information

HeartCoreインストールマニュアル(PHP版)

HeartCoreインストールマニュアル(PHP版) HeartCore インストールマニュアル (PHP 版 ) October 2013 Ver1.1-1 - 改訂履歴 改訂日 改訂内容 Ver1.0 2013 年 07 月 新規作成 Ver1.1 2013 年 10 月 フォーマット改訂 - 2 - 目次 1. 本文書の目的と対象... - 4-1.1. 概要説明... - 4-2. インストールの流れ... - 4-3. 定義ファイルの確認...

More information

HeartCore(PHP 版 ) インストール手順について説明いたします なお 本資料は 例として下記内容を前提として説明しております 環境情報 対象 OS: Linux ( ディストリビューション : Red Hat Enterprise Linux Server) APサーバ : Apache

HeartCore(PHP 版 ) インストール手順について説明いたします なお 本資料は 例として下記内容を前提として説明しております 環境情報 対象 OS: Linux ( ディストリビューション : Red Hat Enterprise Linux Server) APサーバ : Apache HeartCore インストール手順手順書 (PHP 版 ) Jul 2010 Ver1.0-1 - HeartCore(PHP 版 ) インストール手順について説明いたします なお 本資料は 例として下記内容を前提として説明しております 環境情報 対象 OS: Linux ( ディストリビューション : Red Hat Enterprise Linux Server) APサーバ : Apache

More information

MySQL5.0データベース ログファイルおよびステータスの収集

MySQL5.0データベース ログファイルおよびステータスの収集 HP OpenSource MySQL Server 5.0 ver 1.0 1 MySQL 5.0 MySQL 5.0 MySQL 5.0 MySQL 5.0.18 MySQL 5.0 Community Edition MySQL 5.0 Enterprise Server 1 MySQL 5.0 2 MySQL 5.0 3 MySQL 5.0 2 ... 2... 2... 2... 3 1....

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

untitled

untitled 2 3 4 5 6 READ PK POINT 5.1.30 InnoDB 5.1.30 MyISAM 5.0.79 InnoDB 5.0.79 MyISAM 7 READ_KEY_POINT_LIMIT 5.1.30 InnoDB 5.1.30 MyISAM 5.0.79 InnoDB 5.0.79 MyISAM 8 READ PK RANGE 5.1.30 InnoDB 5.1.30 MyISAM

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

Appendix

Appendix Appendix Appendix-A PHP 392 Appendix-B -> cd ext/pgsql -> phpize ->./configure --with-pgsql -> make -> make EXTENSION_DIR=/usr/local/lib/php/extensions install extension_dir = "/usr/local/lib/php/extensions/"

More information

HP OpenSource ブループリント

HP OpenSource ブループリント HP OpenSource MySQL Server 5.0 ver 1.0 1 MySQL 5.0 MySQL 5.0 1 MySQL MySQL 2 MySQL Enterprise MySQL MySQL Enterprise 3 MySQL MySQL 4 MySQL MySQL 5 MySQL Cluster MySQL MySQL Cluster 6 MySQL HP 1 HP Proliant

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

More information

Oracle HTML DB 導入ガイド

Oracle HTML DB 導入ガイド Oracle HTML DB Oracle Database 10g ... 4... 4 1... 4... 4 2... 5 2.1 Oracle HTTP Server... 6... 6... 7 2.2 root... 9 UNIX... 9 UNIX... 10 2.3 Oracle... 10... 11 (Bash )... 12 2.4 Oracle HTML DB... 13 2.5...

More information

CMS入門

CMS入門 CMS(Contents Management System) 1 CMS CMS Unix Unix Unix Unix Unix (POP IMAP) OS CMS URL CMS URL CMS CMS Joomla 2006 CMS CMS TYPO3 Plone, TEXTPATTERN, MODx, Geeklog Joomla Mambo CMS 1.0 Mambo 1.5 1.5RC2

More information

,, create table drop table alter table

,, create table drop table alter table PostgreSQL 1 1 2 1 3,, 2 3.1 - create table........................... 2 3.2 - drop table............................ 3 3.3 - alter table............................ 4 4 - copy 5 4.1..................................

More information

PowerPoint Presentation

PowerPoint Presentation Webデザイン特別プログラムデータベース実習編 3 MySQL 演習, phpmyadmin 静岡理工科大学総合情報学部幸谷智紀 http://na-inet.jp/ RDB の基礎の基礎 RDB(Relational DataBase) はデータを集合として扱う データの取り扱いはテーブル (= 集合 ) の演算 ( 和集合, 積集合 ) と同じ データベースには複数のテーブルを作ることができる

More information

etrust Access Control etrust Access Control UNIX(Linux, Windows) 2

etrust Access Control   etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control 3 ID 10 ID SU ID root 4 OS OS 2 aaa 3 5 TCP/IP outgoing incoming DMZ 6 OS setuid/setgid) OS

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

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

<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

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

Northern Lights Server

Northern Lights Server FirstStep Guide Northern Lights Server Intel Management Module (Advanced Module / ISM 8.4) 2 www.nlcomputer.com 1 FirstStep Guide 1.1. INTEL MANAGEMENT MODULE 2... 5 1.2.... 9 1.3.... 10 2.1. BMC...11

More information

Microsoft Word - D JP.docx

Microsoft Word - D JP.docx Application Service Gateway Thunder/AX Series vthunder ライセンスキー インストール 手順 1 1.... 3 2. vthunder... 3 3. ACOS... 3 4. ID... 5 5.... 8 6.... 8 61... 8 62 GUI... 10 2 1. 概要 2. vthunder へのアクセス 方法 SSHHTTPSvThunder

More information

スライド 1

スライド 1 普通のこと OpenSolaris にとって 普通のこと を 普通に 話してみたいと思います ユーザーズグループの活動の話 勉強会や ML IRC にきてね apache 2.2 # svcadm enable apache22 # svcs -xv apache22 svc:/network/http:apache22 (Apache 2.2 HTTP server) State: online

More information

w w w 2

w w w 2 w w w 2 w w w 3 w w 4 w $ mysql v 5 6 7 8 http://dev.mysql.com/downloads/mysql/5.5.html w 9 10 w 11 12 $ /usr/local/mysql/bin/mysql -u root" mysql> SET PASSWORD FOR root@ localhost = PASSWORD( );" mysql>

More information

P3FY-A JP.PDF

P3FY-A JP.PDF P3FY-A002-03 SCSI GP5-148 GP5-148(AcceleRAID 352) 1 1.1 2001 11 OS ( OS ) 4GByte 2 2.1 EzAssist RAID EzAssist Configure RAID Drive Automatic ( )Assisted( ) Custom ( ) 2.2 2000 7 EzAssist Perform Administration

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド NX7700x ExpressUpdate Agent 1 2 3 4 1 Rev.3.10N NEC Corporation 2014 ... 2... 3... 4... 5 1... 6 2... 7 3... 9 3.1 ExpressUpdate Agent (Windows)... 9 3.1.1... 9 3.1.2... 9 3.1.3 ExpressUpdate Agent...

More information

Mail_Spam_Manual_120815b

Mail_Spam_Manual_120815b server~>su - server:~#mount /mnt/cdrom server:~#umount /mnt/cdrom # cd /mnt/cdrom #./ginstall -F -M [MTA ] -P AV # wget http://download.gideon.co.jp/ginstall.tgz #./ginstall -F -M P -P AV #./ginstall -M

More information

1 ex01.sql ex01.sql ; user_id from (select user_id ;) user_id * select select (3+4)*7, SIN(PI()/2) ; (1) select < > from < > ; :, * user_id user_name

1 ex01.sql ex01.sql ; user_id from (select user_id ;) user_id * select select (3+4)*7, SIN(PI()/2) ; (1) select < > from < > ; :, * user_id user_name SQL mysql mysql ( mush, potato) % mysql -u mush -p mydb Enter password:****** mysql>show tables; usertable mysql> ( ) SQL (Query) : select < > from < > where < >; : create, drop, insert, delete,... ; (

More information

PowerGres on Linux HAマニュアル

PowerGres on Linux HAマニュアル PowerGres R on Linux HA 2006 11 SteelEye LifeKeeper SteelEye Technology, Inc. Linux Linus Torvalds TM R 1 2 2 PowerGres on Linux HA 2 2.1 PowerGres on Linux HA.................................. 2 2.2..............................................

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

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev

More information

WordPress Web

WordPress Web 0948011 1 1 1.............................. 1 2 WordPress....................... 2 3........................ 3 4........................ 4 2 4 1 Web......... 4 3 5 1 WordPress...................... 5 2..........................

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

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

MemcachedによるWebサービスの高速化

MemcachedによるWebサービスの高速化 日本 HP OpenSource/Linux 技術文書 Memcached による Web サービスの高速化 日本ヒューレット パッカード株式会社 2011 年 6 月 17 日 目次 [ 本ドキュメントについて ]... 4 Memcached について... 5 一般的な memcached のシステム構成... 5 実際の memcached のシステム構成... 6 システム構成... 6

More information

UNIX

UNIX 2000 1 UNIX 2000 4 14 1 UNIX? 2 1.1 UNIX OS....................................... 2 1.2.................................................... 2 1.3 UNIX...................................... 2 1.4 Windows

More information

untitled

untitled 2004 1094 1.... 1 1.1....1 1.2....3 1.3....3 2. POSTGRESQL... 5 2.1. POSTGRESQL DB UNIX...5 2.2. POSTGRESQL DB WINDOWS...8 3. XML... 12 3.1. XINDICE (NATIVE XML DATABASE)... 12 3.2. XINDICE... 12 3.3.

More information

untitled

untitled Worldspan go! 4.x (UCI) Administrator Guide go! 4.x (UCI) Version 2.1.4 : 31 August 2007 1. WORLDSPAN GO! VERSION 4.X (UCI)... 3 2. WORLDSPAN GO! VERSION 4.X (UCI)... 4 3.... 6 4. WORLDSPAN GO! VERSION

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

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 for Linux MySQL HowTo

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

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

c h a p t e r 6 $ rpm -q glibc glibc-2.1.2-17vl2 [glibc 2.1]Vine 2.0beta2 glibc-2.0.7-29 [glibc 2.0]Vine 1.1 ftp://ftp. vinelinux.org/ # rpm -ivh post

c h a p t e r 6 $ rpm -q glibc glibc-2.1.2-17vl2 [glibc 2.1]Vine 2.0beta2 glibc-2.0.7-29 [glibc 2.0]Vine 1.1 ftp://ftp. vinelinux.org/ # rpm -ivh post SHIBUYA Hisao E-mail : shibuya@alpha.or.jp 58 - Software Design c h a p t e r 6 $ rpm -q glibc glibc-2.1.2-17vl2 [glibc 2.1]Vine 2.0beta2 glibc-2.0.7-29 [glibc 2.0]Vine 1.1 ftp://ftp. vinelinux.org/ #

More information

INR-HG5579a_Netshut_Guide_Linux-Solaris_.doc

INR-HG5579a_Netshut_Guide_Linux-Solaris_.doc ( ) ( ) () 1 Netshut...1 1.1....1 1.1.1....1 1.1.2. OS...1 1.2....2 2...2 2.1....2 2.2. Linux(RPM )...3 2.3. Solaris(PKG )...4 3 Netshut...7 3.1....7 3.2....8 3.3. Netshut...9 3.4. Syslog...10 3.4.1....11

More information

untitled

untitled NEC Express5800 Microsoft Windows Server 2003, standard x64 Edition/ Microsoft Windows Server 2003, Enterprise x64 Edition for Express5800/120Lh ) MicrosoftWindows Microsoft Corporation Windows Server

More information

-5 DMP-BV300 μ μ l μ l l +- l l j j j l l l l l l l l l l l l l Ë l l l l l l l l l l l l l l l l l l l l l l l BD DVD CD SD USB 2 ALL 1 2 4 l l DETACH ATTACH RELEASE DETACH ATTACH DETACH ATTACH RELEASE

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

N manual_JP.PDF

N manual_JP.PDF NEC Express5800 - 1 - N8103-73 ESMPRO/ServerManagerServerAgent Power Console Plus Express5800 EXPRESSBUILDER Version 3.077-N(1) Version 3.078a-N 1): - 2 - Windows NT 4.0 Microsoft Windows NT Server 4.0

More information

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

More information

テクニカルドキュメントのテンプレート

テクニカルドキュメントのテンプレート OXID EShop Community Edition 4.5.0 インストール手順 マニュアル ( 2011 年 6 月 15 日作成 ) Gennai3 株式会社 http://www.gennai3.co.jp 目次 1 インストールの環境...2 1.1OS と OXID eshop の環境...2 1.2 インストールのシステム要件...2 第 2 章 インストール手順...4 1.1

More information

FileMaker Server 8 Administrator’s Guide

FileMaker Server 8 Administrator’s Guide 1994-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker, Inc. FileMaker

More information

Sybase on CLUSTERPRO for Linux HowTo

Sybase on CLUSTERPRO for Linux HowTo Sybase on CLUSTERPRO for Linux HowTo 1 2006 2 6-1- ... 3... 4... 5... 7 DB... 8 DB... 9... 10 DB... 11 DB... 12 CLUSTERPRO... 13... 20-2- Sybase Adaptive Server Enterprise Red Hat Enterprise Linux AS3

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 13 ODBC JDBC 2004-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

unix.dvi

unix.dvi 1 UNIX 1999 4 27 1 UNIX? 2 1.1 Windows/Macintosh? : : : : : : : : : : : : : : : : : : : : : : : : 2 1.2 UNIX OS : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 2 1.3 : : : : : : : : : : : :

More information

Microsoft PowerPoint - MySQL-backup.ppt

Microsoft PowerPoint - MySQL-backup.ppt MySQL バックアップ リカバリ概要 オープンソース コンピテンシコンピテンシ センター日本ヒューレットパッカードヒューレットパッカード株式会社 2006 年 12 月 6 日 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド Express5800 ExpressUpdate Agent 1 2 3 4 1 Rev.3.11 NEC Corporation 2014 ... 2... 3... 4... 5 1... 6 2... 7 3... 10 3.1 ExpressUpdate Agent (Windows)... 10 3.1.1... 10 3.1.2... 10 3.1.3 ExpressUpdate Agent...11

More information

untitled

untitled VQT3B82-1 DMP-BDT110 μ μ μ 2 VQT3B82 ÇÕÇ¹Ç Ç +- VQT3B82 3 4 VQT3B82 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ij SD 1 2 3 4 5 6 7 8 Í VQT3B82 5 BD DVD CD SD USB 6 VQT3B82 2 ALL 1 2 4 VQT3B82 7

More information

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2 HB102050A0-4 制限 補足 Esc Enter Esc Enter Esc Enter Main Advanced Server Security Boot Exit A SATA Configuration SATA Controller(s) SATA Mode Selection [Enabled] [RAID] Determines how

More information

はじめに このドキュメントではftServerに関する障害調査を行う際に 必要となるログ データの取得方法を説明しています ログ データの取得には 初期解析用のデータの取得方法と 詳細な調査を行うときのデータ取得方法があります 特別な理由でOS 側のログが必要となった場合には RHELログの取得につ

はじめに このドキュメントではftServerに関する障害調査を行う際に 必要となるログ データの取得方法を説明しています ログ データの取得には 初期解析用のデータの取得方法と 詳細な調査を行うときのデータ取得方法があります 特別な理由でOS 側のログが必要となった場合には RHELログの取得につ ftserver におけるログ取得手順 (Linux 編 ) Rev 0.5: 2017/06/08 1 はじめに このドキュメントではftServerに関する障害調査を行う際に 必要となるログ データの取得方法を説明しています ログ データの取得には 初期解析用のデータの取得方法と 詳細な調査を行うときのデータ取得方法があります 特別な理由でOS 側のログが必要となった場合には RHELログの取得について

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド ExpressUpdate Agent 1 2 3 4 Rev.3.05 NEC Corporation 2012 1 ... 2... 3... 4... 5 1... 6 2... 7 3... 10 3.1 ExpressUpdate Agent (Windows)... 10 3.1.1... 10 3.1.2... 10 3.1.3 ExpressUpdate Agent...11 3.2

More information

Logitec NAS シリーズ ソフトウェアマニュアル

Logitec NAS シリーズ ソフトウェアマニュアル LAS-SFB V05 LAS-RAN LAS-MRN LHD-NAS ... 4... 4... 7... 8 1... 10... 11 1... 12 Windows... 12 Macintosh... 15 2IP... 16 IP Windows... 16 IP Macintosh... 19... 23... 29... 30 Windows Me2000 SMB... 30 Windows

More information

ESMPRO/ServerAgent Extension インストレーションガイド

ESMPRO/ServerAgent Extension インストレーションガイド ESMPRO/ServerAgent Extension 1 2 3 4 80.109.01-008.01 2016 3 NEC Corporation 2016 1 ... 1... 2... 3... 4... 5 1... 6 2... 7 2.1... 7 2.1.1... 9 2.2... 10 2.2.1 Teaming... 10 3... 11 3.1 ESMPRO/ServerAgent

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド ExpressUpdate Agent 1 2 3 4 Rev.3.06 NEC Corporation 2012 1 ... 2... 3... 4... 5 1... 6 2... 7 3... 10 3.1 ExpressUpdate Agent (Windows)... 10 3.1.1... 10 3.1.2... 10 3.1.3 ExpressUpdate Agent...11 3.2

More information

目次 1 はじめに 目的 用語 移行の流れ 移行対象 / 対象外と事前準備の要否 メール関係の事前準備 メールアカウントの確認と変更 パスワードの確認と変更...

目次 1 はじめに 目的 用語 移行の流れ 移行対象 / 対象外と事前準備の要否 メール関係の事前準備 メールアカウントの確認と変更 パスワードの確認と変更... 最終更新日 :2015 年 10 月 7 日 移行事前準備 ガイド 本ガイドは移行 ( コピー ) 実施前に参照するものとなります 目次 1 はじめに... - 2-1.1 目的...- 2-1.2 用語...- 2-1.3 移行の流れ...- 2-1.4 移行対象 / 対象外と事前準備の要否...- 3-2 メール関係の事前準備...- 3-2.1 メールアカウントの確認と変更...- 3-2.2

More information

1.... 1 2.... 1 2.1. RATS... 1 2.1.1. expat... 1 2.1.2. expat... 1 2.1.3. expat... 2 2.2. RATS... 2 2.2.1. RATS... 2 2.2.2.... 3 3. RATS... 4 3.1.... 4 3.2.... 4 3.3.... 6 3.3.1.... 6 3.3.2.... 6 3.3.3....

More information

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

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

More information

スライド 0

スライド 0 ビギナーだから使いたい O/R マッパー ~Teng を使った開発 ~ Hirobanex(Akabane Hiroyuki) 2012-06-29@Perl Beginners #3 コンテンツ Teng を使いたい 3 つの理由 ビギナーにオススメの Teng の導入方法 本来の O/R マッパーの効用 1 Teng を使いたい 3 つの理由 DBI はよくわからん O/R マッパーだと開発が抜群に早くなる

More information

日本オラクル株式会社

日本オラクル株式会社 FISC 6 Oracle Database 10g ~ ~ : 2005 7 26 : 2005 7 31 : 1.0 2004 4 (* ) FISC ) (* ) FISC 6 (* FISC 6 ) FISC 6 Oracle g Database 10 (FISC) http://www.fisc.or.jp FISC http://www.fisc.or.jp/info/info/050307-1.htm

More information

Abstract Journal of Agricultural Science 2

Abstract Journal of Agricultural Science 2 Cambridge Journals Online Cambridge University Press 2003 1 Cambridge University Press URL: http://www.journals.cambridge.org/ Cambridge Journal Online My CJO Browse Journals Subscribed Journals Subscribed

More information

Red Hat Enterprise Linux 6 Portable SUSE Linux Enterprise Server 9 Portable SUSE Linux Enterprise Server 10 Portable SUSE Linux Enterprise Server 11 P

Red Hat Enterprise Linux 6 Portable SUSE Linux Enterprise Server 9 Portable SUSE Linux Enterprise Server 10 Portable SUSE Linux Enterprise Server 11 P Dynamic System Analysis (DSA) を使用した稼動システムのインベントリー情報収集について 本文 IBM Dynamic System Analysis (DSA) は サーバーのインベントリ情報を収集し ファイル出力することが可能な診断ツールです 稼動システムのインベントリー情報を収集することで 障害時の問題判別を円滑に実施することができます 以下の IBM の Web サイトから入手することが可能です

More information

FortiGate Ver.4.0MR3Patch14 Information 1

FortiGate Ver.4.0MR3Patch14 Information 1 FortiGate Ver.4.0MR3Patch14 Information 1 H25.7 1.0 2 1.... 4 2.... 4 3. v4.0mr2... 5 3.1. config... 5 3.2.... 6 3.3. Fortianalyzer... 6 4. v4.0mr3... 7 4.1.... 7 4.2. Fortianalyzer... 8 5. Web... 9 6.

More information

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version 3

RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version 3 RouteMagic Controller RMC-MP200 / MP1200 - Version 3.6 - RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version

More information

Logitec NAS シリーズ ソフトウェアマニュアル

Logitec NAS シリーズ ソフトウェアマニュアル LAS-SFB V03A LAS-RAN LAS-MRN LAS-1UMR LAS-1U LHD-NAS ... 3... 3... 5... 6 1... 8... 9 1... 10 Windows... 10 Macintosh... 13 2IP... 14 IP Windows... 14 IP Macintosh... 17... 19... 24... 25 Windows Me2000

More information

Fortigate Ver.4.0MR3Patch12 Information 1

Fortigate Ver.4.0MR3Patch12 Information 1 Fortigate Ver.4.0MR3Patch12 Information 1 H25.4 1.0 H25.4 1.1 OS 2 1.... 4 2.... 4 3. v4.0mr2... 5 3.1 config... 5 3.2... 6 3.3 Fortianalyzer... 6 4. v4.0mr3... 7 4.1... 7 4.2 Fortianalyzer... 8 5. Web

More information

自己紹介 とみたまさひろプログラマー (Ruby & C) 日本 MySQLユーザ会代表

自己紹介 とみたまさひろプログラマー (Ruby & C) 日本 MySQLユーザ会代表 MySQL の始め方 とみたまさひろ NSEG #49 MySQL Talk in 長野 2014-03-15 自己紹介 とみたまさひろプログラマー (Ruby & C) http://tmtms.hatenablog.com http://twitter.com/tmtms https://github.com/tmtm 日本 MySQLユーザ会代表 MySQL 徹底入門 ( の一部 ) MySQL

More information

2

2 8 24 32C800037C800042C8000 32 40 45 54 2 3 24 40 10 11 54 4 7 54 30 26 7 9 8 5 6 7 9 8 18 7 7 7 40 10 13 12 24 22 22 8 55 8 8 8 8 1 2 3 18 11 54 54 19 24 30 69 31 40 57 23 23 22 23 22 57 8 9 30 12 12 56

More information

ExpressUpdate Agent インストレーションガイド

ExpressUpdate Agent インストレーションガイド ExpressUpdate Agent 1 2 3 4 80.111.01-015.01 2016 7 NEC Corporation 2016 1 ... 2... 3... 4... 5 1... 6 2... 7 3... 9 3.1 ExpressUpdate Agent (Windows)... 9 3.1.1... 9 3.1.2... 9 3.1.3 ExpressUpdate Agent...

More information

VQT3A26-1 DMR-T2000R μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR ] [-RW VR ]

More information

MOTIF XF 取扱説明書

MOTIF XF 取扱説明書 MUSIC PRODUCTION SYNTHESIZER JA 2 (7)-1 1/3 3 (7)-1 2/3 4 (7)-1 3/3 5 http://www.adobe.com/jp/products/reader/ 6 NOTE http://japan.steinberg.net/ http://japan.steinberg.net/ 7 8 9 A-1 B-1 C0 D0 E0 F0 G0

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

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

μ μ DMR-BZT700 DMR-BZT600 μ TM VQT3C03-2B ! ! l l l [HDD] [BD-RE] [BD-R] [DVD-V] [BD-V] [RAM] [CD] [SD] [-R] [USB] [-RW] [RAM AVCREC ] [-R AVCREC ] [RAM VR ][-R VR ] [-RW VR ] [-R V ] [-RW V ] [DVD-V]

More information

VQT2P76 DMR-BWT2000 DMR-BWT1000 μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR

More information

外部SQLソース入門

外部SQLソース入門 Introduction to External SQL Sources 外部 SQL ソース入門 3 ESS 3 ESS : 4 ESS : 4 5 ESS 5 Step 1:... 6 Step 2: DSN... 6 Step 3: FileMaker Pro... 6 Step 4: FileMaker Pro 1. 6 Step 5:... 6 Step 6: FileMaker Pro...

More information

第173回東京エリアDebian勉強会   grml-debootstrapを用いた USB起動メモリの作成

第173回東京エリアDebian勉強会    grml-debootstrapを用いた  USB起動メモリの作成 173 Debian grml-debootstrap USB NOKUBI Takatsugu ( ) knok@debian.org 2019-04-20 NOKUBI Takatsugu ( ) knok@debian.org / knok@daionet.gr.jp Twitter: @knok Debian developer since 2002 bo USB grml-debootstrap

More information

意外と簡単!? Oracle Database 11g -バックアップ・リカバリ編-

意外と簡単!? Oracle Database 11g -バックアップ・リカバリ編- Oracle Direct Seminar !?Oracle Database 11g -- Agenda Oracle Direct Concierge SQL Server MySQL PostgreSQL Access Oracle Database Oracle Developer/2000 Web Oracle Database Oracle Database

More information

untitled

untitled Oracle Direct Seminar !? Oracle Database 11g - - Agenda Copyright 2009, Oracle. All rights reserved. 2 Agenda Copyright 2009, Oracle. All

More information

2

2 8 23 32A950S 30 38 43 52 2 3 23 40 10 33 33 11 52 4 52 7 28 26 7 8 8 18 5 6 7 9 8 17 7 7 7 38 10 12 9 23 22 22 8 53 8 8 8 8 1 2 3 17 11 52 52 19 23 29 71 29 41 55 22 22 22 22 22 55 8 18 31 9 9 54 71 44

More information

Microsoft Word - PrivateAccess_UM.docx

Microsoft Word - PrivateAccess_UM.docx `````````````````SIRE Page 1 English 3 日本語 7 Page 2 Introduction Welcome to! is a fast, simple way to store and protect critical and sensitive files on any ixpand Wireless Charger. Create a private vault

More information

III Web Database ver.2.1.1 1 Web Database 1 1.1...................... 1 1.2 WebDB............................... 2 2 RDBMS 5 2.1 RDBMS.............................. 5 2.2 RDB..............................

More information

dvi

dvi { SSH { 3 3 1 telnet ID ( ) ID ( 1) SSH(Secure SHell) (ID ) SSH SSH SSH login : userid password : himitsu login : userid psaaword: himitsu login : userid password : himitsu 1. Host 11 7 UNIX ( sakura)

More information

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ -4 DMP-HV200 DMP-HV150 μ μ l μ [DMP-HV200] l [DMP-HV200] l +- l l j j j[dmp-hv200] l l l [DMP-HV200] l l l l [DMP-HV200] l [DMP-HV200] l l [DMP-HV200] l [DMP-HV200] [DMP-HV150] l l Ë l l l l l l l l l

More information

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

DianaScope インストレーションマニュアル ESMPRO/ServerAgent Extension Document Rev.1.01 ... 1... 2... 4... 5 1 ESMPRO/ServerAgent Extension... 6 1.1 ESMPRO/ServerAgent Extension... 6 2... 7 2.1... 7 2.1.1... 9 2.2...11 2.2.1 BMC LAN...11 2.2.2

More information