You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixing discovery warnings when discovering a soa domain (#1437)
* fixing discovery warnings when discovering a soa domain where the soa-infra app has subdeployments with / in the name
* limiting the parens to only the WLST path created from a name token containing a slash
* making the change for offline only since online works differently
* Avoid adding extra parentheses to application and library paths
* Add documentation about restart files for online deploy / update
---------
Co-authored-by: Richard Killen <[email protected]>
Copy file name to clipboardExpand all lines: documentation/3.0/content/userguide/tools/deploy.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,14 @@ When running the tool in WLST online mode, the deploy operation may require serv
48
48
-`103` - The entire domain needs to be restarted.
49
49
-`104` - The domain changes have been canceled because the changes in the model requires a domain restart and `-cancel_changes_if_restart_required` is specified.
50
50
51
+
52
+
### Using output files
53
+
54
+
If the `-output_dir` command-line argument is specified, the tool will generate output files that provide information about servers and resources that need to be restarted. These files are only applicable for online deployments.
55
+
56
+
For more information about these files, see [Using output files]({{< relref "/userguide/tools/update#using-output-files" >}}) for the Update Domain Tool.
57
+
58
+
51
59
### Using an encrypted model
52
60
53
61
If the model or variables file contains passwords encrypted with the WDT Encryption tool, decrypt the passwords during create with the `-use_encryption` flag on the command line to tell the Deploy Applications Tool that encryption is being used and to prompt for the encryption passphrase. As with the database passwords, the tool can also read the passphrase from standard input (for example, `stdin`) to allow the tool to run without any user input. You can bypass the stdin prompt with two other options. Store the passphrase in an environment variable, and use the environment variable name with command-line option `-passphrase_env`. Another option is to create a file containing the passphrase value. Pass this filename using the command-line option `-passphrase_file`.
Copy file name to clipboardExpand all lines: documentation/3.0/content/userguide/tools/update.md
+61Lines changed: 61 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,67 @@ When running the tool in WLST online mode, the update operation may require serv
59
59
WebLogic Server to handle automating undeploy and deploy of an application that uses shared library when the library is
60
60
updated in-place.
61
61
62
+
### Using output files
63
+
64
+
If the `-output_dir` command-line argument is specified, the tool will generate output files that provide information about servers and resources that need to be restarted. These files are only applicable for online deployments.
65
+
66
+
The file `restart.file` contains a list of servers and resources that need to be restarted. Here is an example:
67
+
```text
68
+
:AdminServer:Generic1:JDBCSystemResource
69
+
:AdminServer::
70
+
```
71
+
72
+
The file `non_dynamic_changes.file` contains text describing the attributes that will require a restart in order for new values to be applied. Here is an example:
73
+
```text
74
+
Server re-start is REQUIRED for the set of changes in progress.
75
+
76
+
The following non-dynamic attribute(s) have been changed on MBeans
The file `results.json` contains information about servers and resources need to be restarted, and attribute values that require a restart in order for new values to be applied.
If the model or variables file contains passwords encrypted with the WDT Encryption tool, decrypt the passwords during create with the `-use_encryption` flag on the command line to tell the Update Domain Tool that encryption is being used and to prompt for the encryption passphrase. As with the database passwords, the tool can also read the passphrase from standard input (for example, `stdin`) to allow the tool to run without any user input. You can bypass the stdin prompt with two other options. Store the passphrase in an environment variable, and use the environment variable name with command-line option `-passphrase_env`. Another option is to create a file containing the passphrase value. Pass this filename with the command-line option `-passphrase_file`.
0 commit comments