weblogic安裝
1. 安裝jdk
# 配置環(huán)境變量
vim /etc/profile
# JAVA_HOME,jdk解壓后路徑
export JAVA_HOME=/opt/jdk1.8.0_291
export PATH=$PATH:$JAVA_HOME/bin
# 使配置的環(huán)境變量生效
source /etc/profile
2. 創(chuàng)建用戶
# 創(chuàng)建目錄
/home/weblogic
# 創(chuàng)建組
groupadd weblogic
# 創(chuàng)建用戶
useradd -g weblogic -d /home/weblogic/ weblogic
# 設置密碼
passwd weblogic
3. 上傳安裝包
4. 更改目錄擁有者
chown -R weblogic:weblogic /home/weblogic/
5. 安裝包賦予可執(zhí)行權限
chmod 700 安裝包
6. 開始安裝
# 切換用戶
su weblogic
# 安裝
java -jar wls1036_generic.jar -mode=console
# 歡迎界面 回車繼續(xù)、exit退出安裝
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Welcome:
--------
This installer will guide you through the installation of WebLogic 10.3.6.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]>
# 選擇安裝目錄 1.輸入新的目錄 2.默認路徑
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Choose Middleware Home Directory:
---------------------------------
"Middleware Home" = [/home/weblogic/Oracle/Middleware]
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]> /home/weblogic
# 1.修改新目錄,2.修改到默認路徑,直接回車就行
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Choose Middleware Home Directory:
---------------------------------
"Middleware Home" = [/home/weblogic/Oracle/Middleware]
Use above value or select another option:
1 - Enter new Middleware Home
2 - Change to default [/home/weblogic//Oracle/Middleware]
** Invalid input, only integer selection or page movement command are
** accepted: ["/home/weblogic"]
Enter option number to select OR [Exit][Previous][Next]>
# 是否注冊一些更新 選擇3 在選擇No,再Yes后,第三條Yes會變成No,再回車
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Register for Security Updates:
------------------------------
Provide your email address for security updates and to initiate configuration manager.
1|Email:[]
2|Support Password:[]
3|Receive Security Update:[Yes]
Enter index number to select OR [Exit][Previous][Next]>
# 安裝方式,1.典型安裝 2.自定義安裝 選擇2
<-------------------- Oracle Installer - WebLogic 10.3.6.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]> 2
# 選擇需要安裝的組件,這里默認不選 直接回車
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Choose Products and Components:
-------------------------------
Release 10.3.6.0
|_____WebLogic Server [1] x
| |_____Core Application Server [1.1] x
| |_____Administration Console [1.2] x
| |_____Configuration Wizard and Upgrade Framework [1.3] x
| |_____Web 2.0 HTTP Pub-Sub Server [1.4] x
| |_____WebLogic SCA [1.5] x
| |_____WebLogic JDBC Drivers [1.6] x
| |_____Third Party JDBC Drivers [1.7] x
| |_____WebLogic Server Clients [1.8] x
| |_____WebLogic Web Server Plugins [1.9] x
| |_____UDDI and Xquery Support [1.10] x
| |_____Server Examples [1.11]
| |_____Evaluation Database [1.12] x
|_____Oracle Coherence [2] x
|_____Coherence Product Files [2.1] x
|_____Coherence Examples [2.2]
*Estimated size of installation: 690.2 MB
Enter number exactly as it appears in brackets to toggle selection OR [Exit][Previous][Next]>
# 選擇安裝的jdk,直接回車
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
JDK Selection (Any * indicates Oracle Supplied VM):
---------------------------------------------------
JDK(s) chosen will be installed. Defaults will be used in script string-substitution if installed.
1|Add Local Jdk
2|/opt/jdk1.8.0_291[x]
*Estimated size of installation: 690.2 MB
Enter 1 to add or >= 2 to toggle selection OR [Exit][Previous][Next]>
# 兩個組件和組件的安裝目錄,直接回車
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Choose Product Installation Directories:
----------------------------------------
Middleware Home Directory: [/home/weblogic/Oracle/Middleware]
Product Installation Directories:
1|WebLogic Server: [/home/weblogic/Oracle/Middleware/wlserver_10.3]
2|Oracle Coherence: [/home/weblogic/Oracle/Middleware/coherence_3.7]
Enter index number to select OR [Exit][Previous][Next]>
# 接下來這些組件會進行安裝,直接回車
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
The following Products and JDKs will be installed:
--------------------------------------------------
WebLogic Platform 10.3.6.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: 690.3 MB
Enter [Exit][Previous][Next]>
# 安裝完成
<-------------------- Oracle Installer - WebLogic 10.3.6.0 ------------------->
Installation Complete
Congratulations! Installation is complete.
Press [Enter] to continue or type [Exit]>
問題
問題1: 切換weblogic用戶出現(xiàn) -bash-4.2$
原因是在用useradd添加普通用戶時,有時會丟失家目錄下的環(huán)境變量文件,丟失文件如下
cp /etc/skel/.bashrc /home/weblogic
cp /etc/skel/.bash_profile /home/weblogic
問題2: 先更改目錄擁有者后上傳weblogic安裝包,上傳的安裝包擁有者還是root
解決:再修改一遍擁有者,或者先上傳安裝包,再修改目錄擁有者
chown -R weblogic:weblogic /home/weblogic/

浙公網(wǎng)安備 33010602011771號