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]
Ad

More Related Content

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
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 - 2010
Jagadish Prasath
 
Tomcat
TomcatTomcat
Tomcat
Venkat Pinagadi
 
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'Vin
Enkitec
 
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
 
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 - 2010
Jagadish 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
 
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
 
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'Vin
Enkitec
 
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
 

Viewers also liked (16)

7th PreAlg - April11
7th PreAlg - April117th PreAlg - April11
7th PreAlg - April11
jdurst65
 
The birth of a starr
The birth of a starrThe birth of a starr
The birth of a starr
adrianna1
 
themadpotter
 
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
 
HR Contacts
HR ContactsHR Contacts
HR Contacts
guestbd88b6
 
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
 
Mapas mentales
Mapas mentalesMapas mentales
Mapas mentales
Colegio de Estudios Científicos y Tecnologicos del Estado de Chihuahua - Plantel 6
 
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 Mi
Andre 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)
 
Ad

Similar to Weblogic Cluster command line (20)

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
 
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
 
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
 
Weblogic
WeblogicWeblogic
Weblogic
sudeeporcl
 
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
 
Java Servlets & JSP
Java Servlets & JSPJava Servlets & JSP
Java Servlets & JSP
Manjunatha RK
 
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 Concepts
James Bayer
 
Weblogicserveroverviewtopologyconfigurationadministration
WeblogicserveroverviewtopologyconfigurationadministrationWeblogicserveroverviewtopologyconfigurationadministration
Weblogicserveroverviewtopologyconfigurationadministration
Gokhan Fazli Celik
 
WLS
WLSWLS
WLS
Bebo Yu
 
WebLogic FAQs
WebLogic FAQsWebLogic FAQs
WebLogic FAQs
Amit Sharma
 
AS7 and CLI
AS7 and CLIAS7 and CLI
AS7 and CLI
JBug Italy
 
Cli jbug
Cli jbugCli jbug
Cli jbug
maeste
 
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
 
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
 
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
 
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
 
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
 
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 Concepts
James Bayer
 
Weblogicserveroverviewtopologyconfigurationadministration
WeblogicserveroverviewtopologyconfigurationadministrationWeblogicserveroverviewtopologyconfigurationadministration
Weblogicserveroverviewtopologyconfigurationadministration
Gokhan Fazli Celik
 
Cli jbug
Cli jbugCli jbug
Cli jbug
maeste
 
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
 
Ad

More from Aditya Bhuyan (20)

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 setu
Aditya Bhuyan
 
November 2013 lok kalyan setu
November 2013 lok kalyan setuNovember 2013 lok kalyan setu
November 2013 lok kalyan setu
Aditya Bhuyan
 
Weblogic Cluster Security
Weblogic Cluster SecurityWeblogic Cluster Security
Weblogic Cluster Security
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
 
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 setu
Aditya Bhuyan
 
November 2013 lok kalyan setu
November 2013 lok kalyan setuNovember 2013 lok kalyan setu
November 2013 lok kalyan setu
Aditya Bhuyan
 

Recently uploaded (20)

HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Build 3D Animated Safety Induction - Tech EHS
Build 3D Animated Safety Induction - Tech EHSBuild 3D Animated Safety Induction - Tech EHS
Build 3D Animated Safety Induction - Tech EHS
TECH EHS Solution
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
TrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token ListingTrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token Listing
Trs Labs
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Build 3D Animated Safety Induction - Tech EHS
Build 3D Animated Safety Induction - Tech EHSBuild 3D Animated Safety Induction - Tech EHS
Build 3D Animated Safety Induction - Tech EHS
TECH EHS Solution
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
TrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token ListingTrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token Listing
Trs Labs
 

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]