In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article focuses on "installation and configuration of Weblogic Server11G cluster". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn "the installation and configuration of Weblogic Server11G clusters"!
Environment
OS:windows server 2008R2
User:administrator
Pwd:
4 servers, of which 10.104.101.87 is the management server, the other three 10.104.101.88, 10.104.101.89, 10.104.101.90 are managed servers, 4 nodes and 1 management node.
Weblogic and JDK installation and configuration of environment variables.
Configuration management 10.104.101.87 manages the domain and the first node.
Select [create a new Weblogic domain] [next]
Select the first item
Domain name: bswj_domain
Location: C:\ Oracle\ Middleware\ user_projects\ domains
User: weblogic, password: weblogic123
Production mode
JDK:C:\ Java\ jdk1.8.0_231 (choose your own installed JDK)
Check [manage servers] [managed servers, clusters and computers]
Configure the management server:
Name: BswjServer
Address: 10.104.101.87
Port: 9001
Configure 4 managed servers:
Bswj_ManagedServer_1--10.104.101.87--9002
Bswj_ManagedServer_2--10.104.101.88--9002
Bswj_ManagedServer_3--10.104.101.89--9002
Bswj_ManagedServer_4--10.104.101.90--9002
Configure the cluster:
Name: bswj_Cluster messaging: unicast
Assign servers to the cluster and put 4 nodes under the cluster:
-bswj_Cluster
-bswj_ManagedServer_1
-bswj_ManagedServer_2
-bswj_ManagedServer_3
-bswj_ManagedServer_4
Then default to the last [create]
Configuration
Create startAdminServer.cmd content startWebLogic.cmd in bin
Create a startManagedServer.cmd in bin
Content: startManagedWebLogic.cmd bswj_ManagedServer_1 http://10.104.101.87:9001
Under the generated node folder after startup
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ servers\ bswj_ManagedServer_1\ security add the boot.properties password file (content username=weblogic enter password=weblogic123)
After startup, in
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ servers\ BswjServer\ security add the boot.properties password file (content username=weblogic enter password=weblogic123)
Second, configure the managed server 10.104.101.88
Name: bswj_domain
Location: C:\ Oracle\ Middleware\ user_projects\ domains
User: weblogic, password: weblogic123
Development mode DK:C:\ Java\ jdk1.8.0_231
Select [managed servers, clusters and computers]
Configure a managed server: bswj_ManagedServer_2--10.104.101.88--9002
[next] leave it empty by default, and finally [create]
Create startManagedServer.cmd content as startManagedWebLogic.cmd bswj_ManagedServer_2 http://10.104.101.87:9001 under bin
Under the supervisor server path
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ security\ SerializedSystemIni.dat overrides the corresponding path to the managed node (otherwise the startup will report an error. Service servlet encountered an Exception while handling the deploymentdatatransfer message for request id "1572007416873" from server... )
After startup, in
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ servers\ bswj_ManagedServer_2\ security add the boot.properties password file (content username=weblogic enter password=weblogic123)
Configure managed 10.104.101.89 (figure reference Node 2)
Create:
Name: bswj_domain
Location: C:\ Oracle\ Middleware\ user_projects\ domains
User: weblogic, password: weblogic123
Development mode JDK:C:\ Java\ jdk1.8.0_231
Managed server: bswj_ManagedServer_3--10.104.101.89--9002
Create startManagedServer.cmd content as startManagedWebLogic.cmd bswj_ManagedServer_3 http://10.104.101.87:9001 under bin
Under the supervisor server path
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ security\ SerializedSystemIni.dat overrides the corresponding path to the managed node
After startup, in
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ servers\ bswj_ManagedServer_3\ security add the boot.properties password file (content username=weblogic enter password=weblogic123)
Configure managed 10.104.101.90 (figure reference Node 2)
Create:
Name: bswj_domain
Location: C:\ Oracle\ Middleware\ user_projects\ domains
User: weblogic, password: weblogic123
Development mode DK:C:\ Java\ jdk1.8.0_231
Managed server: bswj_ManagedServer_4--10.104.101.90--9002
Create startManagedServer.cmd content as startManagedWebLogic.cmd bswj_ManagedServer_4 http://10.104.101.87:9001 under bin
Under the supervisor server path
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ security\ SerializedSystemIni.dat overrides the corresponding path to the managed node
After startup, in
C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ servers\ bswj_ManagedServer_4\ security add the boot.properties password file (content username=weblogic enter password=weblogic123)
Start
IP:10.104.101.87
Path: C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ bin
Management: startAdminServer.cmd
Managed: startManagedServer.cmd
IP:10.104.101.88
Path: C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ bin
Managed: startManagedServer.cmd
IP:10.104.101.89
Path: C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ bin
Managed: startManagedServer.cmd
IP:10.104.101.90
Path: C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ bin
Managed: startManagedServer.cmd
Configure the weblogic computer
Enter the user name and password into the management console http://10.104.101.87:9001/console/ to [Environment] [computer] [New]
Name: Machine-1
Monitoring address: 10.104.101.87
Server: bswj_ManagedServer_1
Name: Machine-2
Monitoring address: 10.104.101.88
Server: bswj_ManagedServer_2
Name: Machine-3
Monitoring address: 10.104.101.89
Server: bswj_ManagedServer_3
Name: Machine-4
Monitoring address: 10.104.101.90
Server: bswj_ManagedServer_4
Other default activation.
Deployment
Prepare the application package and put it in C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ App
Enter: [environment] [deployment] [installation]
Select the ctims-bswj-biz-1.0-SNAPSHOT package under C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ App. Next, select [bswj_Cluster] and tick next to the final completion.
Enter: [environment] [deployment] [installation]
Select the web-reader package under C:\ Oracle\ Middleware\ user_projects\ domains\ bswj_domain\ App. Next, select [bswj_Cluster] and tick next to the final completion. Activate Chan
Add startup parameter "handshake" command
1. Close all administrative and managed startup commands and enter each server\ bswj_domain\ bin\
Open setDomainEnv.cmd and change it to the following parameters (where-Xms512m-Xmx1024m is adjusted according to configuration)
two。 Clear cache, data, logs, stage, tmp under temporary folders\ bswj_domain\ servers\ bswj_ManagedServer_1 and\ bswj_domain\ servers\ BswjServer on all servers
To start weblogic, see step 5 to test the system.
At this point, I believe you have a deeper understanding of the "installation and configuration of Weblogic Server11G cluster". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.