Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install weblogci on Linux system

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to install weblogci on the Linux system. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

Introduction to weblogci: WebLogic is an application server produced by Oracle Company in the United States. Specifically, it is a middleware based on JAVAEE architecture. WebLogic is a Java application server used to develop, integrate, deploy and manage large-scale distributed Web applications, network applications and database applications. Introduce the dynamic function of Java and the security of Java Enterprise standard into the development, integration, deployment and management of large-scale network applications.

WebLogic is one of the main products of Oracle, which is acquired from the merger and acquisition of BEA. Is one of the major Java (J2EE) application server software (application server) in the commercial market, is the first successful commercial J2EE application server in the world, has been launched to 12c (12.1.3) version.

The relationship between java and weblogic: java is a language, weblogic is a kind of software. If you use JAVA for JSP,Servlet development, you can deploy them to weblogic. Let WebLogic run them. This is like if you want to run ASP, then you usually have to install IIS, there is no IIS to explain ASP, then your ASP can only be opened locally with notepad.

Specific steps to install weblogci in Linux system: 1. Environment

Linux version: RedHat 6.7

Weblogic version: WLS10.3.6 download link: https://pan.baidu.com/s/1nSTHA69lLVo55Uk5y_UcAw

JDK version: 1.8 download link: https://pan.baidu.com/s/1snD2FG8d8HTDfAR9KBIkAg

Second, install JDK

Just upload the JDK package to the root directory

[root@bogon /] # tar-xvf jdk-8u161-linux-x64.tar.gz

[root@bogon /] # mv jdk1.8.0_161/ / usr/java

[root@bogon /] # vim / etc/profile

Export JAVA_HOME=/usr/java

Export JRE_HOME=/usr/java/jre

Export CLASSPATH=.:JRE_HOME/lib:$CLASSPATH

Export PATH=JRE_HOME/bin:$PATH

Export ORACLE_HOME=/weblogic/wls1212/ofmhome

[root@bogon /] # source / etc/profile

Create directories, users, and groups

Mkdir-p / u01/weblogic

Groupadd weblogic

Useradd-g weblogic-d / u01/weblogic weblogic

Passwd weblogic

Weblogic

Chown-R weblogic:weblogic / U01

IV. Installation

Upload the weblogic package to / U01

Chown-R weblogic:weblogic / U01

Switch to weblogic user

Cd / u01

Java-jar wls1036_generic.jar

Enter the command line installation mode: enter the following steps except for the following steps:

At this point, the weblogic software has been successfully installed in the following directory:

The installation home directory is / u01/weblogic

The Weblogic server directory is / u01/weblogic/wlserver_10.3

The Oracel coherence directory is / u01/weblogic/coherence_3.7

5. Configure weblogic server environment

Configuration domain (it is a managed unit that contains multiple weblogic server)

Using the configuration assistant configuration, the following is a summary of the different methods on each operating system:

Scripts in/common/bin directory

Graphical mode:

Windows start menu

[windows] config.cmd

[unix | linux] config.sh

Console mode:

[windows] config.cmd-mode=console

[unix | linux] config.sh-mode=console

In this example, the console mode is still used to configure the domain.

Su-weblogic

Cd / u01/weblogic/wlserver_10.3/common/bin

. / config.sh-mode=console

The options that do not appear in the following picture, just enter by default.

At this point, the weblogic domain has been installed successfully, and the installation directory is as follows:

The installation home directory is / u01/weblogic/user_projects/domains

VI. Modify hosts file

Switch to the root user:

Vi / etc/hosts

IP hostname # # change according to your actual situation

7. Start weblogic server

Su-weblogic

Cd / u01/weblogic/user_projects/domains/base_domain/bin

. / startWeblogic.sh

Enter user name: weblogic

Enter password: 12345678

At this point, the startup is complete.

Open the console

Http://IP:7001/console

This is the end of the article on "how to install weblogci in Linux system". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

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.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report