Document externalizing Domain, Agent directory as workaround for file-based
installer full reinstall.
For every file-base install patch, it is often necessary to reconfigure
and redo or redeploy all applications. This is a time-consuming and error-prone
procedure.
Solution
Externalize the DAS, NodeAgent, HADB, and MQ instance from the subdirectory
or path of the AS8.1 installation to avoid having to perform a full reinstall.
For example, to externalize the DAS domain to /work/jnditest:
./asadmin create-domain --domaindir /work \
--adminport 7878 --adminuser admin --instanceport 7870 jnditest
|
To externalize the Node Agent to /work/nagent:
./asadmin create-node-agent --agentdir=/work \
--port 7878 --host $dashost --user admin nagent
|
Finally, to start the externalized DAS:
./asadmin start-domain --domaindir /work -u admin jnditest
|
|