PIXNET Logo登入

DanBrother的部落格

跳到主文

歡迎光臨DanBrother在痞客邦的小天地. 部落格文章同步於=> http://blog.xuite.net/gem083/dba

部落格全站分類:數位生活

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 9月 15 週二 201511:56
  • Oracle HTTP Server 12c (12.1.3) standalone installation Procedures on Linux

Oracle_HTTP_Server_12c_Inst_1.jpg
Oracle HTTP Server 12c (12.1.3) standalone installation Procedures on Linux
 
Assume oracle user has been added with group dba.

[oracle@ Danbrother ~]$ cat /etc/security/limits.conf
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(137)

  • 個人分類:Oracle HTTP Server
▲top
  • 11月 12 週三 201418:07
  • Oracle HTTP Server - Restart Service (10g & 11g Linux)

# For existing ias components (10g)
cd /u01/oracle/product/10.2.0/ohs/opmn/bin
./opmnctl stopall && opmnctl startall
./opmnctl status -l
>>
Processes in Instance: standalone
-------------------+--------------------+---------+---------
ias-component      | process-type       |     pid | status
-------------------+--------------------+---------+---------
HTTP_Server        | HTTP_Server        |   29294 | Alive
LogLoader          | logloaderd         |     N/A | Down
dcm-daemon         | dcm-daemon         |     N/A | Down
# For HTTP_Server process-type (10g)
/u01/oracle/product/10.2.0/ohs/opmn/bin/opmnctl restartproc process-type=HTTP_Server


------------------------------------------------------------------------------------------------------------------
# For existing ias components (11g)
cd  /u01/Middleware/asinst_1/bin
./opmnctl stopall && opmnctl startall
# For OHS  process-type (11g)
 /u01/Middleware/asinst_1/bin/opmnctl restartproc process-type=OHS


 
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(25)

  • 個人分類:Oracle HTTP Server
▲top
  • 4月 09 週二 201318:52
  • [OHS-2171] NZ Library Error: SSL negotiation error [Hint: too restrictive SSLCipherSuite]

Issue:
[OHS] [INCIDENT_ERROR:32] [OHS-2171] [http_core.c]  NZ Library Error: SSL negotiation error [Hint: too restrictive SSLCipherSuite]
Solution:
Keep the HTTP Listen Port enabled by configuring it to only work against a loopback IP address, which cannot be accessed outside the local machine.
1.Update $ORACLE_INSTANCE/config/OHS/ohs1/httpd.conf
# Add HTTP Listen Port (unused) on loopback address.
e.g.
Listen 127.0.0.1:9999
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(3,653)

  • 個人分類:Oracle HTTP Server
▲top
  • 3月 27 週三 201314:53
  • Oracle11g HTTP Server Installation Procedure (On Linux)

weblogic_1
Oracle11g HTTP Server Installation Procedure (On Linux)
1. Download & Install Java SE Development Kit 6u37 :  
http://download.oracle.com/otn-pub/java/jdk/6u37-b06/jdk-6u37-linux-x64-rpm.bin
Also download & Install Java SE Runtime Environment 6 Update 37:  
http://download.oracle.com/otn-pub/java/jdk/6u37-b06/jre-6u37-linux-x64-rpm.bin
 
-- Check Java Version
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(104)

  • 個人分類:Oracle HTTP Server
▲top
  • 3月 10 週四 201118:23
  • Oracle11g HTTP Server Stand-Alone Installation (On Windows Server 2008 x64)


For the pure Oracle 11g HTTP Server Installation, it's possoble!
Here are the steps:
1.  Download and Install Weblogic Server
     a. run c:\download\wls1032_win32.exe
2.  Download Portal, Forms, Reports and Discoverer (11.1.1.2.0) which constains HTTP  
      Server and Enterprise Manager Fusion Middleware Control that are required.
     a. Copy Disk2, Disk3, and Disk4 Into the same folder of Disk1
     b. run c:\download\ofm_pfrd_win_11.1.1.2.0_32_disk1_1of1\Disk1\install\win32
         \setup.exe
     c.  Check All Installation options except Portal, Forms and Discoverer
     d. Ignore the error of "Creating ASInstance" and Cancel the Installation directly.
3. Download Web-Tier Utilities:
     a. run c:\download\ofm_webtier_win_1.1.2.0_32_disk1_1of1\Disk\install\win32
          \setup.exe  
    b. weblogic port is 7001 by default
     
4. Go to http://127.0.0.1:7001/em to logon to Oracle Enterprise Manager 11g Fusion Middleware Control with the login account of "weblogic"
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(22)

  • 個人分類:Oracle HTTP Server
▲top
  • 2月 14 週一 201118:03
  • Oracle HTTP Server - Obfuscate DAD password (11g Windows)

1. Go to the Oracle Fusion Middle Home Directory with the subdirectory of "bin"
    e.g.  cd c:\oracle\Middleware\Oracle_WT1\bin
2. set ORACLE_HOME=c:\oracle\Middleware
 
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(71)

  • 個人分類:Oracle HTTP Server
▲top
  • 6月 15 週二 201017:20
  • Oracle 10g HTTP Server: Solving "Permission denied: make_sock: could not bind to port 80"

There is a trick that httpd port under 1024 need to run as root initially. (e.g. port=80)
Here's the configuration steps:
1.  #switch to root user by:
     su -
2.  export ORACLE_HOME=/u01/oracle/product/10.2.0/ohs
      cd $ORACLE_HOME/Apache/bin
3.  # Change the .apachectl file owner to root
     #  (be careful for the "." which is a hidden file)
       chown root .apachectl  
4.  chmod 6750 .apachectl
5. Verify the file permission:
      ls -al .apachectl
       -rwsr-s--- 1 root oinstall 18591 Dec 20  2004 .apachectl
6.  Restart OHS:
      su - oracle
     cd /u01/oracle/product/10.2.0/ohs/opmn/bin
     ./opmnctl stopall
     ./opmnctl startall
     
 
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(15)

  • 個人分類:Oracle HTTP Server
▲top
  • 3月 31 週三 201011:22
  • Oracle HTTP Server - Obfuscate DAD password (10g Linux)

export ORACLE_HOME=/u01/oracle/product/10.2.0/ohs
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
export PERL5LIB=$ORACLE_HOME/perl/lib/5.6.1
export PATH=$ORACLE_HOME/Apache/modplsql/conf:$ORACLE_HOME/perl/bin:$PATH
cd $ORACLE_HOME/Apache/modplsql/conf
perl dadTool.pl -o
cat dads.conf
>>
  SetHandler pls_handler
  Order deny,allow
  Allow from all
  AllowOverride None
  PlsqlDatabaseUsername         scott
    PlsqlDatabasePassword          @BeKLnrm2uGAwF4GU5kKIoAQ=
  PlsqlDatabaseConnectString    testdb
  PlsqlAuthenticationMode       Basic
  PlsqlDefaultPage              home
  PlsqlDocumentTablename        wwdoc_document
  PlsqlDocumentPath             docs
  PlsqlDocumentProcedure        wwdoc_process.process_download
  PlsqlNlsLanguage              "TRADITIONAL CHINESE_TAIWAN.ZHT16MSWIN950"
(繼續閱讀...)
文章標籤

DanBrother 發表在 痞客邦 留言(0) 人氣(9)

  • 個人分類:Oracle HTTP Server
▲top
1

廣告

個人資訊

DanBrother
暱稱:
DanBrother
分類:
數位生活
好友:
累積中
地區:

熱門文章

  • (58,074)祝福禱告文-為工作祝福
  • (49,259)Excel 2007 中文字顯示亂碼之修復步驟
  • (2,928)ORA-24247: 存取控制清單 (ACL) 拒絕網路存取
  • (626)OSQL公用程式的使用方法
  • (597)Outlook 2007 自訂信箋
  • (136)crsctl command usage
  • (60)Reload multipath.conf
  • (16)Re-Installation Issue: you do not have sufficient permissions to access the inventory
  • (15)DB_FILE_MULTIBLOCK_READ_COUNT
  • (12)ERROR-Agent is blocked. Blocked reason is: Agent is out-of-sync with repository

文章分類

  • Android (1)
  • Java (1)
  • MongoDB (1)
  • MariaDB (7)
  • Python (10)
  • HTML (1)
  • ORDS (1)
  • Apache Tomcat (1)
  • Oracle Streams (1)
  • Javascript (1)
  • Oracle Data Guard (2)
  • Oracle VirtualBox (3)
  • Grid Infrastructure (4)
  • Oracle SQL Tuning (6)
  • OEM11g / 12c (28)
  • IT Links (1)
  • 心靈饗宴 (161)
  • Oracle Clusterware (5)
  • ORACLE RAC (21)
  • Oracle ASM (18)
  • Oracle Export/Import (10)
  • MySQL (22)
  • Windows Series (18)
  • Oracle HTTP Server (8)
  • Linux (49)
  • Microsoft Office (6)
  • SQL SERVER (19)
  • Install Apache & PHP (2)
  • Oracle in General (111)
  • RMAN (15)
  • SQL / PL/SQL (30)
  • 未分類文章 (1)

最新文章

  • MySQL Array Simulation in Stored Procedure
  • Extracts, orders, and then prints grants for MySQL user accounts (pt-show-grants)
  • MySQL Stored Procedure - Nested Loop Example
  • Metabase H2 DB Migration to MySQL 5.7
  • Steps for Upgrading Percona-Toolkit to the Latest Version
  • MySQL Slave - Skip Replication for A Particular Table
  • MySQL - Export & Import Table Data Based on the SQL Query
  • MySQL Table Fragmentation Detection and De-fragmentation Implementation
  • Multiple Log File Viewer (Linux Bash)
  • Solving MySQL slave lag Issues

最新留言

  • [21/08/16] jwang0189 於文章「祝福禱告文-為工作祝福...」留言:
    非常實用的文章,謝謝提供,已點廣告表示支持 https://...
  • [20/04/23] 廣利 於文章「祝福禱告文-為工作祝福...」留言:
    129:8 過路的也不說,願耶和華所賜的福,歸於你們;我們在...
  • [17/10/30] 66國語言翻譯公司 於文章「Download Google Chro...」留言:
    不了走會點中見你隻有果新家而去十走相隻把見作樣 95國...
  • [17/05/06] 50國語言翻譯公司 於文章「Python >>> a, b = b...」留言:
    之的不會然文道果三那大這年來來年物月用理學, 115國...
  • [16/10/13] KK 於文章「How to Change Defaul...」留言:
    感謝您分享的工作禱詞! 真的太感謝了!! 願 平安...
  • [15/08/23] 洪秀柱 於文章「如何在UltraEdit中正常顯示韓文?...」留言:
    此破解法可用於 UEstudio UltraEdit V2...

動態訂閱

文章精選

文章搜尋

誰來我家

參觀人氣

  • 本日人氣:
  • 累積人氣:

留言板