WebLogic 12C installation¶
The following resources provide detailed guides and instructions for installing and setting up Oracle WebLogic Server 12c.
Installation Guides¶
- WebLogic(12C)-安装教程: A step-by-step tutorial for the installation process of WebLogic 12c^[weblogic-intellij.md].
- weblogic12.1.3的安装及更新: A guide covering the installation of WebLogic version 12.1.3 and how to apply updates^[weblogic-intellij.md].
Deployment¶
- idea工具部署webLogic项目: Instructions on how to use IntelliJ IDEA to deploy projects onto the WebLogic application server^[weblogic-intellij.md].
Docker Deployment¶
A Docker-based setup can be used for practice and rapid deployment using the following docker-compose configuration^[weblogic-intellij.md]:
version: "3"
services:
db:
image: ismaleiva90/weblogic12
ports:
- "7001:7001"
- "7002:7002"
- "5556:5556"
restart: always
After starting the container, the WebLogic console is accessible via specific URLs and ports (e.g., http://localhost:7001/console)^[weblogic-intellij.md]. Default credentials for this image are typically user weblogic with password welcome1^[weblogic-intellij.md].
Sources¶
^[weblogic-intellij.md]
Related Concepts¶
- [[IntelliJ IDEA]]
- [[Docker]]
- Java