SlideShare a Scribd company logo
Weblogic Command Line Tools
weblogic.Admin utility
● Used to perform Administrative functions from command
prompt
● A Java Class
● Must be added to classpath and PATH
● Can be used in shell scripts
● For multiple invocations BATCHUPDATE can be used.
● Syntax:-
java [ SSL Arguments ] weblogic.Admin
[ Connection Arguments ][ User Credentials Arguments ]
COMMAND-NAME command-arguments
weblogic.Admin
STORECONFIG Command
Creates a user-configuration file and an associated key file. The user-
configuration file contains an encrypted username and password.
The key file contains a secret key that is used to encrypt and decrypt the
username and password. Only the key file that originally encrypted the username
and password can decrypt the values. If you lose the key file, you must create a
new user-configuration and key file pair.
java weblogic.Admin
-username username[-password password]
[ -userconfigfile config-file] [ -userkeyfile keyfile]
STOREUSERCONFIG
weblogic.Admin
RESUME Command
Moves a server instance from the STANDBY state to
the RUNNING state.
Syntax
java [ SSL Arguments ]
weblogic.Admin
[-url URL]
[ User Credentials Arguments ]
RESUME [targetServer]
weblogic.Admin
SHUTDOWN Command
Gracefully shuts down the specified WebLogic Server instance.A graceful
shutdown gives WebLogic Server subsystems time to complete certain
application processing currently in progress. By default, a server instance waits
for pending HTTP sessions to finish as a part of the graceful shutdown. You can
override this behavior using the -ignoreExistingSessions argument.
java [ SSL Arguments ] [-Dweblogic.system.BootIdentityFile=filename [-
Dweblogic.RootDirectory=path] ] weblogic.Admin
[ Connection Arguments ] [ User Credentials Arguments ] SHUTDOWN [-
ignoreExistingSessions] [-timeout seconds] [targetServer]
(Deprecated)java [ SSL Arguments ] [-
Dweblogic.system.BootIdentityFile=filename [-Dweblogic.RootDirectory=path]
]
weblogic.Admin
[ Connection Arguments ]
weblogic.Admin
CANCEL_SHUTDOWN Command
(Deprecated) The CANCEL_SHUTDOWN command cancels the SHUTDOWN command
for a specified WebLogic Server.
When you use the SHUTDOWN command, you can specify a delay (in seconds). An
administrator may cancel the shutdown command during the delay period. Be aware that
the SHUTDOWN command disables logins, and they remain disabled even after
cancelling the shutdown. Use the UNLOCK command to re-enable logins.
Syntax
java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ] [ User Credentials
Arguments ] CANCEL_SHUTDOWN
Example
The following example cancels the shutdown of a WebLogic Server instance that runs
on a machine named ManagedHost and listens on port 8001:
java weblogic.Admin -url ManagedHost:8001 -username weblogic -password weblogic
CANCEL_SHUTDOWN
weblogic.Admin
FORCESHUTDOWN Command
Terminates a server instance without waiting for active sessions to complete.
If a server instance is in a deadlocked state, it can respond to weblogic.Admin commands
only if you have enabled the domain-wide administration port. (A deadlocked
server is one in which all threads are struck trying to acquire locks held by other
threads.) If you have not already enabled the domain-wide administration port,
your only option for shutting down the server instance is to kill the Java process
that is running the server. You will lose all session data.
Syntax
java [ SSL Arguments ] [-Dweblogic.system.BootIdentityFile=filename [-
Dweblogic.RootDirectory=path] ]
weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ]
FORCESHUTDOWN [targetServer]
weblogic.Admin
DISCOVERMANAGEDSERVER
CommandCauses the Administration Server to re-establish administrative control over Managed
Servers. If the Administration Server fails while Managed Servers continue to run, or if
you shut down the Administration Server while Managed Servers continue to run, you
lose the ability to change the configuration or deploy modules to any server in the
domain. To regain this administrative ability, you must restart the Administration
Server. By default, an Administration Server finds the last known set of Managed
Servers and re-establishes a connection. If the Administration Server is unable to
automatically re-establish a connection to one or more Managed Servers during its
startup cycle, you can use this command to re-establish administrative control. For
example, you might have started a Managed Server in the STANDBY state and did not
resume the Managed Server before restarting the Administration Server. The
Administration Server discovers only Managed Servers that are in the RUNNING state.
Other factors can prevent the Administration Server from finding and re-connecting to
Managed Servers, and you can use this command any time you need to re-establish a
connection.
Syntax
java [ SSL Arguments ] weblogic.Admin
[ -url [protocol://]listen-address:listen-port ]
weblogic.Admin
LOCK Command
(Deprecated) Locks a WebLogic Server instance against non-privileged logins. Any
subsequent login attempt initiates a security exception which may contain an optional
string message.
This command is privileged. It requires the password for the WebLogic Server
administrative user. Instead of using the LOCK command, start a server in the
STANDBY state. In this state, a server instance responds only to administrative requests
over the domain-wide administration port.
Syntax
java [ SSL Arguments ]
weblogic.Admin
[ -url [protocol://]listen-address:listen-port ]
[ User Credentials Arguments ]
LOCK [“stringMessage”]
weblogic.Admin
START Command
Starts a Managed Server using Node Manager. This command requires the following
environment:
The domain’s Administration Server must be running.
The Node Manager must be running on the Managed Server’s host machine.
The Managed Server must be configured to communicate with a Node Manager.
The Startup Mode field in the Administration Console determines whether a Managed
Server starts in the RUNNING state or STANDBY state.
Syntax
java [ SSL Arguments ] weblogic.Admin
[-url URL]
[ User Credentials Arguments ]
START targetServer
weblogic.Admin
STARTINSTANDBY Command
(Deprecated) Starts a Managed Server using Node Manager.
In previous releases, this command started a Managed Server using the Node Manager
andplaced it in a STANDBY state. In this state, a server is not accessible to requests
from external clients.
In the current release, the Startup Mode field in the Administration Console determines
the state in which a Managed Server starts, regardless of which command you use to
start the server Instance.
Syntax
java [ SSL Arguments ] weblogic.Admin
[-url URL]
[ User Credentials Arguments ]
STARTINSTANDBY targetServer
weblogic.Admin
UNLOCK Command
(Deprecated) Unlocks the specified WebLogic Server after a LOCK operation. This
command is deprecated because the LOCK command is deprecated. Instead of LOCK
and UNLOCK, use STARTINSTANDY and RESUME.
Syntax
java [ SSL Arguments ] weblogic.Admin [-url URL]
[ User Credentials Arguments ]
UNLOCK
Example
In the following example, an administrator named adminuser with a password of
gumby1234
requests the unlocking of the WebLogic Server listening on port 7001 on machine
localhost:
java weblogic.Admin -url localhost:7001 -username adminuser
-password gumby1234 UNLOCK
weblogic.Admin
CONNECT Command
Connects to a WebLogic Server instance and returns two numbers representing the total
time for each round trip and the average amount of time (in milliseconds) that each
connection is Maintained.
Syntax
java [ SSL Arguments ] weblogic.Admin
[-url URL]
[ User Credentials Arguments ]
CONNECT [count]
weblogic.Admin
GETSTATE Command
Returns the current state of a server.
If a server instance is in a deadlocked state, it can respond to weblogic.Admin
commands only if you have enabled the domain-wide administration port. (A
deadlocked server is one in which all threads are struck trying to acquire locks held by
other threads.) If you have not already enabled the domain-wide administration port,
your only option is to shut down the server instance by killing the Java process that is
running the server. You will lose all session data.
Syntax
java [ SSL Arguments ] weblogic.Admin
[ Connection Arguments ]
[ User Credentials Arguments ]
GETSTATE [targetServer]
weblogic.Admin
HELP Command
Provides syntax and usage information for all WebLogic Server commands (by default)
or for a single command if a command value is specified on the HELP command line.
You can issue this command from any computer on which the WebLogic Server is
installed. You do not need to start a server instance to invoke this command, nor do you
need to supply user credentials.
Syntax
java weblogic.Admin HELP [COMMAND]
Example
In the following example, information about using the PING command is requested:
java weblogic.Admin HELP PING
The command returns the following:
Usage: java [SSL trust options]
weblogic.Admin [ [-url | -adminurl] [<protocol>://]<listen-
address>:<port>]
weblogic.Admin
LIST Command
Lists the bindings of a node in the JNDI naming tree.
Syntax
java [ SSL Arguments ] weblogic.Admin
[ Connection Arguments ]
[ User Credentials Arguments ]
LIST [JNDIcontextName]
weblogic.Admin
PING Command
Sends a message to verify that a WebLogic Server instance is listening on a port and is
ready to accept WebLogic client requests.
Syntax
java [ SSL Arguments ] weblogic.Admin
[ Connection Arguments ]
[ User Credentials Arguments ]
PING [roundTrips] [messageLength]

More Related Content

What's hot

Virtual Hosts Configuration with Weblogic Server
Virtual Hosts Configuration with Weblogic ServerVirtual Hosts Configuration with Weblogic Server
Virtual Hosts Configuration with Weblogic Server
Pawan Kumar
 
Enterprise managerclodcontrolinstallconfiguration emc12c
Enterprise managerclodcontrolinstallconfiguration emc12cEnterprise managerclodcontrolinstallconfiguration emc12c
Enterprise managerclodcontrolinstallconfiguration emc12c
Rakesh Gujjarlapudi
 
EMCLI Crash Course - DOAG Germany
EMCLI Crash Course - DOAG GermanyEMCLI Crash Course - DOAG Germany
EMCLI Crash Course - DOAG Germany
Gokhan Atil
 
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
Scott Sutherland
 
WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation
K Kumar Guduru
 
DerbyCon2016 - Hacking SQL Server on Scale with PowerShell
DerbyCon2016 - Hacking SQL Server on Scale with PowerShellDerbyCon2016 - Hacking SQL Server on Scale with PowerShell
DerbyCon2016 - Hacking SQL Server on Scale with PowerShell
Scott Sutherland
 
Apache Tomcat 7 by Filip Hanik
Apache Tomcat 7 by Filip HanikApache Tomcat 7 by Filip Hanik
Apache Tomcat 7 by Filip Hanik
Edgar Espina
 
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
Scott Sutherland
 
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
IndicThreads
 
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010Java EE 6 - Deep Dive - Indic Threads, Pune - 2010
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010Jagadish Prasath
 
Enterprise Manager: Write powerful scripts with EMCLI
Enterprise Manager: Write powerful scripts with EMCLIEnterprise Manager: Write powerful scripts with EMCLI
Enterprise Manager: Write powerful scripts with EMCLI
Gokhan Atil
 
Weblogic server nodemanager
Weblogic server nodemanagerWeblogic server nodemanager
Weblogic server nodemanager
Anandraj Kulkarni
 
common_schema, DBA's framework for MySQL
common_schema, DBA's framework for MySQLcommon_schema, DBA's framework for MySQL
common_schema, DBA's framework for MySQL
Shlomi Noach
 
Jsf 2.0 in depth
Jsf 2.0 in depthJsf 2.0 in depth
Jsf 2.0 in depth
SILBURY IT SOLUTIONS GMBH
 
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL ServerSecure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
Scott Sutherland
 
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
Scott Sutherland
 
The Enterprise Manager Command Line by Kellyn Pot'Vin
The Enterprise Manager Command Line by Kellyn Pot'VinThe Enterprise Manager Command Line by Kellyn Pot'Vin
The Enterprise Manager Command Line by Kellyn Pot'VinEnkitec
 
Weblogic 12c Graphical Mode installation steps in Windows
Weblogic 12c Graphical Mode installation steps in Windows Weblogic 12c Graphical Mode installation steps in Windows
Weblogic 12c Graphical Mode installation steps in Windows
webservicesm
 
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
Scott Sutherland
 

What's hot (20)

Virtual Hosts Configuration with Weblogic Server
Virtual Hosts Configuration with Weblogic ServerVirtual Hosts Configuration with Weblogic Server
Virtual Hosts Configuration with Weblogic Server
 
Enterprise managerclodcontrolinstallconfiguration emc12c
Enterprise managerclodcontrolinstallconfiguration emc12cEnterprise managerclodcontrolinstallconfiguration emc12c
Enterprise managerclodcontrolinstallconfiguration emc12c
 
EMCLI Crash Course - DOAG Germany
EMCLI Crash Course - DOAG GermanyEMCLI Crash Course - DOAG Germany
EMCLI Crash Course - DOAG Germany
 
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
SQL Server Exploitation, Escalation, Pilfering - AppSec USA 2012
 
WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation
 
DerbyCon2016 - Hacking SQL Server on Scale with PowerShell
DerbyCon2016 - Hacking SQL Server on Scale with PowerShellDerbyCon2016 - Hacking SQL Server on Scale with PowerShell
DerbyCon2016 - Hacking SQL Server on Scale with PowerShell
 
Apache Tomcat 7 by Filip Hanik
Apache Tomcat 7 by Filip HanikApache Tomcat 7 by Filip Hanik
Apache Tomcat 7 by Filip Hanik
 
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
2016 aRcTicCON - Hacking SQL Server on Scale with PowerShell (Slide Updates)
 
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...Java EE 6 = Less Code + More Power (Tutorial)  [5th IndicThreads Conference O...
Java EE 6 = Less Code + More Power (Tutorial) [5th IndicThreads Conference O...
 
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010Java EE 6 - Deep Dive - Indic Threads, Pune - 2010
Java EE 6 - Deep Dive - Indic Threads, Pune - 2010
 
Tomcat
TomcatTomcat
Tomcat
 
Enterprise Manager: Write powerful scripts with EMCLI
Enterprise Manager: Write powerful scripts with EMCLIEnterprise Manager: Write powerful scripts with EMCLI
Enterprise Manager: Write powerful scripts with EMCLI
 
Weblogic server nodemanager
Weblogic server nodemanagerWeblogic server nodemanager
Weblogic server nodemanager
 
common_schema, DBA's framework for MySQL
common_schema, DBA's framework for MySQLcommon_schema, DBA's framework for MySQL
common_schema, DBA's framework for MySQL
 
Jsf 2.0 in depth
Jsf 2.0 in depthJsf 2.0 in depth
Jsf 2.0 in depth
 
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL ServerSecure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
Secure360 - Beyond xp cmdshell - Owning the Empire through SQL Server
 
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
2018 Student360 - Beyond xp_cmdshell - Owning the Empire Through SQL Server
 
The Enterprise Manager Command Line by Kellyn Pot'Vin
The Enterprise Manager Command Line by Kellyn Pot'VinThe Enterprise Manager Command Line by Kellyn Pot'Vin
The Enterprise Manager Command Line by Kellyn Pot'Vin
 
Weblogic 12c Graphical Mode installation steps in Windows
Weblogic 12c Graphical Mode installation steps in Windows Weblogic 12c Graphical Mode installation steps in Windows
Weblogic 12c Graphical Mode installation steps in Windows
 
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
2017 Thotcon - Hacking SQL Servers on Scale with PowerShell
 

Viewers also liked

7th PreAlg - April11
7th PreAlg - April117th PreAlg - April11
7th PreAlg - April11jdurst65
 
The birth of a starr
The birth of a starrThe birth of a starr
The birth of a starradrianna1
 
Algunas reflexiones sobre educación física y pedagogía crítica
Algunas reflexiones sobre educación física y pedagogía críticaAlgunas reflexiones sobre educación física y pedagogía crítica
Algunas reflexiones sobre educación física y pedagogía crítica
Jorge Nicanor Castro Martínez
 
Consultant of the month Certificate
Consultant of the month Certificate Consultant of the month Certificate
Consultant of the month Certificate Rizwan Murtaza
 
Derechos de niños y niñas
Derechos de niños y niñasDerechos de niños y niñas
Derechos de niños y niñas
Gladys Liliana García Jurado
 
Jk poster seen on constellation drive january 2013
Jk poster seen on constellation drive january 2013Jk poster seen on constellation drive january 2013
Jk poster seen on constellation drive january 2013
Rubbaduddub
 
Programa buenas prácticas sicted turismo activoactivo
Programa buenas prácticas sicted turismo activoactivoPrograma buenas prácticas sicted turismo activoactivo
Programa buenas prácticas sicted turismo activoactivo
Aktiba, Asociación de Empresas de Turismo Activo de Euskadi
 
Linked data and linked open data 20130608
Linked data and linked open data 20130608Linked data and linked open data 20130608
Linked data and linked open data 20130608
Hsiaojan Liu
 
La familia.pptx
La familia.pptxLa familia.pptx
La familia.pptx
Isabel Peñalver García
 
European Consumer Attitudes To Dieting An Update On Contradictory Dieting Mi
European Consumer Attitudes To Dieting An Update On Contradictory Dieting MiEuropean Consumer Attitudes To Dieting An Update On Contradictory Dieting Mi
European Consumer Attitudes To Dieting An Update On Contradictory Dieting MiAndre Britto
 
DevOps in your Oracle Stack
DevOps in your Oracle StackDevOps in your Oracle Stack
DevOps in your Oracle Stack
Timothy Krupinski
 
Aula sistema circulatório
Aula sistema circulatórioAula sistema circulatório
Aula sistema circulatório
Alessandra Paranhos (CEMI)
 

Viewers also liked (16)

7th PreAlg - April11
7th PreAlg - April117th PreAlg - April11
7th PreAlg - April11
 
The birth of a starr
The birth of a starrThe birth of a starr
The birth of a starr
 
 
Algunas reflexiones sobre educación física y pedagogía crítica
Algunas reflexiones sobre educación física y pedagogía críticaAlgunas reflexiones sobre educación física y pedagogía crítica
Algunas reflexiones sobre educación física y pedagogía crítica
 
Consultant of the month Certificate
Consultant of the month Certificate Consultant of the month Certificate
Consultant of the month Certificate
 
Pag 1
Pag 1Pag 1
Pag 1
 
HR Contacts
HR ContactsHR Contacts
HR Contacts
 
Derechos de niños y niñas
Derechos de niños y niñasDerechos de niños y niñas
Derechos de niños y niñas
 
Jk poster seen on constellation drive january 2013
Jk poster seen on constellation drive january 2013Jk poster seen on constellation drive january 2013
Jk poster seen on constellation drive january 2013
 
Programa buenas prácticas sicted turismo activoactivo
Programa buenas prácticas sicted turismo activoactivoPrograma buenas prácticas sicted turismo activoactivo
Programa buenas prácticas sicted turismo activoactivo
 
Linked data and linked open data 20130608
Linked data and linked open data 20130608Linked data and linked open data 20130608
Linked data and linked open data 20130608
 
Mapas mentales
Mapas mentalesMapas mentales
Mapas mentales
 
La familia.pptx
La familia.pptxLa familia.pptx
La familia.pptx
 
European Consumer Attitudes To Dieting An Update On Contradictory Dieting Mi
European Consumer Attitudes To Dieting An Update On Contradictory Dieting MiEuropean Consumer Attitudes To Dieting An Update On Contradictory Dieting Mi
European Consumer Attitudes To Dieting An Update On Contradictory Dieting Mi
 
DevOps in your Oracle Stack
DevOps in your Oracle StackDevOps in your Oracle Stack
DevOps in your Oracle Stack
 
Aula sistema circulatório
Aula sistema circulatórioAula sistema circulatório
Aula sistema circulatório
 

Similar to Weblogic Cluster command line

Weblogic application server
Weblogic application serverWeblogic application server
Weblogic application server
Anuj Tomar
 
Weblogic Server Overview Weblogic Scripting Tool
Weblogic Server Overview Weblogic Scripting ToolWeblogic Server Overview Weblogic Scripting Tool
Weblogic Server Overview Weblogic Scripting Tool
Gokhan Fazli Celik
 
Weblogic 11g admin basic with screencast
Weblogic 11g admin basic with screencastWeblogic 11g admin basic with screencast
Weblogic 11g admin basic with screencast
Rajiv Gupta
 
WebLogic for DBAs
WebLogic for DBAsWebLogic for DBAs
WebLogic for DBAs
Simon Haslam
 
Active mq Installation and Master Slave setup
Active mq Installation and Master Slave setupActive mq Installation and Master Slave setup
Active mq Installation and Master Slave setup
Ramakrishna Narkedamilli
 
Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
Webinar Slides: New Tungsten Dashboard - Overview, Installation and ArchitectureWebinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
Continuent
 
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
Continuent
 
Start stop-weblogic
Start stop-weblogicStart stop-weblogic
Start stop-weblogic
Ravi Kumar Lanke
 
Weblogic as a windows service
Weblogic as a windows serviceWeblogic as a windows service
Weblogic as a windows service
Ravi Kumar Lanke
 
Weblogic 101 for dba
Weblogic  101 for dbaWeblogic  101 for dba
Weblogic 101 for dba
Osama Mustafa
 
ProxySQL in the Cloud
ProxySQL in the CloudProxySQL in the Cloud
ProxySQL in the Cloud
René Cannaò
 
Oracle WebLogic Server Basic Concepts
Oracle WebLogic Server Basic ConceptsOracle WebLogic Server Basic Concepts
Oracle WebLogic Server Basic ConceptsJames Bayer
 
Weblogicserveroverviewtopologyconfigurationadministration
WeblogicserveroverviewtopologyconfigurationadministrationWeblogicserveroverviewtopologyconfigurationadministration
Weblogicserveroverviewtopologyconfigurationadministration
Gokhan Fazli Celik
 
Cli jbug
Cli jbugCli jbug
Cli jbug
maeste
 
AS7 and CLI
AS7 and CLIAS7 and CLI
AS7 and CLI
JBug Italy
 
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DECWEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
ncodeit123
 

Similar to Weblogic Cluster command line (20)

Weblogic application server
Weblogic application serverWeblogic application server
Weblogic application server
 
Weblogic Server Overview Weblogic Scripting Tool
Weblogic Server Overview Weblogic Scripting ToolWeblogic Server Overview Weblogic Scripting Tool
Weblogic Server Overview Weblogic Scripting Tool
 
Weblogic 11g admin basic with screencast
Weblogic 11g admin basic with screencastWeblogic 11g admin basic with screencast
Weblogic 11g admin basic with screencast
 
WebLogic for DBAs
WebLogic for DBAsWebLogic for DBAs
WebLogic for DBAs
 
Active mq Installation and Master Slave setup
Active mq Installation and Master Slave setupActive mq Installation and Master Slave setup
Active mq Installation and Master Slave setup
 
Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
Webinar Slides: New Tungsten Dashboard - Overview, Installation and ArchitectureWebinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
Webinar Slides: New Tungsten Dashboard - Overview, Installation and Architecture
 
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
Training Slides: Basics 106: Tungsten Dashboard Overview, Installation and Ar...
 
Weblogic
WeblogicWeblogic
Weblogic
 
Start stop-weblogic
Start stop-weblogicStart stop-weblogic
Start stop-weblogic
 
Weblogic as a windows service
Weblogic as a windows serviceWeblogic as a windows service
Weblogic as a windows service
 
Weblogic 101 for dba
Weblogic  101 for dbaWeblogic  101 for dba
Weblogic 101 for dba
 
Java Servlets & JSP
Java Servlets & JSPJava Servlets & JSP
Java Servlets & JSP
 
ProxySQL in the Cloud
ProxySQL in the CloudProxySQL in the Cloud
ProxySQL in the Cloud
 
Oracle WebLogic Server Basic Concepts
Oracle WebLogic Server Basic ConceptsOracle WebLogic Server Basic Concepts
Oracle WebLogic Server Basic Concepts
 
Weblogicserveroverviewtopologyconfigurationadministration
WeblogicserveroverviewtopologyconfigurationadministrationWeblogicserveroverviewtopologyconfigurationadministration
Weblogicserveroverviewtopologyconfigurationadministration
 
WLS
WLSWLS
WLS
 
WebLogic FAQs
WebLogic FAQsWebLogic FAQs
WebLogic FAQs
 
Cli jbug
Cli jbugCli jbug
Cli jbug
 
AS7 and CLI
AS7 and CLIAS7 and CLI
AS7 and CLI
 
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DECWEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
WEBLOGIC ADMINISTRATION 11g NEW BATCH STARTS FROM 16 DEC
 

More from Aditya Bhuyan

Weblogic Cluster Security
Weblogic Cluster SecurityWeblogic Cluster Security
Weblogic Cluster Security
Aditya Bhuyan
 
Weblogic Plugin
Weblogic PluginWeblogic Plugin
Weblogic Plugin
Aditya Bhuyan
 
Weblogic Cluster advanced performance tuning
Weblogic Cluster advanced performance tuningWeblogic Cluster advanced performance tuning
Weblogic Cluster advanced performance tuning
Aditya Bhuyan
 
Weblogic Cluster performance tuning
Weblogic Cluster performance tuningWeblogic Cluster performance tuning
Weblogic Cluster performance tuning
Aditya Bhuyan
 
Weblogic Server Plugin
Weblogic Server PluginWeblogic Server Plugin
Weblogic Server Plugin
Aditya Bhuyan
 
Weblogic Cluster Introduction
Weblogic Cluster IntroductionWeblogic Cluster Introduction
Weblogic Cluster Introduction
Aditya Bhuyan
 
Weblogic Cluster Installation
Weblogic Cluster InstallationWeblogic Cluster Installation
Weblogic Cluster Installation
Aditya Bhuyan
 
Weblogic Cluster Domain
Weblogic Cluster DomainWeblogic Cluster Domain
Weblogic Cluster Domain
Aditya Bhuyan
 
Weblogic Cluster Console
Weblogic Cluster ConsoleWeblogic Cluster Console
Weblogic Cluster Console
Aditya Bhuyan
 
Weblogic Cluster monitoring
Weblogic Cluster monitoringWeblogic Cluster monitoring
Weblogic Cluster monitoring
Aditya Bhuyan
 
Weblogic Cluster Installation and Upgradation
Weblogic Cluster Installation and UpgradationWeblogic Cluster Installation and Upgradation
Weblogic Cluster Installation and Upgradation
Aditya Bhuyan
 
Weblogic cluster console
Weblogic cluster consoleWeblogic cluster console
Weblogic cluster console
Aditya Bhuyan
 
Weblogic Cluster Application deployment
Weblogic Cluster Application deploymentWeblogic Cluster Application deployment
Weblogic Cluster Application deployment
Aditya Bhuyan
 
Weblogic Cluster configuration
Weblogic Cluster configurationWeblogic Cluster configuration
Weblogic Cluster configuration
Aditya Bhuyan
 
Weblogic snmp
Weblogic snmpWeblogic snmp
Weblogic snmp
Aditya Bhuyan
 
Weblogic cluster
Weblogic clusterWeblogic cluster
Weblogic cluster
Aditya Bhuyan
 
Code-Review-Principles-Process-and-Tools (1)
Code-Review-Principles-Process-and-Tools (1)Code-Review-Principles-Process-and-Tools (1)
Code-Review-Principles-Process-and-Tools (1)Aditya Bhuyan
 
September 2013 lok kalyan setu
September 2013 lok kalyan setuSeptember 2013 lok kalyan setu
September 2013 lok kalyan setu
Aditya Bhuyan
 
October 2013 lok kalyan setu
October 2013 lok kalyan setuOctober 2013 lok kalyan setu
October 2013 lok kalyan setuAditya Bhuyan
 
November 2013 lok kalyan setu
November 2013 lok kalyan setuNovember 2013 lok kalyan setu
November 2013 lok kalyan setu
Aditya Bhuyan
 

More from Aditya Bhuyan (20)

Weblogic Cluster Security
Weblogic Cluster SecurityWeblogic Cluster Security
Weblogic Cluster Security
 
Weblogic Plugin
Weblogic PluginWeblogic Plugin
Weblogic Plugin
 
Weblogic Cluster advanced performance tuning
Weblogic Cluster advanced performance tuningWeblogic Cluster advanced performance tuning
Weblogic Cluster advanced performance tuning
 
Weblogic Cluster performance tuning
Weblogic Cluster performance tuningWeblogic Cluster performance tuning
Weblogic Cluster performance tuning
 
Weblogic Server Plugin
Weblogic Server PluginWeblogic Server Plugin
Weblogic Server Plugin
 
Weblogic Cluster Introduction
Weblogic Cluster IntroductionWeblogic Cluster Introduction
Weblogic Cluster Introduction
 
Weblogic Cluster Installation
Weblogic Cluster InstallationWeblogic Cluster Installation
Weblogic Cluster Installation
 
Weblogic Cluster Domain
Weblogic Cluster DomainWeblogic Cluster Domain
Weblogic Cluster Domain
 
Weblogic Cluster Console
Weblogic Cluster ConsoleWeblogic Cluster Console
Weblogic Cluster Console
 
Weblogic Cluster monitoring
Weblogic Cluster monitoringWeblogic Cluster monitoring
Weblogic Cluster monitoring
 
Weblogic Cluster Installation and Upgradation
Weblogic Cluster Installation and UpgradationWeblogic Cluster Installation and Upgradation
Weblogic Cluster Installation and Upgradation
 
Weblogic cluster console
Weblogic cluster consoleWeblogic cluster console
Weblogic cluster console
 
Weblogic Cluster Application deployment
Weblogic Cluster Application deploymentWeblogic Cluster Application deployment
Weblogic Cluster Application deployment
 
Weblogic Cluster configuration
Weblogic Cluster configurationWeblogic Cluster configuration
Weblogic Cluster configuration
 
Weblogic snmp
Weblogic snmpWeblogic snmp
Weblogic snmp
 
Weblogic cluster
Weblogic clusterWeblogic cluster
Weblogic cluster
 
Code-Review-Principles-Process-and-Tools (1)
Code-Review-Principles-Process-and-Tools (1)Code-Review-Principles-Process-and-Tools (1)
Code-Review-Principles-Process-and-Tools (1)
 
September 2013 lok kalyan setu
September 2013 lok kalyan setuSeptember 2013 lok kalyan setu
September 2013 lok kalyan setu
 
October 2013 lok kalyan setu
October 2013 lok kalyan setuOctober 2013 lok kalyan setu
October 2013 lok kalyan setu
 
November 2013 lok kalyan setu
November 2013 lok kalyan setuNovember 2013 lok kalyan setu
November 2013 lok kalyan setu
 

Recently uploaded

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 

Recently uploaded (20)

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 

Weblogic Cluster command line

  • 2. weblogic.Admin utility ● Used to perform Administrative functions from command prompt ● A Java Class ● Must be added to classpath and PATH ● Can be used in shell scripts ● For multiple invocations BATCHUPDATE can be used. ● Syntax:- java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ][ User Credentials Arguments ] COMMAND-NAME command-arguments
  • 3. weblogic.Admin STORECONFIG Command Creates a user-configuration file and an associated key file. The user- configuration file contains an encrypted username and password. The key file contains a secret key that is used to encrypt and decrypt the username and password. Only the key file that originally encrypted the username and password can decrypt the values. If you lose the key file, you must create a new user-configuration and key file pair. java weblogic.Admin -username username[-password password] [ -userconfigfile config-file] [ -userkeyfile keyfile] STOREUSERCONFIG
  • 4. weblogic.Admin RESUME Command Moves a server instance from the STANDBY state to the RUNNING state. Syntax java [ SSL Arguments ] weblogic.Admin [-url URL] [ User Credentials Arguments ] RESUME [targetServer]
  • 5. weblogic.Admin SHUTDOWN Command Gracefully shuts down the specified WebLogic Server instance.A graceful shutdown gives WebLogic Server subsystems time to complete certain application processing currently in progress. By default, a server instance waits for pending HTTP sessions to finish as a part of the graceful shutdown. You can override this behavior using the -ignoreExistingSessions argument. java [ SSL Arguments ] [-Dweblogic.system.BootIdentityFile=filename [- Dweblogic.RootDirectory=path] ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] SHUTDOWN [- ignoreExistingSessions] [-timeout seconds] [targetServer] (Deprecated)java [ SSL Arguments ] [- Dweblogic.system.BootIdentityFile=filename [-Dweblogic.RootDirectory=path] ] weblogic.Admin [ Connection Arguments ]
  • 6. weblogic.Admin CANCEL_SHUTDOWN Command (Deprecated) The CANCEL_SHUTDOWN command cancels the SHUTDOWN command for a specified WebLogic Server. When you use the SHUTDOWN command, you can specify a delay (in seconds). An administrator may cancel the shutdown command during the delay period. Be aware that the SHUTDOWN command disables logins, and they remain disabled even after cancelling the shutdown. Use the UNLOCK command to re-enable logins. Syntax java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] CANCEL_SHUTDOWN Example The following example cancels the shutdown of a WebLogic Server instance that runs on a machine named ManagedHost and listens on port 8001: java weblogic.Admin -url ManagedHost:8001 -username weblogic -password weblogic CANCEL_SHUTDOWN
  • 7. weblogic.Admin FORCESHUTDOWN Command Terminates a server instance without waiting for active sessions to complete. If a server instance is in a deadlocked state, it can respond to weblogic.Admin commands only if you have enabled the domain-wide administration port. (A deadlocked server is one in which all threads are struck trying to acquire locks held by other threads.) If you have not already enabled the domain-wide administration port, your only option for shutting down the server instance is to kill the Java process that is running the server. You will lose all session data. Syntax java [ SSL Arguments ] [-Dweblogic.system.BootIdentityFile=filename [- Dweblogic.RootDirectory=path] ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] FORCESHUTDOWN [targetServer]
  • 8. weblogic.Admin DISCOVERMANAGEDSERVER CommandCauses the Administration Server to re-establish administrative control over Managed Servers. If the Administration Server fails while Managed Servers continue to run, or if you shut down the Administration Server while Managed Servers continue to run, you lose the ability to change the configuration or deploy modules to any server in the domain. To regain this administrative ability, you must restart the Administration Server. By default, an Administration Server finds the last known set of Managed Servers and re-establishes a connection. If the Administration Server is unable to automatically re-establish a connection to one or more Managed Servers during its startup cycle, you can use this command to re-establish administrative control. For example, you might have started a Managed Server in the STANDBY state and did not resume the Managed Server before restarting the Administration Server. The Administration Server discovers only Managed Servers that are in the RUNNING state. Other factors can prevent the Administration Server from finding and re-connecting to Managed Servers, and you can use this command any time you need to re-establish a connection. Syntax java [ SSL Arguments ] weblogic.Admin [ -url [protocol://]listen-address:listen-port ]
  • 9. weblogic.Admin LOCK Command (Deprecated) Locks a WebLogic Server instance against non-privileged logins. Any subsequent login attempt initiates a security exception which may contain an optional string message. This command is privileged. It requires the password for the WebLogic Server administrative user. Instead of using the LOCK command, start a server in the STANDBY state. In this state, a server instance responds only to administrative requests over the domain-wide administration port. Syntax java [ SSL Arguments ] weblogic.Admin [ -url [protocol://]listen-address:listen-port ] [ User Credentials Arguments ] LOCK [“stringMessage”]
  • 10. weblogic.Admin START Command Starts a Managed Server using Node Manager. This command requires the following environment: The domain’s Administration Server must be running. The Node Manager must be running on the Managed Server’s host machine. The Managed Server must be configured to communicate with a Node Manager. The Startup Mode field in the Administration Console determines whether a Managed Server starts in the RUNNING state or STANDBY state. Syntax java [ SSL Arguments ] weblogic.Admin [-url URL] [ User Credentials Arguments ] START targetServer
  • 11. weblogic.Admin STARTINSTANDBY Command (Deprecated) Starts a Managed Server using Node Manager. In previous releases, this command started a Managed Server using the Node Manager andplaced it in a STANDBY state. In this state, a server is not accessible to requests from external clients. In the current release, the Startup Mode field in the Administration Console determines the state in which a Managed Server starts, regardless of which command you use to start the server Instance. Syntax java [ SSL Arguments ] weblogic.Admin [-url URL] [ User Credentials Arguments ] STARTINSTANDBY targetServer
  • 12. weblogic.Admin UNLOCK Command (Deprecated) Unlocks the specified WebLogic Server after a LOCK operation. This command is deprecated because the LOCK command is deprecated. Instead of LOCK and UNLOCK, use STARTINSTANDY and RESUME. Syntax java [ SSL Arguments ] weblogic.Admin [-url URL] [ User Credentials Arguments ] UNLOCK Example In the following example, an administrator named adminuser with a password of gumby1234 requests the unlocking of the WebLogic Server listening on port 7001 on machine localhost: java weblogic.Admin -url localhost:7001 -username adminuser -password gumby1234 UNLOCK
  • 13. weblogic.Admin CONNECT Command Connects to a WebLogic Server instance and returns two numbers representing the total time for each round trip and the average amount of time (in milliseconds) that each connection is Maintained. Syntax java [ SSL Arguments ] weblogic.Admin [-url URL] [ User Credentials Arguments ] CONNECT [count]
  • 14. weblogic.Admin GETSTATE Command Returns the current state of a server. If a server instance is in a deadlocked state, it can respond to weblogic.Admin commands only if you have enabled the domain-wide administration port. (A deadlocked server is one in which all threads are struck trying to acquire locks held by other threads.) If you have not already enabled the domain-wide administration port, your only option is to shut down the server instance by killing the Java process that is running the server. You will lose all session data. Syntax java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] GETSTATE [targetServer]
  • 15. weblogic.Admin HELP Command Provides syntax and usage information for all WebLogic Server commands (by default) or for a single command if a command value is specified on the HELP command line. You can issue this command from any computer on which the WebLogic Server is installed. You do not need to start a server instance to invoke this command, nor do you need to supply user credentials. Syntax java weblogic.Admin HELP [COMMAND] Example In the following example, information about using the PING command is requested: java weblogic.Admin HELP PING The command returns the following: Usage: java [SSL trust options] weblogic.Admin [ [-url | -adminurl] [<protocol>://]<listen- address>:<port>]
  • 16. weblogic.Admin LIST Command Lists the bindings of a node in the JNDI naming tree. Syntax java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] LIST [JNDIcontextName]
  • 17. weblogic.Admin PING Command Sends a message to verify that a WebLogic Server instance is listening on a port and is ready to accept WebLogic client requests. Syntax java [ SSL Arguments ] weblogic.Admin [ Connection Arguments ] [ User Credentials Arguments ] PING [roundTrips] [messageLength]