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

Size: px
Start display at page:

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

Transcription

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

2 : Web (HPC) ( MMORPG)

3 Docker Web OS nginx HTML nginx OS nginx nginx RHEL RHEL OS

4 Docker 2 Dockerfile $ docker build -t <tag> Dockerfile ) $ docker build -t yuryu/test.

5 Dockerfile ) FROM registry.access.redhat.com/rhel RUN yum - y install httpd ADD index.html /var/www/html/index.html EXPOSE 80 CMD ["/usr/sbin/httpd", "- DFOREGROUND"]

6 Dockerfile FROM - RUN - ADD - EXPOSE - CMD - FROM registry.access.redhat.com/rhel RUN yum - y install httpd ADD index.html /var/www/html/index.html EXPOSE 80 CMD ["/usr/sbin/httpd", "- DFOREGROUND"]

7 Dockerfile (2) MAINTAINER - USER - WORKDIR - COPY - ADD builder/

8 $ docker run -d -P EXPOSE $ mkdir demo- apache $ cd demo- apache $ curl - L - o Dockerfile bit.ly/1fa902p $ echo Hello, Docker! > index.html $ build - t demo- apache. $ docker run - dp demo- apache

9 docker build docker- apache]$ docker build - t demo- apache. Sending build context to Docker daemon kb Sending build context to Docker daemon Step 0 : FROM registry.access.redhat.com/rhel > e1f5733f050b Step 1 : RUN yum - y install httpd > Using cache > 3679b20fa9ba Step 2 : ADD index.html /var/www/html/index.html > Using cache > db91c285d5ad Step 3 : EXPOSE > Using cache > c9ceb17b169f Step 4 : CMD /usr/sbin/httpd - DFOREGROUND > Using cache > 4e f6 Successfully built 4e f6

10 docker run ID docker- apache]$ docker run - dp demo- apache 8d6b20a1e23427ad575bed1aee9cbea5406e5ed648a645e955cd6c6c6a 34ea0a [yuryu@rhel7 docker- apache]$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 8d6b20a1e234 demo- apache:latest "/usr/sbin/httpd - DF 4 seconds ago Up 4 seconds : >80/tcp jovial_jones

11

12 $ docker run -p <host port>:<guest port> $ docker port [yuryu@rhel7 docker- apache]$ docker run - dp 80:80 demo- apache b027be3d09ace7c8cac594c14d07d3ddda5c32f15e14f8a a69 723c54 [yuryu@rhel7 docker- apache]$ docker port b027be3d09ac 80/tcp - > :80

13 --link < >:alias EXPOSE # docker run - d - e MYSQL_ROOT_PASSWORD=root - - name mysql mysql # docker run - it - - link mysql:mysql mysql /bin/bash # env grep MYSQL_PORT MYSQL_PORT_3306_TCP_PORT=3306 MYSQL_PORT_3306_TCP=tcp:// :3306 MYSQL_PORT_3306_TCP_PROTO=tcp MYSQL_PORT_3306_TCP_ADDR= MYSQL_PORT=tcp:// :3306 # mysql - - host=$mysql_port_3306_tcp_addr - - port= $MYSQL_PORT_3306_TCP_PORT - - password=root

14 ( ) EXPOSE link alias ALIAS_PORT_XXX ALIAS_PORT_XXX_TCP ALIAS_PORT_XXX_TCP_PROTO ALIAS_PORT_XXX_TCP_ADDR ALIAS_PORT_XXX_TCP_PORT

15 : VOLUME /var/lib/mysql --volumes-from < > Data-only # docker run - d - - name mysql_volume mysql echo MySQL Volume Container # docker run - - volumes- from mysql_volume - d - e MYSQL_ROOT_PASSWORD=root - - name mysql mysql Docker 1.4 docker run docker create ( )

16 -v <host path>:<container path> SELinux # chcon -Rt svirt_sandbox_file_t $ mkdir mysql- volume; cd mysql- volume $ sudo chcon - Rt svirt_sandbox_file_t. $ docker run - v $(pwd):/var/lib/mysql - - name mysql - e MYSQL_ROOT_PASSWORD=root - d mysql

17 Data-only tar $ mkdir mysql- volume; cd mysql- volume $ sudo chcon - Rt svirt_sandbox_file_t. $ sudo docker run - - volumes- from mysql_volume - v $(pwd):/ backup - - name mysql- backup fedora tar cfz /backup/mysql- backup.tar.gz /var/lib/mysql $ sudo docker run - - volumes- from mysql_volume - v $(pwd):/ backup - - name mysql- restore fedora tar xf /backup/mysql- backup.tar.gz - C /

18 Data only VOLUME volumes-from -v <host>:<container>

19 Docker CI A GitHub B C

20 GitHub jenkins- demo Red Hat Enterprise Linux

21 Jenkins Dockerfile FROM registry.access.redhat.com/rhel MAINTAINER Haruka Iwao RUN yum - y upgrade RUN curl - o /etc/yum.repos.d/jenkins.repo ci.org/redhat/jenkins.repo RUN rpm - - import ci.org/redhat/jenkins- ci.org.key RUN yum - y install jenkins java git docker ADD run- jenkins.sh /root/run- jenkins.sh EXPOSE 8080 CMD /root/run- jenkins.sh

22 run-jenkins.sh #!/bin/sh JENKINS_HOME="/var/lib/jenkins" JENKINS_USER="jenkins" JENKINS_JAVA_OPTIONS="- Djava.awt.headless=true" JENKINS_PORT="8080" JENKINS_HANDLER_MAX="100" JENKINS_HANDLER_IDLE="20" JAVA_CMD="/usr/bin/java $JENKINS_JAVA_OPTIONS - DJENKINS_HOME=$JENKINS_HOME - jar /usr/lib/jenkins/jenkins.war" OPTIONS="- - httpport=$jenkins_port - - handlercountmax=$jenkins_handler_max - - handlercountmaxidle=$jenkins_handler_idle " cd "$JENKINS_HOME" exec runuser - u $JENKINS_USER - - $JAVA_CMD $OPTIONS

23 Slave Dockerfile FROM registry.access.redhat.com/rhel MAINTAINER Haruka Iwao RUN yum - y upgrade RUN yum - y swap - - remove fakesystemd - - install systemd systemd- libs RUN yum - y install openssh- server java openjdk RUN adduser jenkins RUN echo "jenkins:jenkins" chpasswd RUN ssh- keygen - f /etc/ssh/ssh_host_rsa_key - N '' - t rsa RUN ssh- keygen - f /etc/ssh/ssh_host_dsa_key - N '' - t dsa RUN ssh- keygen - f /etc/ssh/ssh_host_ecdsa_key - N '' - t ecdsa RUN yum - y install gcc gcc- c++ automake autoconf make git libtool EXPOSE 22 CMD ["/usr/sbin/sshd", "- D"]

24 Slave RHEL systemd fakesystemd systemd systemd yum -y swap -- remove fakesystemd -- install systemd systemd-libs systemd init

25 Jenkins Docker Plugin Jenkins Docker

26 Docker TCP listen Jenkins /etc/sysconfig/docker! OPTIONS=- - selinux- enabled - H tcp:// : H fd://

27 Jenkins Data-only Jenkins $ docker run - d - v /var/lib/jenkins - - name jenkins- home yuryu/demo- jenkins echo Data- only container for jenkins $ docker run - - volumes- from jenkins- home - d - p 8080:8080 yuryu/demo- jenkins

28 Jenkins Manage Jenkins > Configure System

29 Docker Manage Jenkins > Docker

30

31 autoconf / gtest C demo

32 configure

33 commit

34

35 cadvisor Docker

36 cadvisor

37 cadvisor # setenforce Permissive $ docker run \ - - volume=/:/rootfs:ro \ - - volume=/var/run:/var/run:rw \ - - volume=/sys:/sys:ro \ - - volume=/var/lib/docker/:/var/lib/docker:ro \ - - publish=8080:8080 \ - - detach=true \ - - name=cadvisor \ - - volume=/cgroup:/cgroup \ google/cadvisor:latest

38

Red Hat OpenShift上でのInterstage Application Serverの動作手順(Java EE 7編)

Red Hat OpenShift上でのInterstage Application Serverの動作手順(Java EE 7編) Red Hat OpenShift 上での Interstage Application Server の動作手順 (Java EE 7 編 ) 2017/7/21 富士通株式会社 1. はじめに本資料は Interstage Application Server の Java EE 7 を Red Hat OpenShift V3 上で動かす手順について説明します 1.1. 対象製品本資料の対象製品は以下です

More information

Red Hat OpenShift上でのInterstage Application Serverの動作手順(Java EE 6編)

Red Hat OpenShift上でのInterstage Application Serverの動作手順(Java EE 6編) Red Hat OpenShift 上での Interstage Application Server の動作手順 (Java EE 6 編 ) 2016/12/22 富士通株式会社 1. はじめに本資料は Interstage Application Server の Java EE 6 を Red Hat OpenShift V3 上で動かす手順について説明します 1.1. 対象製品本資料の対象製品は以下です

More information

03_Docker

03_Docker http://www.conoha.jp/ まえがき ConoHaは一台の物理サーバーの上で何台かの仮想 サーバーが動く VPS です でも VPS って自由度が高い だけに設定するところが多すぎて面倒ですね VPSの中に さらに小さな仮想サーバーを立ち上げて 用途別に動か せたら便利なのに こういう人に最適なのが サーバー の中に コンテナ という 子サーバー を立てるコンテナ型 仮想化です そのためのパッケージとして近ごろ注目されて

More information

Dockerの商用サービスでの利用事例紹介

Dockerの商用サービスでの利用事例紹介 1 Docker maebashi@iij.ad.jp Docker 2015 Internet Initiative Japan Inc. http://www.iij.ad.jp/biz/storage/ 2015 Internet Initiative Japan Inc. IIJ GIO & REST API(AWS S3 ) + Hadoop/Hive 2015 Internet Initiative

More information

今日からできる レガシーシステムの段階的コンテナ化

今日からできる レガシーシステムの段階的コンテナ化 今日からできるレガシーシステムの段階的コンテナ化 NTT ソフトウェアイノベーションセンタ石井久治 Copyright 2014 NTT corp. All Rights Reserved. 背景 / ねらい Docker/ コンテナ系技術が熱いが 使っているのは ほとんど Web 開発者ばかり 既存システム / レガシーシステムはブラックボックス化していて クラウドにすら乗せられていない 既存システムを一度にクラウド移行するのは無理でも

More information

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

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

More information

tosh-docker pub

tosh-docker pub 仮想化 Linux 環境 Docker について Docker ってなに? Linux 環境を仮想的に再現するソフトウェア Docker ってなに? Linux 環境を仮想的に再現するソフトウェア Docker ってなに? Linux 環境を仮想的に再現するソフトウェア 計算機上に その計算機とは別個 隔離された計算機環境を再現すること 仮想環境? 他にもいっぱいあるじゃん? KVM: https://www.linux-kvm.org/

More information

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について Ruby PaaS MOGOK 2013/11/19 1 IIJ PaaS MOGOK MOGOK PaaS 2 IIJ PaaS MOGOK PaaS MOGOK MOGOK 3 IIJ PaaS 4 IIJ Internet, Backbone, Mobile IIJ GIO 5 IIJ IaaS IIJ GIO SaaS PaaS 6 PaaS Platform

More information

Web apache

Web apache I-6 -WordPress in MacOSX- 8 j05017 j05027 j05038 j05064 2006 05 27 2006 05305 1 2 1.1.............................. 2 1.2................. 2 1.3 Web............... 2 1.4.............................. 2

More information

プレゼンテーション

プレゼンテーション WEB OpenSolaris Name Title Japan OpenSolaris User Group Leader 1 ........ S X S 5 S S 5.. 2001. 2 Japan OpenSolaris User Group. OpenSolaris. http://jp.opensolaris.org. ug-jposug@opensolaris.org. OpenSolaris.

More information

CentOSv2_furoku

CentOSv2_furoku at $ at 23:00 $ at 6:00 tomorrow $ at now + 3 days chkconfig # chkconfig --list # chkconfig --list postfix # chkconfig --level 35 postfix on # chkconfig rsync on # chkconfig telnet off 2 crontab $ crontab

More information

K5コンテナサービスチュートリアル

K5コンテナサービスチュートリアル コンテナサービス チュートリアル Version 1.0 2018 年 3 月 1 日富士通株式会社 i 改訂履歴 改訂 No. 日付 Version 章 No. 項 No. 改訂内容 1 2018/3/1 1.0 - - 初版作成 ii 目次第 1 章まえがき... 2 1.1 本書の位置づけ... 2 1.2 対象の読者... 2 1.3 商標... 2 1.4 お願い... 2 第 2 章 WEB/AP/DB

More information

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

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi Windows bash on Ubuntu on Windows [Windows Creators Update(1703) ] TAKE 2017-10-06 bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu

More information

Installation Guide for Linux

Installation Guide for Linux Installation Guide for Linux for Linux Acronis Japan 1. はじめに... 2 1.1. 対象オペレーティングシステム... 2 2. エージェントのダウンロード... 3 3. Linux パッケージ... 3 3.1. Cent0S... 3 3.2. Ubuntu... 4 3.3. 手動でパッケージをインストールする場合... 5 4. エージェントのインストール...

More information

OpenAM 13 インストールガイド

OpenAM 13 インストールガイド OpenAM 13 ( ) 2018 3 13 2.4 1 1 1.1.................................... 1 1.2..................................... 1 1.3....................................... 1 2 3 2.1...............................

More information

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 2018 3 24 1 Debian 2 1.1 159 Debian............ 2 1.2 OSC 2018 Tokyo/Spring.. 2 2 3 2.1 hiromiso.......... 3 2.2 yy y ja jp......... 3 2.3 ysaito............ 3 2.4 henrich...........

More information

Docker/Kubernetes実践コンテナ開発入門

Docker/Kubernetes実践コンテナ開発入門 Docker/Kubernetes 実践コンテナ開発入門 2019-06-11 更新第 5 刷版 お詫びと訂 ( 表 ) 下記のりがありました ご迷惑をおかけいたしました P.37 # 2.1 のコンテナ停止の説明 コマンド停止させられます コマンドで停止させられます P.37 # 2.1.1 の停止コマンドの例 docekr stop $(docker container ls -q) docker

More information

目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4.

目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4. Serverspec でインフラテスト 2018 年 4 月 20 日株式会社フルマークス大久保和彦 目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4.

More information

最も一般的な手法: ファイアウォールによってノード間の MPI 通信がブロックされた場合の対応方法

最も一般的な手法: ファイアウォールによってノード間の MPI 通信がブロックされた場合の対応方法 最も一般的な手法 : ファイアウォールによってノード間 の MPI 通信がブロックされた場合の対応方法 この記事は インテル デベロッパー ゾーンに公開されている Best Known Methods: Firewall Blocks MPI Communication among Nodes の日本語参考訳です この記事では ファイアウォールによって複数のマシン間のメッセージ パッシング インターフェイス

More information

使いこなせて安全なLinuxを目指して

使いこなせて安全なLinuxを目指して haradats@nttdata.co.jp Linux Linux(DAC) 2005/6/2 Copyright (C) 2005 NTT DATA CORPORATION. 1 Linux Linux NO SELinux Yes 2005/6/2 Copyright (C) 2005 NTT DATA CORPORATION. 2 2005/6/2 Copyright (C) 2005 NTT

More information

DCL intro Manual for Ubuntu11.10

DCL intro Manual for Ubuntu11.10 ubnutu 11.10 2011/Nov/23 i 1 1 2 ubuntu 2 3 3 3.1........................................... 3 3.2 gedit........................................... 3 3.3........................................ 4 4 sun

More information

GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0

GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0 GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0 自己紹介 西山和広 id:znz (github, twitter など ) Ruby コミッター 1/25 GitLab + Dokku GitLab GitLab CI Dokku (+ Heroku)

More information

スライド 1

スライド 1 Red Hat Enterprise Linux Atomic Host のご紹介 レッドハット株式会社 v1.1 2015-02-09 RHEL Atomic Host のご紹介 自己紹介 中井悦司 ( なかいえつじ ) Twitter @enakai00 日々の仕事 Senior Solution Architect and Cloud Evangelist at Red Hat K.K. 企業システムでオープンソースの活用を希望される

More information

Add-onアプリケーション開発 - 環境構築マニュアル -

Add-onアプリケーション開発 - 環境構築マニュアル - - - 1.0 M2M 2018 11 20 i 1 1 1.1............................................... 1 1.2................................................. 1 1.3................................................ 2 2 3 2.1 OFF.......................................

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

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

Alibaba Cloud [ ナレッジドキュメント ] オンプレから Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) オンプレから Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver SB Clou

Alibaba Cloud [ ナレッジドキュメント ] オンプレから Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) オンプレから Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver SB Clou オンプレから Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver 1.0.1 目次 1. はじめに 2. Alibaba Cloud 移行ツールとは 3. 環境構成図 4. 導入手順 4-1. オンプレ環境の準備 4-2. WEB サーバーの導入 設定 4-2-1.Apache インストール 設定 4-2-2.WEB コンテンツ作成 4-2-3.Apache

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

東京エリアDebian勉強会 - 第86回 2012年3月度

東京エリアDebian勉強会 - 第86回 2012年3月度 Debian 86 2012 3 iwamatsu@debian.org Twitter: @iwamatsu 2012 3 17 Agenda Debian 85 Debian 0 Debian Debian - - Apache2 HTTP Debian / @iwamatsu Debian Project Official Developer Bluetooth, OpenCV, mozc,

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

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

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

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile 9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile $ cp -f ~/.bash_profile ~/.bash_profile.bak ~/.bash_profile

More information

2. Docker の基本的な操作 1 docker hub の参照 2 DockerHub の Explorer リンクからアプリケーションを参照 3 アプリケーション検索 4 tag について 3. docker 基本コマンド 1 docker の

2. Docker の基本的な操作 1 docker hub の参照   2 DockerHub の Explorer リンクからアプリケーションを参照 3 アプリケーション検索 4 tag について 3. docker 基本コマンド 1 docker の ハンズオン 1. Docker のインストール 1 システムの Update $ sudo apt-get update 2 docker をインストール $ sudo apt-get install docker.io 3 ログインユーザー ubuntu を docker グループに追加 $ sudo gpasswd -a ubuntu docker 4 再起動 $ sudo reboot 1 2.

More information

Alibaba Cloud [ ナレッジドキュメント ] AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) AWS EC2 から Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver

Alibaba Cloud [ ナレッジドキュメント ] AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) AWS EC2 から Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver AWS EC2 から Alibaba Cloud ECS への マイグレーション手順 (Linux 版 ) Ver 1.0.1 目次 1. はじめに 2. Alibaba Cloud 移行ツールとは 3. 環境構成図 4. 導入手順 4-1. AWS 環境の準備 4-2. WEB サーバーの導入 設定 4-2-1.Apache インストール 設定 4-2-2.WEB コンテンツ作成 4-2-3.Apache

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

RouteMagic Controller RMC-MP200 / MP Version

RouteMagic Controller RMC-MP200 / MP Version RouteMagic Controller RMC-MP200 / MP1200 - Version 3.5.2 - RouteMagic Controller( RMC ) 3.5.2 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.5 RouteMagic Controller

More information

オーダーメイド数学活用大事典システム

オーダーメイド数学活用大事典システム 石 川 工 業 高 等 専 門 学 校 オーダーメイド 数 学 活 用 大 事 典 システム 環 境 構 築 マニュアル 目 次 1. はじめに... 2 2. 構 築 にあたり... 2 2.1. 動 作 環 境... 2 2.1.1. ツール... 2 2.1.2. Web サーバ... 2 2.1.3. プログラミング 言 語... 3 2.1.4. ImageMagick... 3 2.1.5.

More information

[当日発表資料]AWS_Summit_CYBIRD_fix.key

[当日発表資料]AWS_Summit_CYBIRD_fix.key AutoScale!! 2014 07 18 Agenda Agenda AWS AWS http://ikemen.cybird.ne.jp/of/play.html http://ikemen.cybird.ne.jp/of/play.html http://ikemen.cybird.ne.jp/of/message.html 100 GREE Mobage Ameba GREE Mobage

More information

自己紹介 伊藤広樹 ( 所属 : 日本電信電話株式会社 ) 2015 年 2016 年 社内 OpenStack 基盤の運用 2017 年 ( 現在 ) Blazarにコントリビュート開始 平井普 ( 所属 :NTTコムウェア) 2011 年 2016 年 NTT 通信網 NW 機器の運用設定 20

自己紹介 伊藤広樹 ( 所属 : 日本電信電話株式会社 ) 2015 年 2016 年 社内 OpenStack 基盤の運用 2017 年 ( 現在 ) Blazarにコントリビュート開始 平井普 ( 所属 :NTTコムウェア) 2011 年 2016 年 NTT 通信網 NW 機器の運用設定 20 0 から始める OpenStack on Kubernetes の導入と運用 日本電信電話株式会社伊藤広樹 NTT コムウェア株式会社平井普 自己紹介 伊藤広樹 ( 所属 : 日本電信電話株式会社 ) 2015 年 2016 年 社内 OpenStack 基盤の運用 2017 年 ( 現在 ) Blazarにコントリビュート開始 平井普 ( 所属 :NTTコムウェア) 2011 年 2016 年 NTT

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

Oracle Application Server 10g( )インストール手順書

Oracle Application Server 10g( )インストール手順書 Oracle Application Server 10g (10.1.2) for Microsoft Windows J2EE Oracle Application Server 10g (10.1.2) for Microsoft Windows J2EE and Web Cache...2...3...3...4...6...6...6 OS...9...10...12...13...25...25

More information

防災マップ作成システムの開発業務基本設計書

防災マップ作成システムの開発業務基本設計書 センサー情報相互運用配信システム インストールマニュアル Ver. 1.0.0 2015/10/1 国立研究開発法人防災科学技術研究所 変更履歴 Version 変更日付変更内容 1.0 2015/06/19 初版作成 1 目次 1 インストールの前に... 1 1.1 サーバー環境... 1 1.2 ネットワーク設定... 2 2 動作環境のインストール手順... 3 2.1 パッケージファイルの内容...

More information

Alibaba Cloud [ ナレッジドキュメント ] AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) Ver SB

Alibaba Cloud [ ナレッジドキュメント ] AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) Ver SB AWS EC2 から Alibaba Cloud ECS へのマイグレーション手順 (Linux 版 ) Ver 1.0 目次 目次 1. はじめに 2. Alibaba Cloud 移行ツールとは 3. 環境構成図 4. 導入手順 4-1. AWS 環境の準備 4-2. WEB サーバーの導入 設定 4-2-1.Apache インストール 設定 4-2-2.WEB コンテンツ作成 4-2-3.Apache

More information

kiso2-01.key

kiso2-01.key 計算機基礎実習 II 2018 シラバス 到達目標 Ubuntu Linux のデスクトップ GUI CUI すべてのデータを ファイル として管理 ログアウト シャットダウンなどの終了 その ファイル を操作するユーザ インターフェイス 操作はこのメニューから ランチャー よく使うアプリケーションを登録 起動する 起動中のアプリケーションもここに表示される Graphical User Interface

More information

Ansible

Ansible Ansible 2014 8 2014 8 1 1 3 1.1 Ansible..................................... 4 1.2 Ansible................................... 7 1.3 Chef Puppet... 7 1.4 Ansible Better Shell Script.............................

More information

東京エリアDebian勉強会 debootstrapを有効活用してみよう

東京エリアDebian勉強会  debootstrapを有効活用してみよう .. Debian debootstrap dictoss@live.jp 2013 04 20 debian debootstrap (SUGIMOTO Norimitsu) Twitter: @dictoss Debian User FreeBSD User debian Debian GNU/kFreeBSD QEMU VirtualBox KVM Xen OpenVZ LXC FreeBSD

More information

Nexus アプリケーション開発 - SDK

Nexus アプリケーション開発 - SDK この章の内容は 次のとおりです Cisco SDK について, 1 ページ SDK のインストール, 1 ページ インストールおよび環境初期化の手順, 2 ページ SDK を使用したアプリケーションの構築, 3 ページ RPM を使用したアプリケーションのパッケージ化, 4 ページ RPM 構築環境の作成, 5 ページ RPM 構築の一般手順の使用, 6 ページ オプションのプラグインなしでの collectd

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

$ sudo apt-get install libavahi-compat-libdnssd-dev $ sudo apt-get autoremove nodejs $ wget http://nodejs.org/dist/latest/node-v7.6.0-linux-armv7l.tar.gz $ tar xzf node-v7.6.0-linux-armv7l.tar.gz $ sudo

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

PRIMEQUEST 1000シリーズ Linux設計ガイド

PRIMEQUEST 1000シリーズ Linux設計ガイド FUJITSU Server PRIMEQUEST 1000 シリーズ Linux 設計ガイド C122-A002-07 Copyright 2010-2013 FUJITSU LIMITED P.4. P.9 P.10 P.12 P.13 P.16. P.18 P.19 P.21 P.22 PRIMEQUEST 1000 Linux 1 Copyright 2010-2013 FUJITSU LIMITED

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

スライド 1

スライド 1 Integration between GitLab and Fuego Tomohito Esaki 江崎朋人 IGEL Co., Ltd. 自己紹介 主に組込向けのソフトウェア開発 Android の Camera HAL, Camera driver Android, Tizen IVI のポーティング wayland/weston の導入 Android, Tizen, wayland application

More information

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

SecureAssist Enterprise Portal アップグレードガイド Version 対応版 パッケージのダウンロード アップグレード全体の流れ アップグレード作業の詳細手順

SecureAssist Enterprise Portal アップグレードガイド Version 対応版 パッケージのダウンロード アップグレード全体の流れ アップグレード作業の詳細手順 2016.09.29 SecureAssist Enterprise Portal アップグレードガイド Version 3.0.3 対応版 パッケージのダウンロード アップグレード全体の流れ 目次 * 本資料について * SecureAssist Enterprise Portal アップグレード準備パッケージのダウンロード * SecureAssist Enterprise Portal アップグレード作業の概要

More information

.N...[..7...doc

.N...[..7...doc 1 2 3 STEP1 4 STEP2 STEP3 5 6 7 8 9 1 Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution of Solution

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

Configuring_01

Configuring_01 Symantec Backup Exec Dell EqualLogic Microsoft Exchange Server SQL Server IT / / 24 365 Symantec Backup Exec Advanced Disk-based Backup Option (ADBO) Dell Equal- Logic Microsoft Exchange Server 2003 2007

More information

3.2 Linux root vi(vim) vi emacs emacs 4 Linux Kernel Linux Git 4.1 Git Git Linux Linux Linus Fedora root yum install global(debian Ubuntu apt-get inst

3.2 Linux root vi(vim) vi emacs emacs 4 Linux Kernel Linux Git 4.1 Git Git Linux Linux Linus Fedora root yum install global(debian Ubuntu apt-get inst 1 OS Linux OS OS Linux Kernel 900 1000 IPA( :http://www.ipa.go.jp/) 8 12 ( ) 16 ( ) 4 5 22 60 2 3 6 Linux Linux 2 LKML 3 3.1 Linux Fedora 13 Ubuntu Fedora CentOS 3.2 Linux root vi(vim) vi emacs emacs 4

More information

IOx の小さい高山 Linux Docker イメージを設定して下さい

IOx の小さい高山 Linux Docker イメージを設定して下さい IOx の小さい高山 Linux Docker イメージを設定して下さい 目次 概要前提条件要件使用するコンポーネント背景説明設定確認トラブルシューティング 概要 この資料は Docker ベースのアプリケーション IOx 可能なデバイスを on Cisco 作成し 配置し 管理するためにコンフィギュレーションプロセスを説明したものです 前提条件 要件 このドキュメントに関する固有の要件はありません

More information

技術研究会報告集の書き方

技術研究会報告集の書き方 コンテナ型仮想化基盤の構築およびサーバ仮想化のための利用 雨宮尚範 工学系技術支援室情報通信技術系 概要 これまで サーバ仮想化としては物理サーバ上に仮想マシンによるサーバを構築する方法がよく使われてきた しかし 近年ではコンテナ型仮想化という方式でアプリケーションを動かすシステムが注目されている 2017 年には Open Container Initiative [1] によりコンテナの標準仕様が策定され

More information

Lync Server 2010 Lync Server Topology Builder BIG-IP LTM Topology Builder IP Lync 2010 BIG IP BIG-IP VE Virtual Edition BIG-IP SSL/TLS BIG-IP Edge Web

Lync Server 2010 Lync Server Topology Builder BIG-IP LTM Topology Builder IP Lync 2010 BIG IP BIG-IP VE Virtual Edition BIG-IP SSL/TLS BIG-IP Edge Web 1.1 Microsoft Lync Server 2010 BIG-IP LTM 2 4 5 BIG-IP : Lync 6 BIG-IP : Lync 7 BIG-IP : - 8 BIG-IP : - 9 A: BIG-IP Microsoft Lync Server 2010 Microsoft Lync Server 2010 Office Communications Server BIG-IP

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

Agenda 2

Agenda 2 Agenda 2 最近のインフラ技術 背景はCloudの技術が成熟してきた 仮想化 サーバ構成管理 Codeのリポジトリ サーバの構成による更新 昔手順書をベースにして サーバを構築してから手順書を更新する 2重作業になっている 自動化 手順書をコード化にして サーバ構築はコード実行に よる自動化にされる 本来のインフラ作業 Apache MySQL GCC 少数のサーバでは手作業を対応できるが

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

インストールガイド(Linux)

インストールガイド(Linux) NEC WebOTX Application Server Express V10.1 for Container インストールガイド (Linux) オンラインマニュアル版 ごあいさつ このたびは WebOTX Application Server Express をお買い上げいただき まことにありがとうございます 本書は WebOTX Application Server Express V10.1

More information

RouteMagic Controller RMC-MP200 / MP Version

RouteMagic Controller RMC-MP200 / MP Version RouteMagic Controller RMC-MP200 / MP1200 - Version 3.7.1 - RouteMagic Controller( RMC ) 3.7 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.7 RouteMagic Controller Version

More information

Microsoft Word - PSB導入ガイド_ docx

Microsoft Word - PSB導入ガイド_ docx 入 1 / 49 入 日 1.0.0 2013/12/02 用 用 F-Secure 角 自 止 一 2 / 49 ... 4 1.... 4 2.... 4 3. 入... 4 4. 手 Windows... 5 4.1... 5 4.2 Windows... 9 5. 手 Windows Server... 13 6. 手 Linux... 19 6.1... 19 6.2 PSB... 20

More information

(Part-3) 3 Why? How Who How Worth Part-1? Whom Part-2 When Part-3? What? Which How Much Part-4 summary 2

(Part-3) 3 Why? How Who How Worth Part-1? Whom Part-2 When Part-3? What? Which How Much Part-4 summary 2 2011 Part-3 / UNIX) ( Sphinx-Users.jp / ) 2011-11-30 InternetWeek 2011 1 (Part-3) 3 Why? How Who How Worth Part-1? Whom Part-2 When Part-3? What? Which How Much Part-4 summary 2 3 3 4 activity // SCA ()

More information

install

install SCore SCore 5.0 2001.03.19 devel@pccluster.org 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

2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター 1

2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター 1 2011年11月10日 クラウドサービスのためのSINET 学認説明会 九州地区説明会 九州大学キャンパス クラウドシステムの導入 伊東栄典 情報基盤研究開発センター ito.eisuke.523@m.kyushu-u.ac.jp 1 用 方 } } } } } 用 (Public Cloud) } Amazon EC2/S3/ElasticMapReduce } (Community Cloud)

More information

研究ノート GPU CPU Central Processing Unit CPU BTO Build To Order CPU CPU GPGPU Tesla GPU Graphics Processing Units GPGPU General-Purpose computing on Grap

研究ノート GPU CPU Central Processing Unit CPU BTO Build To Order CPU CPU GPGPU Tesla GPU Graphics Processing Units GPGPU General-Purpose computing on Grap 1 7 GPU Getting Started with GPGPU 研究ノート GPU CPU Central Processing Unit CPU BTO Build To Order CPU CPU GPGPU Tesla GPU Graphics Processing Units GPGPU General-Purpose computing on Graphics Processing

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

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

橡Ⅳインストールマニュアル.PDF

橡Ⅳインストールマニュアル.PDF 1. IDWS... 1... 1 1.2... 1 1.3... 1... 2 Configuration... 2 Manager Configuration... 3 Plugin... 4 ID MIB... 4 Snort Output Plugin... 5 SML-XML Plugin... 9 MIB Plugin... 11 XML-SMI Plugin... 13 IDWS...

More information

変更履歴 Version 日付 変更内容 /8/23 初版作成 /1/17 他ドキュメントのバージョンアップに伴い版数のみ更新 /6/13 他ドキュメントのバージョンアップに伴い版数のみ更新 /1/15 動作環境でインストールするソ

変更履歴 Version 日付 変更内容 /8/23 初版作成 /1/17 他ドキュメントのバージョンアップに伴い版数のみ更新 /6/13 他ドキュメントのバージョンアップに伴い版数のみ更新 /1/15 動作環境でインストールするソ 災害リスク情報クリアリングハウス インストールマニュアル Version 1.2 2015/01/15 独立行政法人防災科学技術研究所 変更履歴 Version 日付 変更内容 1.0 2013/8/23 初版作成 1.1 2014/1/17 他ドキュメントのバージョンアップに伴い版数のみ更新 1.1.1 2014/6/13 他ドキュメントのバージョンアップに伴い版数のみ更新 1.2 2015/1/15

More information

自 己 紹 介 l Nominum 社 の 商 用 DNS,DHCPソフトウェアの 技 術 を 担 当 しています Nominumの 回 し 者 ではありません l l プライベート DNS(Nominum 除 く) unbound, PowerDNS, BIND10とたわむれています DNS 以

自 己 紹 介 l Nominum 社 の 商 用 DNS,DHCPソフトウェアの 技 術 を 担 当 しています Nominumの 回 し 者 ではありません l l プライベート DNS(Nominum 除 く) unbound, PowerDNS, BIND10とたわむれています DNS 以 フリーのDNS ストレスツール の 紹 介 dnsperf ( 開 発 元 Nominum), dnstcpbench( 開 発 元 Nether Labs) 2013/7/18 SCSK 株 式 会 社 服 部 成 浩 ( s.hattori@scsk.jp ) 自 己 紹 介 l Nominum 社 の 商 用 DNS,DHCPソフトウェアの 技 術 を 担 当 しています Nominumの 回

More information

Red Hat Mobile Application Platform 4.2 RHMAP のインストール

Red Hat Mobile Application Platform 4.2 RHMAP のインストール Red Hat Mobile Application Platform 4.2 RHMAP のインストール Red Hat Mobile Application Platform 4.2 向け Red Hat Customer Content Services Red Hat Mobile Application Platform 4.2 RHMAP のインストール Red Hat Mobile

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

untitled

untitled ... 2... 3... 5... 5... 8... 13... 18 HTML... 19 HTML... 20 PDF... 20 PDF... 22... 25 1 2 3 WEB (HTML,PDF, ) 4 5 6 7 WV O JDBC Data SourceDataSource01(N) > CSV 8 mysql JDBC mysql jar 9 10 11 12 13 14 15

More information

ksocket Documentation

ksocket Documentation ksocket Documentation 20181012 Fixpoint, Inc. 2018 10 12 i 1 2 2 3 2.1............................................. 3 2.1.1 Linux............................................ 3 2.1.2 Windows..........................................

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

意外と簡単!? 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

ソフトウェアエンジニアリング - 機能 #14

ソフトウェアエンジニアリング - 機能 #14 ソフトウェアエンジニアリング 機能 #14 GitBucket 2.1 の RPM を作成する 2014/07/20 2131 高橋徹 ステータス 終了開始日 2014/07/20 優先度 通常期日 担当者 高橋徹進捗率 100% カテゴリ 予定工数 0.00 時間 対象バージョン 作業時間 0.00 時間 説明 GitBucket 2.1 の RPM を作成します GitBucket の入手先 (GitHub)

More information

nakayama15icm01_l7filter.pptx

nakayama15icm01_l7filter.pptx Layer-7 SDN SDN NFV 50 % 3 MVNO 1 2 ICM @ 2015/01/16 2 1 1 2 2 1 2 2 ICM @ 2015/01/16 3 2 Service Dependent Management (SDM) SDM Simple Management of Access-Restriction Translator Gateway (SMART-GW) ICM

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

3 パッケージからのインストール

3 パッケージからのインストール 2018/10/20 22:35 1/5 3 パッケージからのインストール 3 パッケージからのインストール ディストリビューションパッケージからインストール いくつかの一般的な OS のディストリビューションには Zabbix パッケージが用意されています これらのパッケージを使用して Zabbix をインストールできます Zabbix の最新リリースは OS のディストリビューションには用意されない場合があります

More information

Alibaba Cloud [ ナレッジドキュメント ] オンプレから Alibaba ECS へのマイグレーション手順 ( イメージ移行版 ) オンプレから Alibaba ECS への マイグレーション手順 ( イメージ移行版 ) _Ver SB Cloud Corp. 2009

Alibaba Cloud [ ナレッジドキュメント ] オンプレから Alibaba ECS へのマイグレーション手順 ( イメージ移行版 ) オンプレから Alibaba ECS への マイグレーション手順 ( イメージ移行版 ) _Ver SB Cloud Corp. 2009 オンプレから Alibaba ECS への マイグレーション手順 ( イメージ移行版 ) _Ver1.0 目次 目次 1. はじめに 2. ossutil とは 3. 環境構成図 4. 導入手順 4-1. オンプレ環境の準備 4-2. WEB サーバーの導入 設定 4-2-1.Apache インストール 設定 4-2-2.WEB コンテンツ作成 4-2-3.Apache 起動 自動起動設定 4-2-4.(

More information

Server Backup Manager 5.0 Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール

Server Backup Manager 5.0 Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール Debian および Ubuntu システムへの Server Backup Free のインストール 1. APT-GET をしてServer Backup Free をインストールする 2. Server Backup Free のインストール (DPKG でのインストール ) 3. Server Backup のWeb ベースユーザーインターフェイスをしてする 4. Linux Server

More information

untitled

untitled IBM System x 3200 M2 (4368) System Guide ă IBM System x 3200 M2 Express Spec ă ă ăă ă ă ă ăă ăă ăă ă ă 1/24 IBM System x 3200 M2 (4368) System Guide IBM System x 3200 M2 Express Spec ă ă ă ăă ă ăă ăă ăă

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

目次 1. はじめに 本文書の目的 前提条件 略語 事前準備 ホスト名の名前解決 Linux 版パッケージ システム要件 ソフトウェア要件 パッケージ構成

目次 1. はじめに 本文書の目的 前提条件 略語 事前準備 ホスト名の名前解決 Linux 版パッケージ システム要件 ソフトウェア要件 パッケージ構成 OpenAM 11 インストールガイド オープンソース ソリューション テクノロジ ( 株 ) 作成日 : 更新日 : 2013 年 12 月 26 日 2018 年 10 月 15 日 リビジョン : 1.7 目次 1. はじめに 1 1.1 本文書の目的...1 1.2 前提条件...1 1.3 略語...1 2. 事前準備 2 2.1 ホスト名の名前解決...2 3. Linux 版パッケージ

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

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

System Purpose in Red Hat Enterprise Linux 8 Shinji Kito Sr. Technical Account Manager 2019/06/05 1

System Purpose in Red Hat Enterprise Linux 8 Shinji Kito Sr. Technical Account Manager 2019/06/05 1 System Purpose in Red Hat Enterprise Linux 8 Shinji Kito Sr. Technical Account Manager 2019/06/05 1 Red Hat Enterprise Linux 8について 2 自己紹介 Shinji Kito Shinji Kito 2009年 Red Hat 入社 Linuxの経験 20年以上 複数のスタートアップ

More information