<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 53, 文章 - 0, 評論 - 3, 引用 - 0
    數據加載中……

    2011年2月11日

    java.sql.BatchUpdateException: IO Error: Connection reset

    during analysis of "IO Error: Connection reset", many articles mentioned that it could be caused by java security code (accessing /dev/random) used in JDBC connection. However it is not the root cause in my case. In my environment, Java already use /dev/urandom. 1. $JAVA_HOME/jre/lib/security/java.security securerandom.source=file:/dev/./urandom 2. check with strace. only -Djava.security.egd=file:/dev/../dev/urandom will trigger system call (read on /dev/urandom) all other other path format like below are OK. -Djava.security.egd=file:/dev/./urandom -Djava.security.egd=file:///dev/urandom 3. Keep checking the retropy size, I have never seen it is exhaused. while [ 1 ]; do cat /proc/sys/kernel/random/entropy_avail sleep 1 done usually the avail is in the range from 1000 to 3000. so far, there is no clue about the root cause of "IO Error: Connection reset".

    posted @ 2017-02-20 09:28 InPractice 閱讀(1301) | 評論 (0)編輯 收藏

    Lessons learned - Oracle GI and Database Installation on SUSE 12

    I encountered many issue during installation of Oracle Grid Infrastructure(GI) and Database; with the help of ariticle and documents found through Google search engine, I finally made it. for records, here is the details issues encountered and solutions applied. Major issues were encountered during GI installation. Pre-installation tasks. Issue 1: swapspace is not big enough; (1.3.1 Verify System Requirements) grep MemTotal /proc/meminfo 264G grep SwapTotal /proc/meminfo 2G during OS installation, I take default option and swap space is only 2G. Oracle recommend to have more than 16G swap space in case of more that 32G RAM. dd if=/dev/zero of=/home/swapfile bs=1024 count=33554432 33554432+0 records in 33554432+0 records out 34359738368 bytes (34 GB) copied mkswap /home/swapfile mkswap /home/swapfile chmod 0600 /home/swapfile lessons learned: setup swap space properly according to DB requirement when installing OS. Issue 2: cannot find oracleasm-kmp-default from Oracle site. (1.3.6 Prepare Storage for Oracle Automatic Storage Management) install oracleasmlib and oracleasm-support is easy, just download them from Oracle and install them; Originally oracleasm kernel is provided by Oracle, but now I cannot find it from Oracle; finally I realized that oracleasm kernel is now provided by OS vendor; In my case, it should be installed from SUSE disk; a. to get its name oracleasm-kmp-default zypper se oracle b. map dvd and install zypper in oracleasm-kmp-default rpm -qa|grep oracleasm oracleasm-kmp-default-2.0.8_k3.12.49_11-3.20.x86_64 oracleasm-support-2.1.8-1.SLE12.x86_64 oracleasmlib-2.0.12-1.SLE12.x86_64 asm configure -i asm createdisk DATA /dev/<...> asm listdisks --DATA ls /dev/oracleasm/disks Installation tasks: Issue 3: always failed due to user equivalence check after starting installer OUI with user oracle. however if I manully check with runcluvfy, no issue found at all. ./runcluvfy.sh stage -pre crsinst -n , -verbose I worked around it by using another user to replace user oracle. but it triggered next issue. Issue 4: cannot see ASM disks in OUI. no matter how I change the disk dicovery path. the disk list is empty. but I can find disk manully. /usr/sbin/oracleasm-discover 'ORCL:*' Discovered disk: ORCL:DATA Root cause is that the ASM is configured and created with user oracle. and I aming installing GI with different user other than oracle; so I cannot see the Disk created. change owner of disk device file solved the issue. ls /dev/oracleasm/disks chown /dev/oracleasm/disks -R Issue 5: root.sh execution failed. Failed to create keys in the OLR, rc = 127, Message: clscfg.bin: error while loading shared libraries: libcap.so.1: cannot open shared object file: No such file or directory fixed the issue with command below: zypper in libcap1 ohasd failed to start Failed to start the Clusterware. Last 20 lines of the alert log follow: 2016-07-24 23:10:28.502: [client(1119)]CRS-2101:The OLR was formatted using version 3. I found a good document from SUSE, Oracle RAC 11.2.0.4.0 on SUSE Linux Enterprise Server 12 - x86_64, it make it clear that SUSE 12 is supported by Oracle GI 11.2.0.4, it also mentioned Patch 18370031. "During the Oracle Grid Infrastructure installation, you must apply patch 18370031 before configuring the software that is installed. " The patch 18370031 is actually mentioned in "Oracle quick installation guide on Linux", but not mentioned in "Oracle quick installation guide on Linux". I majored followed up with later one and missed Patch 18370031. issue disappeared after I installed the patch 18370031. ./OPatch/opatch napply -oh -local /18370031 Errors in file : ORA-27091: unable to queue I/O ORA-15081: failed to submit an I/O operation to a disk ORA-06512: at line 4 solved by change owner of disk DATA related file ls -l /dev/oracleasm/iid chown on folder /dev/oracleasm/iid and some .* hidden file. Issue during DB installation Issue 6: report error: in invoking target 'agent nmhs' vi $ORACLE_HOME/sysman/lib/ins_emagent.mk Search for the line $(MK_EMAGENT_NMECTL) Change it to: $(MK_EMAGENT_NMECTL) -lnnz11 refer to https://community.oracle.com/thread/1093616?tstart=0

    posted @ 2016-07-28 16:55 InPractice 閱讀(257) | 評論 (0)編輯 收藏

    卸載Ubuntu需要注意的地方

    很多年前裝了UbuntuWindows的雙系統,最近因為有了專門的電腦來裝Ubuntu,所以把原先電腦上的Ubuntu卸載了,結果系統不能引導了。因為GRUB的原理是控制權從MBRUbuntu系統盤,然后Ubuntu系統盤再提供對windows的引導。現在Ubuntu系統被卸載了。這個啟動的鏈條也就斷了。

    這個問題本身不難解決,借了一個
    Windows安裝盤,恢復一下MBR即可。但是這個需要windows系統的Administrator密碼。而我的系統不是我裝的,我根本不知道這個密碼。

    有的帖子提到破解
    Administrator密碼,試了一下,覺得太麻煩了。因為電腦上有數據,也不能重裝。 

    最后的解決方案是在原先的
    Ubuntu分區上安裝一個新的Windows。這樣變成了windows的雙系統。安裝完重啟之后可以進入任何一個系統(新的或者舊的Windows)。安裝的過程中MBR被自動更新了。再下來就改一下老系統的Administrator密碼,刪除掉多于的Windows新系統即可。

    posted @ 2011-04-11 18:19 InPractice 閱讀(639) | 評論 (1)編輯 收藏

    使用GMail的困惑

    用Gmail的時候不小心點了"存檔"按鈕,一封重要的郵件就此消失了好幾天,今天才機緣巧合找到。

    在網絡上查到的解釋是:
            存檔會將郵件從收件箱移至所有郵件,這樣您不必刪除郵件就可以整理收件箱。

    難以理解,坦率地說,這個功能對我來說是徒增煩惱。看來任何工具都需要你去適應,磨合。

    posted @ 2011-02-11 11:02 InPractice 閱讀(244) | 評論 (0)編輯 收藏

    主站蜘蛛池模板: 中文字幕在线免费观看| 亚洲国产免费综合| 久久久无码精品亚洲日韩蜜桃| 亚洲av无码乱码国产精品fc2| 亚洲一级二级三级不卡| 中文无码成人免费视频在线观看| 国产亚洲精品久久久久秋霞| 亚洲av专区无码观看精品天堂| 69免费视频大片| 亚洲春黄在线观看| 一级做a爰片久久毛片免费看 | 国产成人免费全部网站| 亚洲国产精品无码专区在线观看| 亚洲欧美乱色情图片| 韩国免费三片在线视频| 黄页视频在线观看免费| 在线永久免费的视频草莓| 亚洲精品无码99在线观看| 亚洲国产av美女网站| 日批视频网址免费观看| 日韩视频在线免费| 福利片免费一区二区三区| 国产情侣激情在线视频免费看| 狠狠综合久久综合88亚洲| 中文在线观看永久免费| 亚洲成AV人在线观看网址| 久久性生大片免费观看性| 久久夜色精品国产噜噜噜亚洲AV| 人妻无码一区二区三区免费| 久久精品亚洲男人的天堂| 国产成人久久AV免费| 亚洲神级电影国语版| 免费一级国产生活片| 野花香在线视频免费观看大全| 亚洲成人黄色网址| 亚洲另类少妇17p| 永久免费视频网站在线观看| 美女无遮挡免费视频网站| 亚洲av永久无码精品秋霞电影影院| 人禽杂交18禁网站免费| 久久精品7亚洲午夜a|