RHEL5.6安裝WebLogic-創(chuàng)新互聯(lián)

Linux版本:RHEL5.6

成都創(chuàng)新互聯(lián)是網(wǎng)站建設(shè)專家,致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營銷,專業(yè)領(lǐng)域包括成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、電商網(wǎng)站制作開發(fā)、微信平臺小程序開發(fā)、微信營銷、系統(tǒng)平臺開發(fā),與其他網(wǎng)站設(shè)計(jì)及系統(tǒng)開發(fā)公司不同,我們的整合解決方案結(jié)合了恒基網(wǎng)絡(luò)品牌建設(shè)經(jīng)驗(yàn)和互聯(lián)網(wǎng)整合營銷的理念,并將策略和執(zhí)行緊密結(jié)合,且不斷評估并優(yōu)化我們的方案,為客戶提供全方位的互聯(lián)網(wǎng)品牌整合方案!

WebLogic版本:10.3.3.0

一、搭建JDK環(huán)境,這里安裝1.6的版本

#mkdir /app/jdk1.6.0_31/ #vi /etc/profile export JAVA_HOME=/app/jdk1.6.0_31 export PATH=$PATH:$JAVA_HOME/bin:$PATH export CLASSPATH=.:$JAVA_HOME/lib.dt.jar:$JAVA_HOME/lib/tools.jar export JRE_HOME=$JAVA_HOME/jre #source /etc/profile #mv jdk-6u31-linux-x64.bin /app #./jdk-6u31-linux-x64.bin # java -version                  #輸出jdk的版本為安裝的版本則表明安裝正確 java version "1.6.0_31" Java(TM) SE Runtime Environment (build 1.6.0_31-b04) Java HotSpot(TM) 64-Bit Server VM (build 20.6-b01, mixed mode)

二安裝WebLogic部分

 1)添加weblogic用戶

# groupadd weblogic # useradd -g weblogic weblogic # passwd weblogic

 2)創(chuàng)建WebLogic的安裝目錄

# mkdir /app/weblogic

 3)這里采用.jar方式來安裝。

#su weblogic $ java -jar wls1033_generic.jar -mode=console Unable to instantiate GUI, defaulting to console mode. Extracting 0%....................................................................................................100% <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Welcome: -------- This installer will guide you through the installation of WebLogic 10.3.3.0.  Type "Next" or enter to proceed to the next prompt.  If you want to change data entered previously, type "Previous".  You may quit the installer at any time by typing "Exit". Enter [Exit][Next]> Next                      #鍵入 "Next" 或按 Enter 鍵繼續(xù)下一個提示 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Middleware Home Directory: ---------------------------------     "Middleware Home" = [Enter new value or use default  "/home/weblogic/Oracle/Middleware"] Enter new Middleware Home OR [Exit][Previous][Next]> /app/weblogic     #選擇WebLogic的安裝路徑 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Middleware Home Directory: ---------------------------------     "Middleware Home" = [/app/weblogic] Use above value or select another option:     1 - Enter new Middleware Home     2 - Change to default [/home/weblogic/Oracle/Middleware] Enter option number to select OR [Exit][Previous][Next]> Next          #這里已經(jīng)確認(rèn)的安裝目錄,直接Next <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Register for Security Updates: ------------------------------ Provide your email address to be informed of security issues, install the product, and initiate configuration manager. http://www.oracle.com/support/policies.html    1|Email:[]    2|My Oracle Support Password:[]    3|Receive Security Update:[Yes] Enter index number to select OR [Exit][Previous][Next]> 3                #出現(xiàn)選則”注冊安全更新”的方式,我們這里選擇3 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Register for Security Updates: ------------------------------ Provide your email address to be informed of security issues, install the product, and initiate configuration manager. http://www.oracle.com/support/policies.html     "Receive Security Update:" = [Enter new value or use default "Yes"] Enter [Yes][No]? No                                                      #此時更改接收更新的方式,輸入“No”回車 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Register for Security Updates: ------------------------------ Provide your email address to be informed of security issues, install the product, and initiate configuration manager. http://www.oracle.com/support/policies.html     "Receive Security Update:" = [Enter new value or use default "Yes"]     ** Do you wish to bypass initiation of the configuration manager and     **  remain uninformed of critical security issues in your configuration? Enter [Yes][No]? Yes                                                      #輸入Yes來確認(rèn)我們的選擇 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Register for Security Updates: ------------------------------ Provide your email address to be informed of security issues, install the product, and initiate configuration manager. http://www.oracle.com/support/policies.html    1|Email:[]    2|My Oracle Support Password:[]    3|Receive Security Update:[No] Enter index number to select OR [Exit][Previous][Next]> Next                #這里直接Next                <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Install Type: -------------------- Select the type of installation you wish to perform.   ->1|Typical                                                       |  Install the following product(s) and component(s):     | - WebLogic Server     | - Oracle Coherence    2|Custom     |  Choose software products and components to install and perform optional      |configuration. Enter index number to select OR [Exit][Previous][Next]> 1                    #選擇安裝類型:1是典型的,2是定制。我們這里選擇1 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> JDK Selection (Any * indicates Oracle Supplied VM): --------------------------------------------------- JDK(s) chosen for use with this product installation will be installed. Supported defaults if not deselected will be used in script string-substitution.    1|Add Local Jdk    2|/app/jdk1.6.0_31/jdk1.6.0_31[x]    *Estimated size of installation:  727.6 MB Enter 1 to add or >= 2 to toggle selection  OR [Exit][Previous][Next]> 2    #這里選擇jdk的安裝路徑,我們選擇本地jdk。 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> JDK Selection (Any * indicates Oracle Supplied VM): --------------------------------------------------- JDK(s) chosen for use with this product installation will be installed. Supported defaults if not deselected will be used in script string-substitution.    1|Add Local Jdk    2|/app/jdk1.6.0_31/jdk1.6.0_31[ ]     ** Please select appropriate JDK. Enter 1 to add or >= 2 to toggle selection  OR [Exit][Previous][Next]> 2 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> JDK Selection (Any * indicates Oracle Supplied VM): --------------------------------------------------- JDK(s) chosen for use with this product installation will be installed. Supported defaults if not deselected will be used in script string-substitution.    1|Add Local Jdk    2|/app/jdk1.6.0_31/jdk1.6.0_31[x]    *Estimated size of installation:  727.6 MB Enter 1 to add or >= 2 to toggle selection  OR [Exit][Previous][Next]>  <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Product Installation Directories: ---------------------------------------- Middleware Home Directory: [/app/weblogic] Product Installation Directories:    1|WebLogic Server: [/app/weblogic/wlserver_10.3]    2|Oracle Coherence: [/app/weblogic/coherence_3.5] Enter index number to select OR [Exit][Previous][Next]> 1 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Product Installation Directories: ----------------------------------------     "WebLogic Server" = [Enter new value or use default  "/app/weblogic/wlserver_10.3"] Enter new WebLogic Server OR [Exit][Previous][Next]> next <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Product Installation Directories: ---------------------------------------- Middleware Home Directory: [/app/weblogic] Product Installation Directories:    1|WebLogic Server: [/app/weblogic/wlserver_10.3]    2|Oracle Coherence: [/app/weblogic/coherence_3.5] Enter index number to select OR [Exit][Previous][Next]> 1 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Product Installation Directories: ---------------------------------------- Middleware Home Directory: [/app/weblogic] Product Installation Directories:    1|WebLogic Server: [/app/weblogic/wlserver_10.3]    2|Oracle Coherence: [/app/weblogic/coherence_3.5] Enter index number to select OR [Exit][Previous][Next]> 1 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Choose Product Installation Directories: ---------------------------------------- Middleware Home Directory: [/app/weblogic] Product Installation Directories:    1|WebLogic Server: [/app/weblogic/wlserver_10.3]    2|Oracle Coherence: [/app/weblogic/coherence_3.5] Enter index number to select OR [Exit][Previous][Next]> Next <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> The following Products and JDKs will be installed: --------------------------------------------------     WebLogic Platform 10.3.3.0     |_____WebLogic Server     |    |_____Core Application Server     |    |_____Administration Console     |    |_____Configuration Wizard and Upgrade Framework     |    |_____Web 2.0 HTTP Pub-Sub Server     |    |_____WebLogic SCA     |    |_____WebLogic JDBC Drivers     |    |_____Third Party JDBC Drivers     |    |_____WebLogic Server Clients     |    |_____WebLogic Web Server Plugins     |    |_____UDDI and Xquery Support     |    |_____Evaluation Database     |_____Oracle Coherence          |_____Coherence Product Files     *Estimated size of installation: 727.7 MB Enter [Exit][Previous][Next]> Next Nov 13, 2014 4:36:56 PM java.util.prefs.FileSystemPreferences$2 run INFO: Created user preferences directory. <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Installing files.. 0%          25%          50%          75%          100% [------------|------------|------------|------------] [***************************************************] Performing String Substitutions...  <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Configuring OCM... 0%          25%          50%          75%          100% [------------|------------|------------|------------] [***************************************************] Creating Domains... <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Installation Complete Congratulations! Installation is complete. Press [Enter] to continue or type [Exit]> 回車 <-------------------- Oracle Installer - WebLogic 10.3.3.0 -------------------> Clean up process in progress ...              #到這里則表示安裝成功 [weblogic@eshopmn weblogic]$

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

新聞標(biāo)題:RHEL5.6安裝WebLogic-創(chuàng)新互聯(lián)
URL標(biāo)題:http://muchs.cn/article32/djihpc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導(dǎo)航、App開發(fā)、網(wǎng)站維護(hù)品牌網(wǎng)站設(shè)計(jì)、全網(wǎng)營銷推廣定制開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)