Middleware security-weblogic security settings

Preparatory work to be done before deploying Weblogic
Create users and user groups

[root@localhost ~]# groupadd oinstall
[root@localhost ~]# useradd -g oinstall weblogic
[root@localhost ~]# passwd weblogic

Insert picture description here

Install Weblogic
1, configure JDK 1.8.x

[root@localhost ~]# tar zxf jdk-8u161-linux-x64.tar.gz
[root@localhost ~]# mv jdk1.8.0_161/ /usr/local/jdk1.8.0
[root@localhost ~]# vim /etc/profile
export JAVA_HOME=/usr/local/jdk1.8.0 
export CLASSPATH=./:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$JAVA_HOME/bin:$PATH

Insert picture description here
Insert picture description here
Insert picture description here
Run java -jar fmw_12.2.1.3.0_infrastructure.jar with the weblogic account to
start the installation

Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

Create weblogic domain

[weblogic@localhost~]$ cd Oracle/Middleware/Oracle_Home/wlserver/common/bin/
[weblogic@localhostbin]$ ./config.sh

Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

Start to cancel password input in production mode

[weblogic@localhost AdminServer]$ pwd
/home/weblogic/Oracle/Middleware/Oracle_Home/user_projects/domains/base_domain/servers/AdminServer
[weblogic@localhost AdminServer]$ cd security/
[weblogic@localhost security]$ vim boot.properties

Insert picture description here
Start WebLogic

[weblogic@localhost base_domain]$ pwd
/home/weblogic/Oracle/Middleware/Oracle_Home/user_projects/domains/base_domain
[weblogic@localhost base_domain]$ ./startWebLogic.sh

Insert picture description here

Guess you like

Origin blog.csdn.net/caodabener/article/details/112186910