JBoss Convenience Aliases: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[ | * [[Linux Convenience Aliases]] | ||
=Overview= | =Overview= | ||
<pre> | <pre> | ||
alias | alias jb='cd ${JBOSS_HOME}' | ||
alias | alias jbb='cd ${JBOSS_HOME}/bin' | ||
alias | alias jbc='cd ${JBOSS_HOME}/standalone/configuration' | ||
alias jbd='cd ${JBOSS_HOME}/standalone/deployments' | |||
alias jbl='cd ${JBOSS_HOME}/standalone/log' | |||
alias jbprocs='ps -ef | grep java | grep --color "\-D\[.*\]"' | |||
</pre> | </pre> | ||
Note that <tt>${JBOSS_HOME}/standalone/configuration</tt> and <tt>${JBOSS_HOME}/standalone/log</tt> refer to the standard location of the configuration and log directories for a standalone deployment. The location will be adjusted in case of named standalone profiles, or in case of the domain deployment, but the "jbc", "jbl", "jbb" etc. alias names remain consistent. |
Latest revision as of 18:59, 16 February 2016
Internal
Overview
alias jb='cd ${JBOSS_HOME}' alias jbb='cd ${JBOSS_HOME}/bin' alias jbc='cd ${JBOSS_HOME}/standalone/configuration' alias jbd='cd ${JBOSS_HOME}/standalone/deployments' alias jbl='cd ${JBOSS_HOME}/standalone/log' alias jbprocs='ps -ef | grep java | grep --color "\-D\[.*\]"'
Note that ${JBOSS_HOME}/standalone/configuration and ${JBOSS_HOME}/standalone/log refer to the standard location of the configuration and log directories for a standalone deployment. The location will be adjusted in case of named standalone profiles, or in case of the domain deployment, but the "jbc", "jbl", "jbb" etc. alias names remain consistent.