星期六, 12月 27, 2014

VMware 從 datastore 匯入 OVF / OVA 檔案

這兩天在進行機器測試,
其中不知道是因為網路流量限制的關係, 還是 firewall 的關係( 目前待查 )
在匯入 OVF / OVA 來佈署的時候, 會有一些問題.
所以想法上就轉向先將 OVF / OVA 上傳到 datastore 然後再進行佈署( 排除網路的部份 )

但是不管是用 vSphere Client 或是 vSphere Web Client, 要準備佈署 OVF / OVA 的時候

都只有 從檔案或 URL 部署


爬了一些文章, 發現可藉由登入 VMware ESX Web-Based Datastore Browser 的方式取得 URL 來佈署

記得這個畫面嗎?
當點選 Browse datastores in this host's inventory 就是連到 Web-Based Datastore



或是使用  https://<hostname>/folder  來進行連接

連接之後會跳出驗證視窗



登入之後會看到主機的 datastore
作法很簡單, 就是在該 *.ova  *.ovf 上面按滑鼠右鍵,  複製捷徑


將這個 URL 位置填入 OVF 匯入來源




別擔心會要求驗證的, 不是任何人都可以存取的到.



接下來就按照一般的流程來匯入即可.


但是奇怪的是, 同樣的 URL

* Windows vSphere Client 匯入 --  成功
* Windows vSphere Web Client 匯入  --  失敗, 一直說OVF 無法存取
* Linux vSphere Web Client -- 裝了整合性外掛之後, 還是說你沒有裝 Orz.....


先記下來
^^


Reference:
http://ephrain.pixnet.net/blog/post/46208406-%5Bvmware%5D-%E5%BE%9E-datastore-%E4%B8%8A%E5%8C%AF%E5%85%A5-ova-%E6%AA%94%E6%A1%88
http://www.virtuallyghetto.com/2012/03/how-to-deploy-ovf-located-on-esxi.html


VMware vSphere Web Client with linux 中文亂碼小記

最近開始要管理 VMware vSphere 相關設備

一直以來在管理 vSphere 都是藉由 vSphere Client 來連結, 操作的方式也都習慣了.
但是由於VMware 5.5 之後有些功能慢慢都會移到 Web Client, 加上本身就是 Linux / Mac 使用者, 所以也讓自己慢慢習慣使用vSphere Web Client.

使用vSphere Web Client

  • 優點
    • 不一定要有 Windows 作業系統 + 安裝 vSphere Client 來管理 VMware vSphere
  • 缺點
    • 如果要佈署OVF 或是進行一些特定動作要下載安裝用戶端


    • 在 Linux 下的 Chome 瀏覽器中文介面是亂碼
以下的螢幕截圖
左邊是使用VMware Player 安裝Windows 7 使用瀏覽器開啟的狀況
右邊是在openSUSE 13.1  使用 google chrome 瀏覽器開啟的狀況

在網路上找到的文章都是將介面改成中文的文章
方法是在 vsphere-client 路徑後面加上 ?locale=語系 的方式
https://<hostname>:9443/vsphere-client/?locale=zh_CN

所以就用這樣的方式, 將語系換成英文, 解決亂碼的問題

https://<hostname>:9443/vsphere-client/?locale=en_EN



先記下來
^^


星期六, 12月 13, 2014

openSUSE 13.2 小記 - log 紀錄機制的改變

當很多事情慢慢改變的時候, 我們就要慢慢學習適應了

現在新的 OS 慢慢採用 systemd, 之前的想法是 ~ 就是開機方式改變啦, 所以也沒有特別去注意

直到今天我的硬碟有些狀況, console 吐出來一些訊息, 我要回頭去查 log 的時候, 才發現......真的要花時間學習啦 ^^

-- 是的 /var/log/messages 不見了
-- 因為 systemd-logger 取代我可愛的 syslog-ng

可以從這邊看到

https://news.opensuse.org/category/distribution/sneak-peeks/

journald

journald is replacing the old logging technologies in openSUSE (at least for most common cases). The two most important commands you need to know:
  • journalctl – the old “cat /var/log/messages”
  • journalctl -f – the old “tail -f /var/log/messages”

但是大家心理的 OS 是...........字這麼小.......會去注意才有鬼

對.....現在要用  journalctl  來看 log 了
◢▆▅▄▃ 崩╰(〒皿〒)╯潰 ▃▄▅▆◣

我是還沒有試 grep 結合啦....
當下馬上衝到 /var/log 底下

# ls   /var/log/
README            apparmor  btmp     gdm      krb5     pbl.log          snapper.log        wpa_supplicant.log  zypper.log
YaST2             audit     cups     hp       lastlog  pk_backend_zypp  speech-dispatcher  wtmp                zypper.log-20141118.xz
alternatives.log  boot.log  faillog  journal  ntp      samba            tuned              zypp

是的, 懷念的 /var/log/messages 已經不見了

可愛的是如果你去看  /var/log/README

You are looking for the traditional text log files in /var/log, and
they are gone?

Here's an explanation on what's going on:

You are running a systemd-based OS where traditional syslog has been
replaced with the Journal. The journal stores the same (and more)
information as classic syslog. To make use of the journal and access
the collected log data simply invoke "journalctl", which will output
the logs in the identical text-based format the syslog files in
/var/log used to be. For further details, please refer to
journalctl(1).

Alternatively, consider installing one of the traditional syslog
implementations available for your distribution, which will generate
the classic log files for you. Syslog implementations such as
syslog-ng or rsyslog may be installed side-by-side with the journal
and will continue to function the way they always did.

Thank you!

Further reading:
        man:journalctl(1)
        man:systemd-journald.service(8)
        man:journald.conf(5)
        http://0pointer.de/blog/projects/the-journal.html

有沒有再被補一刀的感覺??

好啦, 你會想說, 有看到 /var/log/journal 目錄, 去看看吧

# ls -R /var/log/journal/
/var/log/journal/:
016627c3c4784cd4812d4b7e96a34226

/var/log/journal/016627c3c4784cd4812d4b7e96a34226:
system.journal                                     user-1001.journal
system@00050a15226e65e2-6a2adaf099149b92.journal~  user-1001@00050a1568c14eb9-763573ad8f79750c.journal~
user-1000.journal                                  user-484.journal

這個檔案也不是 text 文字格式
所以你如果嘗試去 貓它 ( cat )
你只會得到無情的亂碼
然後那個 log 大小是那一招 ?  8 M / 24M ?

# ls -hl  /var/log/journal/016627c3c4784cd4812d4b7e96a34226/
total 97M
-rw-r-----  1 root systemd-journal 8.0M Dec 13 19:21 system.journal
-rw-r-----  1 root systemd-journal  24M Dec 13 16:52 system@00050a15226e65e2-6a2adaf099149b92.journal~
-rwxr-xr-x+ 1 root systemd-journal 8.0M Nov 15 14:21 user-1000.journal
-rw-r-----+ 1 root systemd-journal 8.0M Dec 13 19:19 user-1001.journal
-rw-r-----+ 1 root systemd-journal  40M Dec 13 17:12 user-1001@00050a1568c14eb9-763573ad8f79750c.journal~
-rw-r-----+ 1 root systemd-journal 8.0M Dec 13 18:45 user-484.journal


使用 file 指令來檢查格式
# file  /var/log/journal/016627c3c4784cd4812d4b7e96a34226/user-1000.journal
/var/log/journal/016627c3c4784cd4812d4b7e96a34226/user-1000.journal: Journal file, offline, compressed

看來用 cat 指令無望 Orz....

# journalctl   |  grep  error
Nov 15 20:31:34 linux-dxsi gdm-Xorg-:0[791]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Nov 15 20:31:59 linux-dxsi org.a11y.Bus[1213]: g_dbus_connection_real_closed: Remote peer vanished witherror: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Nov 15 20:31:59 linux-dxsi org.gtk.vfs.Daemon[1213]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Nov 15 20:31:59 linux-dxsi ca.desrt.dconf[1213]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Nov 15 20:31:59 linux-dxsi org.gtk.Private.GoaVolumeMonitor[1213]: g_dbus_connection_real_closed: Remote peer vanished with error: 取回郵件發生錯誤:連線被對方重設 (g-io-error-quark, 0). Exiting.

目前採取  journalctl  搭配  grep 來使用
但是還是不太習慣

但是暫時又不想移除 systemd-logger 然後重新安裝  syslog-ng   (能稱多久呢?)

# zypper   search   systemd-
Loading repository data...
Reading installed packages...

S | Name                              | Summary                                             | Type      
--+-----------------------------------+-----------------------------------------------------+-----------
i | systemd-32bit                     | A System and Session Manager                        | package   
i | systemd-bash-completion           | Bash completion support for systemd                 | package   
  | systemd-devel                     | Development headers for systemd                     | package   
  | systemd-journal-gateway           | Gateway for serving journal events over the netwo-> | package   
i | systemd-logger                    | Journal only logging                                | package  


先記下來吧
看來要找時間去 man 一下相關資訊了
# man  journald.conf

# ls  /etc/systemd/
bootchart.conf  journald.conf  logind.conf  system  system.conf  user  user.conf


~ fun in share