weblogic中间件集群分享(三)之weblogic软件安装

操作系统:redhat6.4(64位)

JDK:jdk1.7.0_45.tar

weblogic:wls1033_generic.jar


本次搭建使用的虚拟机,由于内存有限:我搭建的是同一台服务器,1个管理节点,2个被管理节点




一、关闭selinux和防火墙

service iptables stop        //关闭防火墙

setenforce 0               //临时关闭selinux

vi /etc/selinux/config   //永久关闭,要重启

将SELINUX=enforcing改为SELINUX=disabled

二、创建普通用户管理weblogic

groupadd app

mkdir /app

useradd -d /app/sinova -g app sinova

echo "sinova" | passwd --stdin sinova

三、安装JDK

1、解压、移动到/app/sinova/

tar fxjdk1.7.0_45.tar

mv  jdk1.7.0_45 /app/sinova/

2、配置JDK【声明环境变量】

vi .bash_profile

# .bash_profile

# Get the aliasesand functions

if [ -f~/.bashrc ]; then

. ~/.bashrc

fi

# User specificenvironment and startup programs

JAVA_HOME=/app/sinova/jdk1.7.0_45

PATH=${JAVA_HOME}/bin:$PATH:$HOME/bin

export PATHJAVA_HOME

3、测试效果

执行:java-version

显示:

java version"1.7.0_45"

Java(TM) SERuntime Environment (build 1.7.0_45-b18)

JavaHotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)

四、修改打开文件最大个数、最大进程数【root用户操作】

1、编辑  vi /etc/security/limits.conf

*      soft   nofile  65535

*      hard   nofile  65535

sinova soft nproc 65535

sinova hard nproc 65535

2、校验

ulimit -a

五、修改  /etc/hosts 【追加上本机具体IP127.0.0.1  对应本机主机名】

127.0.0.1          weblogic

192.168.101.166   weblogic

六、安装weblogic软件sinova用户安装目录 /app/sinova/oracle

********开始安装*********

java -jar wls1033_generic.jar

Extracting 0%............................100% 【解压缩、提取文件】

Enter [Exit][Next]> 回车【默认就是Next】

Enter new Middleware Home OR [Exit][Previous][Next]>/app/sinova/oracle 【重新定义安装目录】

"MiddlewareHome" = [/u02/weblogic]

Use above value or select another option:

1 - Enter newMiddleware Home

2 - Change todefault [/u02/weblogic/Oracle/Middleware]

Enter option number to select OR [Exit][Previous][Next]> 回车【重新定义安装目录完毕,直接回车】

Warning

/u02/weblogic directory is not empty. Proceed withinstallation?

Enter [Exit][Previous][Next]> 回车【警告忽略】

Provide your email address for security updates and  to initiate configuration manager.

1|Email:[]

2|SupportPassword:[]

3|Receive SecurityUpdate:[Yes]

Enter index number to select OR [Exit][Previous][Next]> 3 【修改第3项,安全更新】

Provide your email address for security updates and  to initiate configuration manager.

"Receive Security Update:" = [Enternew value or use default "Yes"]

Enter [Yes][No]? No 【不接受,安全更新】

** Do you wish tobypass initiation of the configuration manager and

**  remain uninformed of critical security issuesin your configuration?

Enter [Yes][No]? Yes【确认上面的操作】

1|Email:[]

2|SupportPassword:[]

3|Receive SecurityUpdate:[No]

Enter index number to select OR [Exit][Previous][Next]> 回车【上面操作的回显,直接回车】

Select the type of installation you wish to perform.

->1|Typical

|  Install the following product(s) andcomponent(s):

| - WebLogic Server

| - OracleCoherence

| - OracleEnterprise Pack for Eclipse

2|Custom

|  Choose software products and components toinstall and perform optional

|configuration.

Enter index number to select OR [Exit][Previous][Next]> 直接回车  第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 beinstalled. Supported defaults if not deselected will be used in scriptstring-substitution.

1|Add Local Jdk

2|/app/sinova/jdk1.7.0_45[x]

*Estimated size ofinstallation:  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/sinova/Oracle]

Product Installation Directories:

1|WebLogic Server:[/app/sinova/Oracle/wlserver_10.3]

2|Oracle Coherence:[/app/sinova/Oracle/coherence_3.5]

Enter index number to select OR [Exit][Previous][Next]> 直接回车

<-------------------- Oracle Installer - WebLogic 10.3.3.0------------------->

The following Products and JDKs will be installed:

--------------------------------------------------

WebLogic Platform10.3.3.0

|_____WebLogicServer

|    |_____Core Application Server

|    |_____Administration Console

|    |_____Configuration Wizard and UpgradeFramework

|    |_____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

|_____OracleCoherence

|_____Coherence Product Files

*Estimated size ofinstallation: 727.7 MB

Enter [Exit][Previous][Next]> 直接回车

Enter [Exit][Previous][Next]>

Feb 14, 2015 3:32:30 AMjava.util.prefs.FileSystemPreferences$1 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]> exit【安装完毕,退出】

<-------------------- Oracle Installer - WebLogic 10.3.3.0------------------->

Clean up process in progress ...

时间: 2024-11-01 15:53:30

weblogic中间件集群分享(三)之weblogic软件安装的相关文章

weblogic中间件集群分享(六)之weblogic创建被管理节点

一.登录控制台 http://192.168.101.166:7001/console 用户:  weblogic  密码:  weblogic010 二.创建集群 点击"锁定并编辑",接下来可新建服务器或集群. 点击"新建" 点击"下一步" 节点2创建方法和节点1一样 状态为"unknown",这是因为还没启动节点. 点击"激活更改"保存配置. 三.被管理服务器----密码认证 cd /app/sinov

weblogic中间件集群分享(五)之weblogic启动管理节点

一.管理服务器----认证管理 [[email protected] ~]$ cd/app/sinova/domains/base_domain/servers/AdminServer [[email protected] AdminServer]$ mkdir security [[email protected] AdminServer]$ cd security/ [[email protected] security]$ vi boot.properties username=weblo

weblogic中间件集群分享(四)之weblogic创建域

[[email protected] ~]$ cd/app/sinova/Oracle/wlserver_10.3/common/bin [[email protected] bin]$ ./config.sh Unable to instantiate GUI, defaulting to console mode. <------------------- Fusion Middleware ConfigurationWizard ------------------> Welcome:

weblogic中间件集群分享(二)之weblogic服务器分布架构图【点击后大图】

一.单台服务器规划 二.多台服务器规划1 三.多台服务器规划2

weblogic中间件集群分享(七)之weblogic部署应用【点击大图显示】

1.  新建应用目录: [[email protected]~]$ cd /app/sinova/ [[email protected]~]$ mkdir application 2.  上传应用至application目录并解压 3.  将解压后的应用同步至其它节点 4.  控制台上部署应用:

weblogic中间件集群分享(一)之互联网一般架构图

weblogic的集群与配置

目录(?)[-] 1.Weblogic的集群 2.创建Weblogic集群前的规划 3.开始创建我们的Weblogic集群 1.1 创建集群的总控制端aminserver 2.2 创建集群中的节点mycluster1 mycluster2 3.3 如何启动集群 4.jdbc集群 5.把工程布署到集群环境中去 6.使用Apache与Weblogic集群整合 7.JMS集群 本文转摘于:http://blog.csdn.net/liuqiwen0512/article/details/7739421

Weblogic的集群

<收藏自http://www.cnblogs.com/HondaHsu/p/4267972.html> 一.Weblogic的集群 还记得我们在第五天教程中讲到的关于Tomcat的集群吗? 两个tomcat做node即tomcat1, tomcat2,使用Apache HttpServer做请求派发. 现在看看WebLogic的集群吧,其实也差不多. 区别在于: Tomcat的集群的实现为两个物理上不同的tomcat,分别就是两个node,没有总控端,没有任何控制台可言(只有通过比较简陋的ht

Weblogic 12c 集群环境搭建

注:本文来源为:<Weblogic 12c 集群环境搭建> 一:环境说明 本文是在windows7操作系统下配置的,jdk版本1.8 ,weblogic版本12.1.3.0.0. 二:搭建集群前的规划 其中AdminServer是总控制端,server1.server2.server3是集群中的三个服务节点. 其中Adminserver也叫做管理服务器,server1-3叫做托管服务器. 三:环境搭建 1.创建管理服务器AdminServer. AdminServer作为weblogic集群的