費盡千辛萬苦在 redhat 6上灌好oracle 11g r2後。
下了指令要來開啟管理網頁
$ emctl status dbconsole
結果出現了一堆錯誤,主要的內容如下
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LC_ALL = "unset",
LC__FASTMSG = "true",
LANG = "US"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
原來是要設定一個環境變數
在 ~/.bash_profile 檔案裡加一段
export LC_ALL=C
問題就決解了。