<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>コマンドまたはファイル名が違います</title>
<link>https://ameblo.jp/luckysystem/</link>
<atom:link href="https://rssblog.ameba.jp/luckysystem/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>札幌のシステムエンジニアがコンピュータと戯れている様子を綴っています。</description>
<language>ja</language>
<item>
<title>VDI-in-a-Boxの設定(事前準備)</title>
<description>
<![CDATA[ Citrix社からデスクトップ仮想化のオールインワンパッケージ、VDI-in-a-Box5がリリースされました。<br><br>さっそく体験版を入手してインストールしてみました。<br><br>まず、ハイパーバイザーを用意します。<br>これはXenServerだけではなく、ESXi,Hyper-Vにも対応しています。<br><br>今回は<a title="" href="http://www.citrix.com/lang/English/lp/lp_1688615.asp" target="_blank">XenServer</a>を用意しました。<br><br>次に、Citrix社からVDI-in-a-Box5のアプライアンスイメージを<a title="" href="http://www.citrix.co.jp/products/rd/dl_vdi-in-a-box.html" target="_blank">ダウンロード</a>します。<br>※ダウンロードにはユーザ登録が必要です。<br>※各ハイパーバイザーに対応したものをダウンロードしてください。<br><br>ダウンロードできましたら、XenServerにインポートします。<br><br>インポートできたら電源を入れます。<br><br>CentOSベースのアプライアンスが起動してきます。<br>Consoleに接続するURLが表示されますので覚えておいてください。<br><br>設定は端末のブラウザで行います。<br><br>以下のURLに接続します。<br>https://xxx.xxx.xxx.xxx/admin<br><br>初期のユーザー名とパスワードです。<br>ユーザー名：vdiadmin<br>パスワード：kaviza<br><img alt="ログイン" src="https://img-proxy.blog-video.jp/images?url=http%3A%2F%2Fmgk.boo.jp%2Fab_images%2FVDI-in-a-Box000002.jpg" width="560" height="265">&nbsp;<br>ログインできるとウィザードが表示されます。<br><img alt="ウィザード" src="https://img-proxy.blog-video.jp/images?url=http%3A%2F%2Fmgk.boo.jp%2Fab_images%2FVDI-in-a-Box000003.jpg" width="560" height="402">&nbsp;<br>→VDI-in-a-Boxの設定(初期設定)へ続く
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11225615965.html</link>
<pubDate>Tue, 17 Apr 2012 15:14:40 +0900</pubDate>
</item>
<item>
<title>このコマンドを処理するのに必要な記憶域をサーバーで確保できません</title>
<description>
<![CDATA[ WindowsXpとWindows7やVistaでファイル共有をした場合、以下のエラーが表示されて共有フォルダにアクセスできなくなることがあります。<br><br><h1>このコマンドを処理するのに必要な記憶域をサーバーで確保できません</h1><br><br>原因は、WindowsVista以降の仕様で、共有ファイルへのアクセスはデフォルトで最大10までのリクエストしか処理できないように設定されているからのようです。<br><br>詳細はこちら→<a href="http://support.microsoft.com/kb/937082" target="_blank" title="">http://support.microsoft.com/kb/937082</a><br><br>WindowsVistaやWindowws7での処理をネットワーク向けに最適化するには、以下のコマンドでレジストリを変更すると良いそうです。<br><table class="console"><tbody><tr><td>reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v "Size" /t "REG_DWORD" /d "0x2" /f<br>reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v "MaxMpxCt" /t "REG_DWORD" /d "0xff"<br>reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v "MaxWorkItems" /t "REG_DWORD" /d "0x400"<br></td></tr></tbody></table><br><br><br><br><br><br>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11094435411.html</link>
<pubDate>Tue, 03 Apr 2012 11:21:50 +0900</pubDate>
</item>
<item>
<title>BIND(DNSキャッシュサーバ)の設定</title>
<description>
<![CDATA[ CentOSでDNSキャッシュサーバを設定してみました。<br><br>インストールされているBINDのバージョンを確認してみます。<br><table class="console"><tbody><tr><td># rpm -qa | grep bind<br>bind-libs-9.3.6-16.P1.el5<br>bind-chroot-9.3.6-16.P1.el5<br>system-config-bind-4.0.3-4.el5.centos<br>bind-utils-9.3.6-16.P1.el5<br>bind-9.3.6-16.P1.el5<br><br></td></tr></tbody></table>bind-chrootが入っているので、設定ファイルは/var/named/chroot配下になります。<br><br>まずはヒントファイル(named.root)をダウンロードします。<table class="console"><tbody><tr><td># cd /var/named/chroot/var/named<br># wget ftp://ftp.internic.net/domain/named.root<br># chown named.named /var/named/chroot/var/named/named.root<br></td></tr></tbody></table><br>次にnamed.confを作成します。<table class="console"><tbody><tr><td># vi /var/named/chroot/etc/named.conf<br>acl localnet {<br> &nbsp; &nbsp; &nbsp; &nbsp;192.168.1.0/24;　　←環境に合わせて変更<br>};<br><br>options {<br> &nbsp; &nbsp; &nbsp; &nbsp;recursion &nbsp; &nbsp; &nbsp; yes;<br> &nbsp; &nbsp; &nbsp; &nbsp;version &nbsp; &nbsp; &nbsp; &nbsp; "unknown";<br> &nbsp; &nbsp; &nbsp; &nbsp;directory &nbsp; &nbsp; &nbsp; "/var/named";<br> &nbsp; &nbsp; &nbsp; &nbsp;pid-file &nbsp; &nbsp; &nbsp; &nbsp;"/var/run/named/named.pid";<br> &nbsp; &nbsp; &nbsp; &nbsp;max-ncache-ttl &nbsp;300;　　←ネガティブキャッシュの最大TTL（秒単位）<br> &nbsp; &nbsp; &nbsp; &nbsp;max-cache-ttl &nbsp; 3600;　　←キャッシュの最大TTL（秒単位）<br> &nbsp; &nbsp; &nbsp; &nbsp;lame-ttl &nbsp; &nbsp; &nbsp; &nbsp;600;　　←lame情報を保持することで無駄な問い合わせを減らす<br><br> &nbsp; &nbsp; &nbsp; &nbsp;allow-query {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;localhost;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;localnet;<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;allow-recursion {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;localhost;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;localnet;<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br>};<br><br>zone "." {<br> &nbsp; &nbsp; &nbsp; &nbsp;type &nbsp; &nbsp;hint;<br> &nbsp; &nbsp; &nbsp; &nbsp;file &nbsp; &nbsp;"named.root";<br>};<br><br>zone "localhost" {<br> &nbsp; &nbsp; &nbsp; &nbsp;type &nbsp; &nbsp;master;<br> &nbsp; &nbsp; &nbsp; &nbsp;file &nbsp; &nbsp;"localhost.zone";<br>};<br><br>zone "0.0.127.in-addr.arpa" {<br> &nbsp; &nbsp; &nbsp; &nbsp;type &nbsp; &nbsp;master;<br> &nbsp; &nbsp; &nbsp; &nbsp;file &nbsp; &nbsp;"localhost.rev";<br>};<br><br>// Log<br>logging {<br> &nbsp; &nbsp; &nbsp; &nbsp;channel "log_queries" {<br> &nbsp; &nbsp; &nbsp; &nbsp;file "/var/log/named/queries.log" versions 10 size 10m;<br> &nbsp; &nbsp; &nbsp; &nbsp;severity info;<br> &nbsp; &nbsp; &nbsp; &nbsp;print-time yes;<br> &nbsp; &nbsp; &nbsp; &nbsp;print-category yes;<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;channel "log_default" {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;file "/var/log/named/named.log" versions 10 size 10m;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;severity info;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print-time yes;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print-category yes;<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;channel "lame-servers" {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;file "/var/log/named/lame-servers.log" versions 10 size 10m;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;severity info;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print-time yes;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print-category yes;<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;category queries {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"log_queries";<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;category default {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"log_default";<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br><br> &nbsp; &nbsp; &nbsp; &nbsp;category lame-servers {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"lame-servers";<br> &nbsp; &nbsp; &nbsp; &nbsp;};<br>};<br><br><br></td></tr></tbody></table><br>localhostのゾーンファイルを作成します。<br><table class="console"><tbody><tr><td># vi /var/named/chroot/var/named/local.zone<br>$TTL 86400<br>@ &nbsp; &nbsp; &nbsp; IN &nbsp; &nbsp; &nbsp;SOA &nbsp; &nbsp; localhost. &nbsp; &nbsp; &nbsp;root.localhost. (<br> &nbsp; &nbsp; &nbsp; &nbsp;2011110801 &nbsp; &nbsp; &nbsp;; serial<br> &nbsp; &nbsp; &nbsp; &nbsp;28800 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; refresh 8hr<br> &nbsp; &nbsp; &nbsp; &nbsp;14400 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; retry 4hr<br> &nbsp; &nbsp; &nbsp; &nbsp;604800 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; expire 1w<br> &nbsp; &nbsp; &nbsp; &nbsp;86400 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; default_ttl 24hr<br>)<br><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp;NS &nbsp; &nbsp; &nbsp;localhost.<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp;A &nbsp; &nbsp; &nbsp; 127.0.0.1<br><br># vi /var/named/chroot/var/named/local.rev<br>$TTL 86400<br>@ &nbsp; &nbsp; &nbsp; IN &nbsp; &nbsp; &nbsp;SOA &nbsp; &nbsp; localhost. &nbsp; &nbsp; &nbsp;root.localhost. (<br> &nbsp; &nbsp; &nbsp; &nbsp;2011110801&nbsp;&nbsp; &nbsp; &nbsp;; serial<br> &nbsp; &nbsp; &nbsp; &nbsp;28800 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; refresh 8hr<br> &nbsp; &nbsp; &nbsp; &nbsp;14400 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; retry 4hr<br> &nbsp; &nbsp; &nbsp; &nbsp;604800 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; expire 1w<br> &nbsp; &nbsp; &nbsp; &nbsp;86400 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; default_ttl 24hr<br>)<br><br> &nbsp; &nbsp; &nbsp; &nbsp;IN &nbsp; &nbsp; &nbsp;NS &nbsp; &nbsp; &nbsp;localhost.<br>1 &nbsp; &nbsp; &nbsp; IN &nbsp; &nbsp; &nbsp;PTR &nbsp; &nbsp; localhost.<br><br><br></td></tr></tbody></table><br>ログ用のディレクトリを作成します。<br>chrootが効いているので/var/named/chroot/var/log/namedを作成して/var/logにリンクを張ります。<table class="console"><tbody><tr><td># mkdir /var/named/chroot/var/log/named<br>ln -s /var/named/chroot/var/log/named/ /var/log/named<br><br></td></tr></tbody></table><br>bindを起動します。<table class="console"><tbody><tr><td># service named start<br>named を起動中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[ &nbsp;OK &nbsp;]</td></tr></tbody></table><br>bindを自動起動に設定します。<table class="console"><tbody><tr><td># chkconfig named on<br></td></tr></tbody></table><br>参考にしたサイト<br><a href="http://www.atmarkit.co.jp/flinux/rensai/bind901/bind901a.html" target="_blank">http://www.atmarkit.co.jp/flinux/rensai/bind901/bind901a.html</a>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11073430472.html</link>
<pubDate>Sun, 01 Apr 2012 22:57:38 +0900</pubDate>
</item>
<item>
<title>DHCPサーバの設定</title>
<description>
<![CDATA[ CentOSでDHCPサーバの設定をしてみました。<br><br>まず、インスールされているバージョンを確認してみます。<table class="console"><tbody><tr><td># rpm -qa | grep dhcp<br>dhcp-3.0.5-29.el5_7.1</td></tr></tbody></table><div><br></div><div>設定ファイルは/etc/dhcpd.confなのですが、/etcにはファイルがありませんのでサンプルファイルをコピーします。</div><table class="console"><tbody><tr><td># cp /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample /etc/dhcpd.conf</td></tr></tbody></table><br><div>次にファイルを編集します。想定しているネットワークは以下のとおりです。</div><div>&nbsp;<br></div><table border="1" cellspacing="0"><tbody><tr><th bgcolor="#ff9999">ネットワーク</th><td>192.168.1.0</td></tr><tr><th bgcolor="#ff9999">サブネットマスク &nbsp; </th><td>255.255.255.0</td></tr><tr><th bgcolor="#ff9999">デフォルトゲートウェイ</th><td>192.168.1.1</td></tr><tr><th bgcolor="#ff9999">DNSサーバ</th><td>192.168.1.1</td></tr><tr> <th bgcolor="#ff9999"> ドメイン名 &nbsp;</th> <td> localdomain &nbsp;</td> </tr><tr><th bgcolor="#ff9999">DHCPレンジ</th><td>192.168.1.200-192.168.1.220</td></tr></tbody></table><br><div>上記の内容に沿ってファイルを編集します。<table class="console"><tbody><tr><td># vi /etc/dhcpd.conf<br>ddns-update-style interim;<br>ignore client-updates;<br><br>subnet 192.168.1.0 netmask 255.255.255.0 {　　←環境に合わせて変更<br><br># --- default gateway<br> &nbsp; &nbsp; &nbsp; &nbsp;option routers &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;192.168.1.1;　　←環境に合わせて変更<br> &nbsp; &nbsp; &nbsp; &nbsp;option subnet-mask &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;255.255.255.0;　　←環境に合わせて変更<br><br> &nbsp; &nbsp; &nbsp; &nbsp;option nis-domain &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "localdomain";　　←環境に合わせて変更<br> &nbsp; &nbsp; &nbsp; &nbsp;option domain-name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"localdomain";　　←環境に合わせて変更<br> &nbsp; &nbsp; &nbsp; &nbsp;option domain-name-servers &nbsp; &nbsp; &nbsp;192.168.1.1;　　←環境に合わせて変更<br><br> &nbsp; &nbsp; &nbsp; &nbsp;option time-offset &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-18000; # Eastern Standard Time<br> &nbsp; &nbsp; &nbsp; &nbsp;option ntp-servers &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;192.168.1.1;<br># &nbsp; &nbsp; &nbsp; option netbios-name-servers &nbsp; &nbsp; 192.168.1.1;<br># --- Selects point-to-point node (default is hybrid). Don't change this unless<br># -- you understand Netbios very well<br># &nbsp; &nbsp; &nbsp; option netbios-node-type 2;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;range dynamic-bootp 192.168.1.201 192.168.1.220;　　←環境に合わせて変更<br> &nbsp; &nbsp; &nbsp; &nbsp;default-lease-time 21600;<br> &nbsp; &nbsp; &nbsp; &nbsp;max-lease-time 43200;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;# we want the nameserver to appear at a fixed address<br># &nbsp; &nbsp; &nbsp; host ns {　　←MACアドレスで固定IPを振りたいときに設定(今回はコメントアウト)<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; next-server marvin.redhat.com;<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hardware ethernet 12:34:56:78:AB:CD;<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fixed-address 207.175.42.254;<br># &nbsp; &nbsp; &nbsp; }<br>}<br></td></tr></tbody></table></div><div><br></div>ファイルを修正したらサービスを起動します。<table class="console"><tbody><tr><td># service dhcpd start<br>dhcpd を起動中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[ &nbsp;OK &nbsp;]</td></tr></tbody></table><br><div>OS起動時に自動起動にします。<table class="console"><tbody><tr><td># chkconfig dhcpd on</td></tr></tbody></table><br>さて、この設定だとクライアントがIPアドレスを取得まで10数秒ほどかかってしまいました。ログ(/var/log/messages)を見ると「not authoritative」とか「not authorized」とか表示されていました。<table class="console"><tbody><tr><td># cat/var/log/messages<br>Nov &nbsp;8 15:43:25 cent57 dhcpd: DHCPREQUEST for 172.16.111.157 from f0:4d:a2:aa:13:92 via eth0: ignored (not authoritative).<br>Nov &nbsp;8 15:44:04 cent57 dhcpd: DHCPREQUEST for 172.16.111.157 from f0:4d:a2:aa:13:92 via eth0: ignored (not authoritative).<br>Nov &nbsp;8 15:44:29 cent57 dhcpd: DHCPDISCOVER from f0:4d:a2:aa:13:92 (COMPUTER-01) via eth0<br>Nov &nbsp;8 15:44:30 cent57 dhcpd: DHCPOFFER on 192.168.1.220 to f0:4d:a2:aa:13:92 (COMPUTER-01) via eth0<br>Nov &nbsp;8 15:44:30 cent57 dhcpd: Unable to add forward map from COMPUTER-01.localdomain to 192.168.1.220: not authorized<br>Nov &nbsp;8 15:44:30 cent57 dhcpd: DHCPREQUEST for 192.168.1.220 (192.168.1.1) from f0:4d:a2:aa:13:92 (COMPUTER-01) via eth0<br>Nov &nbsp;8 15:44:30 cent57 dhcpd: DHCPACK on 192.168.1.220 to f0:4d:a2:aa:13:92 (COMPUTER-01) via eth0<br>Nov &nbsp;8 15:44:33 cent57 dhcpd: DHCPINFORM from 192.168.1.220 via eth0: not authoritative for subnet 192.168.1.0<br>Nov &nbsp;8 15:44:36 cent57 dhcpd: DHCPINFORM from 192.168.1.220 via eth0: not authoritative for subnet 192.168.1.0<br></td></tr></tbody></table><br><div>調べてみると、権威のないDHCPサーバになっているようです。そこで、192.168.1.0については権威がある宣言をします。具体的には、dhcpd.confのsubnetセクション内に「authoritative;」と追記します。<table class="console"><tbody><tr><td># cat /etc/dhcpd.conf<br>ddns-update-style interim;<br>ignore client-updates;<br><br>subnet 192.168.1.0 netmask 255.255.255.0 {<br><br>authoritative;　　←これを追記<br><br># --- default gateway<br> &nbsp; &nbsp; &nbsp; &nbsp;option routers &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;192.168.1.1;<br> &nbsp; &nbsp; &nbsp; &nbsp;option subnet-mask &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;255.255.255.0;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;option nis-domain &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "localdomain";<br> &nbsp; &nbsp; &nbsp; &nbsp;option domain-name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"localdomain";<br> &nbsp; &nbsp; &nbsp; &nbsp;option domain-name-servers &nbsp; &nbsp; &nbsp;192.168.1.1;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;option time-offset &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-18000; # Eastern Standard Time<br> &nbsp; &nbsp; &nbsp; &nbsp;option ntp-servers &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;192.168.1.1;<br># &nbsp; &nbsp; &nbsp; option netbios-name-servers &nbsp; &nbsp; 192.168.1.1;<br># --- Selects point-to-point node (default is hybrid). Don't change this unless<br># -- you understand Netbios very well<br># &nbsp; &nbsp; &nbsp; option netbios-node-type 2;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;range dynamic-bootp 192.168.1.201 192.168.1.220;<br> &nbsp; &nbsp; &nbsp; &nbsp;default-lease-time 21600;<br> &nbsp; &nbsp; &nbsp; &nbsp;max-lease-time 43200;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;# we want the nameserver to appear at a fixed address<br># &nbsp; &nbsp; &nbsp; host ns {<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; next-server marvin.redhat.com;<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hardware ethernet 12:34:56:78:AB:CD;<br># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fixed-address 207.175.42.254;<br># &nbsp; &nbsp; &nbsp; }<br>}</td></tr></tbody></table><br></div><div>これで「not authoritative」のワーニングは表示されなくなり、IPアドレスの取得時間も早くなりました！</div></div>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11072463304.html</link>
<pubDate>Sun, 01 Apr 2012 11:23:12 +0900</pubDate>
</item>
<item>
<title>sshの接続が遅い時の対策</title>
<description>
<![CDATA[ CentOSのsshdはデフォルトで接続先ホストの名前をDNSで検索するようになっています。<div><br></div><div>DNSが動いていない、逆引きが設定されていないなどの理由でssh接続が遅い時は以下のファイルを修正します。</div><div><br></div><div>/etc/ssh/sshd_config</div><table width="600" border="0" bgcolor="#000000" cellspacing="5" cellpadding="0"><tbody><tr><td><font color="White">#UseDNS yes<br>↓<br>UseDNS no<br></font></td></tr></tbody></table><br><div>/etc/ssh/sshd_configを修正したらsshdを再起動します。</div><table width="600" border="0" bgcolor="#000000" cellspacing="5" cellpadding="0"><tbody><tr><td><font color="White"># service sshd restart<br>sshd を停止中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ &nbsp;OK &nbsp;]<br>sshd を起動中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ &nbsp;OK &nbsp;]</font></td></tr></tbody></table><br><div>また、CentOSのsshdはデフォルトでrootのログインを許可しているので、これを禁止したいときも同じファイルを修正します。</div><div><br></div><div>/etc/ssh/sshd_config</div><table width="600" border="0" bgcolor="#000000" cellspacing="5" cellpadding="0"><tbody><tr><td><font color="White">PermitRootLogin no　←ファイルの最後に追記<br></font></td></tr></tbody></table><div><br></div><div>/etc/ssh/sshd_configを修正したらsshdを再起動します。</div><table width="600" border="0" bgcolor="#000000" cellspacing="5" cellpadding="0"><tbody><tr><td><font color="White"># service sshd restart<br>sshd を停止中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ &nbsp;OK &nbsp;]<br>sshd を起動中: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ &nbsp;OK &nbsp;]</font></td></tr></tbody></table><br>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11072210269.html</link>
<pubDate>Fri, 30 Mar 2012 20:23:28 +0900</pubDate>
</item>
<item>
<title>vSphere 5 - vCenter Server 5.0 Applianceの導入その２</title>
<description>
<![CDATA[ さて、前回設定したvCenter Server 5.0 Applianceへブラウザから接続してデータベースの定義と管理者パスワードの変更などを行います。<br><br>Webブラウザで以下のアドレスに接続してください。<br><br><u><span style="font-size: 16px; ">https://vCenter Server 5.0 ApplianceのIPアドレス:5480/<br></span></u><br>ログイン画面が表示されますので、「ユーザー名：root」「パスワード：vmware」でログインします。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/28/1a/j/o0500020511612902238.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/28/1a/j/o0500020511612902238.jpg" style="width:500px; height:205px; border:none;" ratio="2.4390243902439024" id="1321342927578"></a><p></p><p></p><br>使用許諾が表示されますので、右側にある「Accept EULA」をクリックします。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/82/aa/j/o0500036311612902240.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/82/aa/j/o0500036311612902240.jpg" style="width:500px; height:363px; border:none;" ratio="1.3774104683195592" id="1321342775898"></a><p></p><br>次に「Database」をクリックして「Database Type」を「UNCONFIGURED」から「embedded」に変更し、右側にある「Test Settings」をクリックします。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/74/14/j/o0295029511612904742.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/74/14/j/o0295029511612904742.jpg" style="width:295px; height:295px; border:none;" ratio="1" id="1321341824059"></a><p></p><br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/9f/15/j/o0500028911612902241.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/9f/15/j/o0500028911612902241.jpg" style="width:500px; height:289px; border:none;" ratio="1.7301038062283738" id="1321341726810"></a><p></p><br><br>しばらくすると画面の左上に「Operation was successful」と表示されますので、右側にある「Save Settings」をクリックします。<br><p><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/3f/40/j/o0500007911612905923.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/3f/40/j/o0500007911612905923.jpg" style="width:500px; height:79px; border:none;" ratio="6.329113924050633" id="1321341271898"></a></p><p></p><p></p><p></p><p style="text-align: left;"></p><p><br></p><p></p><p></p>またしばらくすると画面の左上に「Operation was successful」と表示され、「Schema Version」に[VirtualCenter Database 5.0]と表示されたらデータベースの定義は終了です。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/24/78/j/o0500031011612910779.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/24/78/j/o0500031011612910779.jpg" style="width:500px; height:310px; border:none;" ratio="1.6129032258064515" id="1321341667098"></a><p></p><p></p><br>次に管理者パスワードを変更します。<br>「Administration」をクリックして以下のとおり入力します。<br>・Current administrator password:現在のパスワード<br>・New administrator password:新しいパスワード<br>・Retype new administrator password:新しいパスワードをもう一度<br><br>入力できたら右側にある「Change password」をクリックします。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/90/a9/j/o0500019811612926219.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/90/a9/j/o0500019811612926219.jpg" style="width:500px; height:198px; border:none;" ratio="2.525252525252525" id="1321342052186"></a><p></p><br>「Operation was successful」と表示されればOKです。<br><a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/10/90/j/o0500030111612929827.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/10/90/j/o0500030111612929827.jpg" style="width:500px; height:301px; border:none;" ratio="1.6611295681063123" id="1321342112306"></a><p></p><br>以上で管理者パスワードの変更は終了です。<br><br>最後に、vCenterサービスの起動確認をします。<br>「Status」をクリックしてください。現在の状況が表示されます。<a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/d3/5d/j/o0500024911612941716.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/d3/5d/j/o0500024911612941716.jpg" style="width:500px; height:249px; border:none;" ratio="2.0080321285140563" id="1321342571131"></a><p></p>「Service Status」が「Stopped」になっていましたら右側にある「Start vCenter」をクリックしてください。<br>「Operation was successful」と表示され、「Service Status」が「Running」になりましたらOKです。<a href="http://stat.ameba.jp/user_images/20111115/16/luckysystem/22/35/j/o0500025311612941717.jpg"><img src="https://stat.ameba.jp/user_images/20111115/16/luckysystem/22/35/j/o0500025311612941717.jpg" style="width:500px; height:253px; border:none;" ratio="1.976284584980237" id="1321342653866"></a><p></p>以上でvCenter Server&nbsp;Applianceの基本設定は終了です。<br><br>次は、vShpere ClientからvCenter Server&nbsp;Applianceに接続して、データセンターの作成などを行います。<br><br>続きはこちらからどうぞ。<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11079309330.html</link>
<pubDate>Mon, 14 Nov 2011 21:26:51 +0900</pubDate>
</item>
<item>
<title>vSphere 5 - vCenter Server 5.0 Applianceの導入その１</title>
<description>
<![CDATA[ <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">vSphere 5 で使用できる　VMware vCenter Server 5.0 Applianceを導入してみました。<br><br></span><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">vSphere 4の時はvCenter Serverを構築する場合、WindowsServerとSQLServerを別途用意する必要がありました。<br><br>vSphere 5では、WindowsベースのvCenter Serverに加え、VMware社が無償提供しているLinuxベースの</span><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">VMware vCenter Server 5.0 Applianceを使用することができるようになりました。<br></span><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); "><br>ただし、Linuxアプライアンスなので、ActiveDirectoryに対応していない、複数のvCenterServerを統合管理する「リンクモード」に対応していない、IPv6が使用できないなどの制限があるようです。<br><br>また、ESXi上で動作する仮想マシンなので、本番環境で使用するときは、ESXiサーバを複数台用意し、仮想マシンは共有ディスクにインストールするHA構成にする必要がありそうです。<br><br>では、はじめに、VMwareのサイトからアプライアンスをダウンロードします。<br><br>OVFイメージが一つとVMDKイメージが２つです。<br></span><p style="text-align: left;"><a href="http://stat.ameba.jp/user_images/20111115/14/luckysystem/3c/b4/j/o0500032111612788346.jpg"><img src="https://stat.ameba.jp/user_images/20111115/14/luckysystem/3c/b4/j/o0500032111612788346.jpg" style="width:500px; height:321px; border:none;" ratio="1.557632398753894" id="1321336239798"></a></p><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">ダウンロードできたら、vSphere Clientを起動してESXiサーバに接続します。</span></font><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">接続できたら「ファイル」－「OVFテンプレートのデプロイ」を選択します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/14/luckysystem/b6/bc/j/o0282022411612795295.jpg"><img src="https://stat.ameba.jp/user_images/20111115/14/luckysystem/b6/bc/j/o0282022411612795295.jpg" style="width:282px; height:224px; border:none;" ratio="1.2589285714285714" id="1321336241602"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">OVFテンプレートのデプロイウィザードが起動します。</span></font><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">「ファイルまたはURLからのデプロイ」の「参照」ボタンをクリックします。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/70/74/j/o0500047711612822862.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/70/74/j/o0500047711612822862.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321337578074"></a><p></p><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><br><span class="Apple-style-span" style="line-height: 16px;">ファイル一覧からダウンロードしたOVFファイルを選択して「開く」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/fd/d9/j/o0500029711612822863.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/fd/d9/j/o0500029711612822863.jpg" style="width:500px; height:297px; border:none;" ratio="1.6835016835016836" id="1321337595827"></a><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">「ファイルまたはURLからのデプロイ」にファイル名が追加されます。確認して「次へ」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/13/3e/j/o0500047711612822860.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/13/3e/j/o0500047711612822860.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321337633986"></a><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">「OVFテンプレートの詳細」が表示されますので「次へ」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/a8/0a/j/o0500047711612822864.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/a8/0a/j/o0500047711612822864.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321337634399"></a><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">仮想マシンの名前を設定します。デフォルトは「VMware vCenter Server Appliance」です。</span></font><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">確認したら「次へ」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/60/3c/j/o0500047711612829079.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/60/3c/j/o0500047711612829079.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321337979770"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><br><span class="Apple-style-span" style="line-height: 16px;">仮想マシンを保存するストレージを選択します。今回はiSCSIの共有ディスクに配置します。</span><br><span class="Apple-style-span" style="line-height: 16px;">選択できたら「次へ」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/c4/be/j/o0500047711612829080.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/c4/be/j/o0500047711612829080.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321337993162"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br>ディスクのフォーマットを選択します。「シック　プロビジョニング」を選択すると直ちにディスク容量を確保します（システムディスクで60GB、データディスクで22GB）。<br>「シン　プロビジョニング」を選択するとディスク容量は動的に確保されます。<br>今回は「</span></font></span><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">シン　プロビジョニング</span><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">」を選択して「次へ」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/11/ed/j/o0500047711612829081.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/11/ed/j/o0500047711612829081.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321338002395"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><br><span class="Apple-style-span" style="line-height: 16px;">確認画面が表示されますので「終了」ボタンを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/57/ab/j/o0500047711612829082.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/57/ab/j/o0500047711612829082.jpg" style="width:500px; height:477px; border:none;" ratio="1.0482180293501049" id="1321338010570"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br>これで仮想マシンの準備は終わりました。では、電源を入れてみます。<br><br>vShpere Clientの左側ツリーから「</span></font></span><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">VMware vCenter Server Appliance</span><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">」を選択して電源をONにします。<br><br>しばらくすると初期画面が表示されます。「コンソール」をクリックしてみてください。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/55/df/j/o0500027811612836398.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/55/df/j/t02200122_0500027811612836398.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902"></a><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br>では、IPアドレスを設定しましょう。デフォルトではDHCPになっていますので、固定IPアドレスにします。<br>「Configure Network」を選択して「Enter」キーを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/2f/af/j/o0500027811612836399.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/2f/af/j/t02200122_0500027811612836399.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902" id="1321339121674"></a><br><br>IPv6アドレスは設定しないので[n]キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/8c/67/j/o0500027711612836397.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/8c/67/j/t02200122_0500027711612836397.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902"></a><br><br>次にIPv4はスタティックにしますので「y」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/70/e6/j/o0500027611612836400.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/70/e6/j/t02200121_0500027611612836400.jpg" style="width:220px; height:121px; border:none;" ratio="1.8181818181818181" id="1321338562643"></a><p></p><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br>IPアドレス設定画面になりますので、以下の項目を環境に合わせて入力します。<br>・IPアドレス<br>・ネットマスク<br>・デフォルトゲートウェイ<br>・DNSサーバ<br>・ホスト名<br>・IPv4プロキシ(使用しないときはnキー)<br>設定できましたら確認して「y」キーを押下します<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/b8/f3/j/o0500027811612845111.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/b8/f3/j/t02200122_0500027811612845111.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902" id="1321339386786"></a><br><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br>最初の画面に戻りますので、次はタイムゾーンを設定します。<br>「Set Timezone」を選択して「Enter」キーを押下します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/db/b4/j/o0500027711612845114.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/db/b4/j/t02200122_0500027711612845114.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902"></a><br><br>地域の選択画面になります。「5) Asia」を選択しますので「5」を入力して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/7b/e6/j/o0500027911612845112.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/7b/e6/j/t02200123_0500027911612845112.jpg" style="width:220px; height:123px; border:none;" ratio="1.7886178861788617" id="1321338821338"></a><br><br>次は国を選択します。「19) Japan」ですので「19」を入力して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/8f/3f/j/o0500027711612845113.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/8f/3f/j/t02200122_0500027711612845113.jpg" style="width:220px; height:122px; border:none;" ratio="1.8032786885245902" id="1321339118955"></a><br><br>確認画面が表示されますので「1」を入力して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111115/15/luckysystem/a6/e0/j/o0500018011612854169.jpg"><img src="https://stat.ameba.jp/user_images/20111115/15/luckysystem/a6/e0/j/o0500018011612854169.jpg" style="width:500px; height:180px; border:none;" ratio="2.7777777777777777" id="1321342892491"></a><p></p><p></p><p></p>以上で基本設定は終了です。次はデータベースの定義、管理者パスワードの変更などを行います。<br><br>続きは<a href="http://ameblo.jp/luckysystem/entry-11079309330.html" target="" title="">こちら</a>からどうぞ。<br><br><p></p><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br></span></font></span><p></p><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;"><br><br><br></span></font></span><p></p><br>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11079267506.html</link>
<pubDate>Mon, 14 Nov 2011 20:40:06 +0900</pubDate>
</item>
<item>
<title>vSphere 5 - VMware vSphere Clientのインストール</title>
<description>
<![CDATA[ vSphere 5 で使用する　VMware vSphere Clientをインストールしてみました。<br><br>これはESXiサーバやvCenterServerに接続してESXiサーバやvCenterServerの設定をしたり、仮想マシンの制御を行うソフトウェアです。<br><br>ではまず、VMware社からインストールモジュールをダウンロードしてEXEファイルを実行します。<br>(2011年11月10日現在の最新はVMware-viclient-all-5.0.0-455964.exe)<br><br>インストールは基本的に画面の指示に従えばOKです。<br><br>言語の選択です。デフォルトの「日本語」でいきましょう。「OK」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/93/2b/j/o0447014411604023165.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/93/2b/j/t02200071_0447014411604023165.jpg" style="width:220px; height:71px; border:none;" ratio="3.0985915492957745" id="1320977949561"></a><br><br>「次へ」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/2b/47/j/o0504037911604023166.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/2b/47/j/t02200165_0504037911604023166.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978459322"></a><br><br><div style="text-align: left;">「エンドユーザー使用許諾契約書」をよく読んで「次へ」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/7c/dc/j/o0504037911604023168.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/7c/dc/j/t02200165_0504037911604023168.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978462968"></a></div><br>「使用許諾契約書」をよく読んで「●使用許諾契約書に同意します」を選択して「次へ」ボタンを押下<br><div style="text-align: left;"><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/aa/69/j/o0504037911604023167.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/aa/69/j/t02200165_0504037911604023167.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978548706"></a></div><br><div style="text-align: left;">ユーザー名と組織名を入力して「次へ」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/68/29/j/o0504037911604033794.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/68/29/j/t02200165_0504037911604033794.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978553918"></a></div><br><div style="text-align: left;">インストール先フォルダは特に変更なければこのまま「次へ」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/8c/39/j/o0504037911604033791.jpg"><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/8c/39/j/t02200165_0504037911604033791.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978476936" class="selected"></a></div><br>「インストール」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/0b/90/j/o0504037911604033793.jpg" style="text-align: left; "><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/0b/90/j/t02200165_0504037911604033793.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978482848"></a><br><br><p></p><p></p><p></p><p></p><p></p><p>環境によってはMicrosoft .NET Framework 3.5 SP1のセットアップが始まります。<br>ライセンス条項に「●同意する」を選択して「インストール」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/c8/62/j/o0507047811604040325.jpg" style="text-align: left; "><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/c8/62/j/t02200207_0507047811604040325.jpg" style="width:220px; height:207px; border:none;" ratio="1.0628019323671498" id="1320978487096"></a><br><br>&nbsp;.NET Frameworkのインストールが始まります（しばらく時間がかかります）。<br><br>「セットアップが完了しました」と表示されたら「終了」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/10/luckysystem/f4/9b/j/o0507047811604045115.jpg" style="text-align: left; "><img src="https://stat.ameba.jp/user_images/20111111/10/luckysystem/f4/9b/j/t02200207_0507047811604045115.jpg" style="width:220px; height:207px; border:none;" ratio="1.0628019323671498" id="1320978490385"></a><br><br></p><div style="text-align: left;">「インストール完了」が表示されたら「終了」ボタンを押下<br><a href="http://stat.ameba.jp/user_images/20111111/11/luckysystem/1e/0e/j/o0504037911604062497.jpg"><img src="https://stat.ameba.jp/user_images/20111111/11/luckysystem/1e/0e/j/t02200165_0504037911604062497.jpg" style="width:220px; height:165px; border:none;" ratio="1.3333333333333333" id="1320978493776"></a></div><p></p><p><br>以上でVMware vSphere Clientのインストールは終了です。<br><br>では、早速接続してみましょう。<br>デスクトップ上にある「VMware vSphere Client」アイコンをダブルクリックします。<br></p><div style="text-align: left;"><a href="http://stat.ameba.jp/user_images/20111111/11/luckysystem/17/bb/j/o0088007911604062496.jpg"><img src="https://stat.ameba.jp/user_images/20111111/11/luckysystem/17/bb/j/t00880079_0088007911604062496.jpg" style="width:88px; height:79px; border:none;" ratio="1.1139240506329113" id="1320978497208"></a></div><br>以下の接続画面が表示されます。<br><div style="text-align: -webkit-auto;"><a href="http://stat.ameba.jp/user_images/20111111/11/luckysystem/6d/ec/j/o0420037111604062498.jpg" style="text-align: left; "><img src="https://stat.ameba.jp/user_images/20111111/11/luckysystem/6d/ec/j/o0420037111604062498.jpg" style="width:420px; height:371px; border:none;" ratio="1.1320754716981132" id="1320978576578"></a></div><p></p><p></p>１台のESXiを制御したい場合は、制御したESXiのIPアドレスまたは名前を入力します。<br>vCenterServerを導入して複数のESXiサーバを管理したい場合はvCenterServerのIPアドレスまたは名前を入力します。<br><br>ユーザー名とパスワードは管理できるアカウントです。<br>ESXiの場合は「root」がデフォルトの管理者になっています。<br><br>では、１台のESXiに「root」でログインします。<br><p>初めて接続する際、「証明書に関する警告」が表示される時があります。<br></p><div style="text-align: left;">「無視」ボタンを押下ことで次回から表示されなくなります。<br><a href="http://stat.ameba.jp/user_images/20111111/11/luckysystem/26/f3/j/o0510027311604062499.jpg"><img src="https://stat.ameba.jp/user_images/20111111/11/luckysystem/26/f3/j/t02200118_0510027311604062499.jpg" style="width:220px; height:118px; border:none;" ratio="1.8644067796610169" id="1320978504432"></a></div><br>無事に接続されると、以下のような画面が表示されます。ここからESXiサーバの設定をしたり仮想マシンを作ったりすることができます。<br><a href="http://stat.ameba.jp/user_images/20111111/11/luckysystem/5f/47/j/o0440028611604083493.jpg"><img src="https://stat.ameba.jp/user_images/20111111/11/luckysystem/5f/47/j/o0440028611604083493.jpg" style="width:440px; height:286px; border:none;" ratio="1.5384615384615385" id="1320978754642"></a><p></p><br><p></p><br><br><p></p>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11075113432.html</link>
<pubDate>Thu, 10 Nov 2011 20:32:37 +0900</pubDate>
</item>
<item>
<title>vSphere 5 - VMware ESXi 5.0のインストール</title>
<description>
<![CDATA[ <span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">vSphere 5 で使用する　ESXi5.0をインストールしてみました。</span><br style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); "><br>ESXi5.0は64ビットCPUのみをサポートしています。32ビットCPUの場合は、ESXi4.0を使用することになります。<br>また、intel-NTやAMd-Vの仮想化支援機能をサポートしていないCPUの場合は動作に制限があるようです。<br><br><br style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); "><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); ">ではまず、VMware社からISOモジュールをダウンロードしてCD-ROMに焼きます。</span><br style="color: rgb(51, 51, 51); font-family: 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica; line-height: 16px; background-color: rgb(255, 255, 255); "><span class="Apple-style-span" style="background-color: rgb(255, 255, 255); "><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">(2011年11月10日現在の最新はVMware-VMvisor-Installer-5.0.0-469512.x86_64.iso)</span></font><br><br><font class="Apple-style-span" color="#333333" face="'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', Arial, Helvetica"><span class="Apple-style-span" style="line-height: 16px;">作成したCD-ROMでマシンをブートするとESXi5.0のインストーラーが起動します。<br></span></font></span><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/74/08/j/o0500027611604263924.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/74/08/j/o0500027611604263924.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1321150588174"></a><br><br><br>10秒待つかEnterキーを押下するとインストーラーがロードされます。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/d9/40/j/o0500037511604263926.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/d9/40/j/o0500037511604263926.jpg" style="width:500px; height:375px; border:none;" ratio="1.3333333333333333" id="1320988608807"></a><br><br>「Welcome to the VMware ESXi 5.0.0 Installation」が表示されますので「Enter」キーで続行します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/e2/97/j/o0500027911604263928.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/e2/97/j/o0500027911604263928.jpg" style="width:500px; height:279px; border:none;" ratio="1.7921146953405018" id="1321150461524"></a><br><br>「End&nbsp;User License Agreement」が表示されますのでよく読んだふりをしてから「F11」を押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/fd/5a/j/o0500027711604263927.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/fd/5a/j/o0500027711604263927.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320991261194"></a><br><br><br>次はインストール先ディスクの選択です。インストールしたいディスクを選択します。<br>ちなみに、USBメモリにインストールし、BIOSでUSBメモリをブート可にすると内蔵ディスクを使用せずにESXiを動かすことも可能です。<br>ここではLocalにインストールするのでそのまま「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/4c/81/j/o0500027711604276548.jpg" style="text-align: right; "><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/4c/81/j/o0500027711604276548.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320991287539"></a><br><br>次にキーボードの選択です。「Japanese」を選択して「Enter」キーを押下します。<a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/06/a1/j/o0500027811604276547.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/06/a1/j/o0500027811604276547.jpg" style="width:500px; height:278px; border:none;" ratio="1.7985611510791366" id="1320991319122"></a><p></p><br>次に「root」のパスワードを設定します。7文字以上で入力してください。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/2d/15/j/o0500027811604276549.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/2d/15/j/o0500027811604276549.jpg" style="width:500px; height:278px; border:none;" ratio="1.7985611510791366" id="1321150484127"></a><p></p><p></p><p>インストール開始の画面が表示されますので「Enter」キーを押下します。<a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/2d/d7/j/o0500027611604282022.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/2d/d7/j/o0500027611604282022.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1321150489036"></a><br></p><p></p><br>インストール自体は数分で終了です。以下の画面が表示されましたらCD-ROMを取り出してから「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/e2/27/j/o0500027711604282021.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/e2/27/j/o0500027711604282021.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320989693113"></a><p></p><p></p><br>再起動後、ESXiの初期画面が表示されます。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/20/d8/j/o0500027711604282023.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/20/d8/j/o0500027711604282023.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320989939794"></a><p></p><br>IPアドレスはDHCPで取得になっていますので、固定IPに変更しましょう。<br>では、「F2」キーを押下してください。「root」のパスワード入力画面になりますので、インストール時に設定したパスワードを入力して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/64/f1/j/o0500027611604301936.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/64/f1/j/o0500027611604301936.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1320991347076"></a><p></p><p></p><br>「System Customization」の画面になります。矢印キーで「Configure Management Network」を選択して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/81/8e/j/o0500027611604301938.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/81/8e/j/o0500027611604301938.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1320991352702"></a><p></p><p></p><p><br>「Configure Management Network」の画面になります。NICが複数ある場合は「Network Adapters」で「Enter」キーを押下し、変更したいNICを選択します（一つの場合は不要）。<a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/11/47/j/o0500027711604301937.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/11/47/j/o0500027711604301937.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320991355036"></a></p><p></p><br>次に矢印キーで「IP Configuration」を選択して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/81/8e/j/o0500027611604301938.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/81/8e/j/o0500027611604301938.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1320991370253"></a><p></p><br>「IP&nbsp;Configuration」の画面になりますので、「Set static IP address and network configuration」を選択して「スペース」キーを押下します。<br>すると、「IP Address」「Subnet Mask」「Default Gateway」が変更できるようになりますので、環境に合わせた内容に変更してください。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/43/75/j/o0500027711604302691.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/43/75/j/o0500027711604302691.jpg" style="width:500px; height:277px; border:none;" ratio="1.8050541516245486" id="1320990657331"></a><p></p><p></p><p></p><p></p><p><br>変更できましたら「Enter」キーを押下してください。一つ前の画面に戻ります。<a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/e5/c7/j/o0500027511604302689.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/e5/c7/j/o0500027511604302689.jpg" style="width:500px; height:275px; border:none;" ratio="1.8181818181818181" id="1320991391061"></a></p><p></p><br>次はDNSサーバを変更します。<br>「DNS Configuration」を選択して「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/59/69/j/o0500027611604303361.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/59/69/j/o0500027611604303361.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1320991380997"></a><br><br>「DNS Configuration」の画面になりますので、「Primary DNS Server（プライマリDNS)」「Alternate DNS Server(セカンダリDNS)」「Hostname」をそれぞれ設定します。設定できましたら「Enter」キーを押下します。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/e1/d5/j/o0500027611604303363.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/e1/d5/j/o0500027611604303363.jpg" style="width:500px; height:276px; border:none;" ratio="1.8115942028985508" id="1320991416380"></a><p></p><p></p><p></p><p></p><p><br>「Configure Management Network」の画面に戻りますので、「ESC」キーを押下します。<br>変更確認の画面が表示されますので「Y」キーを押下してください。<br><a href="http://stat.ameba.jp/user_images/20111111/14/luckysystem/b8/af/j/o0500027811604329949.jpg"><img src="https://stat.ameba.jp/user_images/20111111/14/luckysystem/b8/af/j/o0500027811604329949.jpg" style="width:500px; height:278px; border:none;" ratio="1.7985611510791366" id="1321150510758"></a></p><p></p><p></p><br>以上でESXiの基本設定は終了です。<br><br>以降の設定、例えば仮想マシンを置いておく「データストア」や仮想ネットワーク、実際に仮想マシンの作成などはすべて「vSphere Client」から行います。<br><br><br><p></p><p></p><p></p><p></p><p></p><p></p><p></p><br>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11075243677.html</link>
<pubDate>Thu, 10 Nov 2011 19:51:06 +0900</pubDate>
</item>
<item>
<title>VMware vCenter Converter Standalone Clientのエラー</title>
<description>
<![CDATA[ Windows7にVMware vCenter Converter Standalone 5.0をインストールして物理マシンを仮想化しようとしたところ、以下のエラーで進まなくなりました。<div><br></div><div><span style=" color:#ff0000;">失敗: 一般的なシステム エラーが発生しました：Crypto Exception: error:02001005:system library:fopen:Input/output error:unable to load C:<br>\ProgramData\VMware\VMware vCenter Converter Standalone\ssl\rui.crt</span><br><div><br></div><div>どうやらwindowsのUACのおかげでファイルが作成できないのが原因のようです。</div><div><br></div><div>VMware vCenter Converter Standalone Client起動時にアイコンを右クリックして「管理者として実行」を選択するか、アイコンのプロパティで「互換性」タブをクリックし、「管理者としてこのプログラムを実行する」にチェックをつけておくことで回避できました。</div><div><br></div><div>忘れないようにアイコンのプロパティを変更しておくのがいいかもしれませんね。</div><div><br></div><div><p><a href="http://stat.ameba.jp/user_images/20111108/15/luckysystem/57/23/p/o0340037511598753364.png"><img src="https://stat.ameba.jp/user_images/20111108/15/luckysystem/57/23/p/t02200243_0340037511598753364.png" style="width:220px; height:243px; border:none;" alt="" vmware" converterのエラー" ratio="0.9053497942386831"></a></p><p></p></div><div><br></div><div><br></div><div><br></div><div><br></div></div>
]]>
</description>
<link>https://ameblo.jp/luckysystem/entry-11072416133.html</link>
<pubDate>Mon, 07 Nov 2011 20:20:52 +0900</pubDate>
</item>
</channel>
</rss>
