Skip to content

Commit 5109adb

Browse files
committed
Version 2.0
1 parent 12e0c41 commit 5109adb

File tree

3,319 files changed

+686353
-227761
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,319 files changed

+686353
-227761
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ fortify-output/**
4545
owasp-output/**
4646
frontend/seleniumTest.log
4747

48-
electron/build/**
4948
electron/dist/**
5049
electron/extraFiles/**
5150
electron/node_modules/**
5251
electron/package-lock.json
52+
53+
hugo/*/docs/
54+
hugo/*/.vscode/

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ an issue too.
1212
## Contributing to the WebLogic Remote Console repository
1313

1414
Pull requests can be made under
15-
[The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html) (OCA).
15+
[The Oracle Contributor Agreement](https://oca.opensource.oracle.com/) (OCA).
1616

1717
For pull requests to be accepted, the bottom of your commit message must have
1818
the following line using your name and e-mail address as it appears in the

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright (c) 2020, 2021, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
MAVEN_TARGET = clean install
5+
6+
all:
7+
[ -z "$$https_proxy" ] || export ELECTRON_GET_USE_PROXY=true GLOBAL_AGENT_HTTPS_PROXY=$$https_proxy; \
8+
mvn -B ${MAVEN_TARGET} ${MAVEN_FLAGS}
9+
rm -rf runnable
10+
unzip -q -d runnable installer/target/console.zip
11+
mv runnable/console/* runnable
12+
rm -r runnable/console
13+
14+
clean:
15+
mvn clean
16+
rm -rf runnable

README.md

+13-33
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,36 @@
11

22
# WebLogic Remote Console
33

4-
The WebLogic Remote Console is a lightweight, open source console that you can use to manage your WebLogic Server domain running anywhere, such as on a physical or virtual machine, in a container, Kubernetes, or in the Oracle Cloud. The Remote Console does not need to be colocated with the WebLogic Server domain.
4+
The WebLogic Remote Console is a lightweight, open source console that you can use to manage your WebLogic Server domain running anywhere, such as on a physical or virtual machine, in a container, Kubernetes, or in the Oracle Cloud. The WebLogic Remote Console does not need to be colocated with the WebLogic Server domain.
55

6-
You can install and run the Remote Console anywhere, and connect to your domain using WebLogic REST APIs. You simply launch the desktop application and connect to the Administration Server of your domain. Or, you can start the console server, launch the console in a browser and then connect to the Administration Server.
6+
You can install and run the WebLogic Remote Console anywhere, and connect to your domain using WebLogic REST APIs. You simply launch the desktop application and connect to the Administration Server of your domain. Or, you can start the console server, launch the console in a browser and then connect to the Administration Server.
77

8-
The Remote Console is fully supported with WebLogic Server 12.2.1.3, 12.2.1.4, and 14.1.1.
9-
10-
Ready to download and use the Remote Console? See [Get Started](#start).
8+
The WebLogic Remote Console is fully supported with WebLogic Server 12.2.1.3, 12.2.1.4, and 14.1.1.0.
119

1210
## Key Features of the WebLogic Remote Console
13-
The WebLogic Remote Console provides an alternative WebLogic Server administration GUI that enables REST-based access to WebLogic management information, in alignment with current cloud-native trends. When connected to a WebLogic domain using the Remote Console, you can:
14-
* Configure WebLogic Server instances
15-
* Configure WebLogic Server clusters
11+
The WebLogic Remote Console provides an alternative WebLogic Server administration GUI that enables REST-based access to WebLogic management information, in alignment with current cloud-native trends. When connected to a WebLogic domain using the WebLogic Remote Console, you can:
12+
* Configure WebLogic Server instances and clusters
13+
* Create or modify WDT metadata models
1614
* Configure WebLogic Server services, such as database connectivity (JDBC), and messaging (JMS)
1715
* Deploy and undeploy applications
1816
* Start and stop servers and applications
1917
* Monitor server and application performance
20-
* View server and domain log files
21-
* View application deployment descriptors
22-
* Edit selected runtime application deployment descriptor elements
23-
24-
25-
## Differences With the WebLogic Server Administration Console
26-
If you are already familiar with the WebLogic Server Administration Console deployed as part of your WebLogic domain, you'll notice these key differences in the WebLogic Remote Console:
27-
* The user interface has been completely redesigned to conform to the Oracle Alta UI Design system and the Oracle Redwood theme included with Oracle JET.
28-
* The configuration and monitoring content is separated into separate pages in the Remote Console. In the WebLogic Server Administration Console, the configuration and runtime information is presented on one page. See [Separation of Configuration and Runtime Data](site/console_uidesign.md#separation).
29-
* The Change Center is now expressed as a shopping cart. See [Use the Shopping Cart](site/console_uidesign.md#cart).
30-
* Instead of logging directly into the Administration Console deployed in a WebLogic domain, the Remote Console connects to the Administration Server in a WebLogic domain, with the credentials supplied by the user, using WebLogic REST APIs.
3118

32-
## Get Started <a name ="start"></a>
33-
You can access the Remote Console through your browser or by running a desktop application. Both versions are available to download from [https://github.com/oracle/weblogic-remote-console/releases](https://github.com/oracle/weblogic-remote-console/releases). The browser installer, `console.zip`, consists of the Remote Console JAR file and associated libraries necessary to use the console. For the desktop application, simply run the appropriate installer for your operating system.
19+
## Get Started
20+
You can install the WebLogic Remote Console as a desktop or browser application, depending on your usecases although the desktop application is recommended. Both versions are available to download from [https://github.com/oracle/weblogic-remote-console/releases](https://github.com/oracle/weblogic-remote-console/releases).
3421

35-
You should also download and install the Remote Console extension for your WebLogic Server domain. The extension provides additional functionality that is not available with the console alone. Although installing the extension is optional, we recommend that you install it to get the optimum functionality from the Remote Console.
22+
You should also download and install the WebLogic Remote Console extension for your WebLogic Server domain. The extension provides additional functionality that is not available with the console alone. Although installing the extension is optional, we recommend that you install it to get the optimum functionality from the WebLogic Remote Console.
3623

37-
For details about installing and running the Remote Console, see [Install and Configure the WebLogic Remote Console](site/install_config.md).
24+
Documentation for the WebLogic Remote Console is available at [https://oracle.github.io/weblogic-remote-console/](https://oracle.github.io/weblogic-remote-console/setup/). It provides instructions for installing and configuring the WebLogic Remote Console.
3825

39-
To build the Remote Console from source, see the [Developer Guide](site/developer_guide.md).
26+
To build the WebLogic Remote Console from source, see the [Developer Guide](https://oracle.github.io/weblogic-remote-console/develop/build-source/).
4027

4128
## Known Issues
42-
See the following list of [Known Issues](site/known_issues.md), limitations, and workarounds.
43-
44-
## Additional Information
45-
46-
* For information about the console user interface, see [Console Design and Usage Notes](site/console_uidesign.md).
47-
* For information for tuning the environment, see [Tuning the Remote Console Environment](site/tuning.md).
48-
* For information for developers, such as building the Remote Console from source, see the [Developer Guide](site/developer_guide.md).
49-
* For information to help troubleshoot configuration issues, see [Troubleshoot](site/troubleshoot.md).
29+
See the following list of [Known Issues](https://oracle.github.io/weblogic-remote-console/reference/known_issues/), limitations, and workarounds.
5030

5131
## Need more help? Have a suggestion? Come and say, "Hello!"
5232

53-
We have a **public Slack channel** where you can get in touch with us to ask questions about using the Remote Console or give us feedback
33+
We have a **public Slack channel** where you can get in touch with us to ask questions about using the WebLogic Remote Console or give us feedback
5434
or suggestions about what features and improvements you would like to see. We would love to hear from you. To join our channel,
5535
please [visit this site to get an invitation](https://weblogic-slack-inviter.herokuapp.com/). The invitation email will include
5636
details of how to access our Slack workspace. After you are logged in, please come to `#remote-console` and say, "hello!"

0 commit comments

Comments
 (0)