Tagged Questions
wsadmin is a command shell for administrating IBM Websphere Application Server.
6
votes
3answers
5k views
Remote deployment to Websphere 6.1.x using wsadmin
I am trying to remotely deploy a war file to a websphere application server. I understand this is possible to do using wsadmin, but I am a Websphere newb.
I know I can run wsadmin and connect using ...
3
votes
2answers
1k views
NameSpaceBinding and wsadmin
I am trying to create a StringNameSpaceBinding using the wsadmin tool of Websphere 6.1
Here are the steps i take
set cell [$AdminConfig getid /Cell:cell/]
$AdminConfig create StringNameSpaceBinding ...
2
votes
1answer
150 views
Script interface to install an arbitrary files to all nodes in Websphere?
I'm rather new to wsadmin and the administration client available for Websphere. I was wondering if anyone had an example of deploying arbitrary files to every Node in a Cell? Ideally I am looking for ...
2
votes
0answers
140 views
Orphan IBM JVM process
I have this issue about orphan IBM JVM process being created in the process tree:
For example:
C:\Program Files\IBM\WebSphere\AppServer\bin>wsadmin -lang jython -f "C:\Hello.py"
Hello.py has ...
1
vote
1answer
61 views
How to refresh the Websphere configuration when changed from WSAdmin script?
I have a python script which creates bus destinations. I run the script from WSAdmin and it works fine, but the changes don't show up in the Websphere (WAS) console.
If I logout from the console and ...
1
vote
2answers
51 views
Parsing command line options in Jython 2.1
I'm using Jython 2.1 for wsadmin scripting and want to find a better way of parsing command line options. I'm currently doing this:
-> deploy.py foo bar baz
and then in the script:
foo = ...
1
vote
1answer
95 views
Websphere 7 SIB Queue: how to access queue depth wsadmin command?
I'd like to use the WSADMIN command that is part of WebSphere 7 to query the state of the queues on the system.
Can anyone help me out?
Thanks
1
vote
2answers
134 views
get partial running status of application using jython
Hi I need to know if the application is running partially. using the following command I am able to get info if the application is running.
serverstatus = ...
1
vote
1answer
106 views
Some jython for wsadmin question
I have a few wsadmin-jython questions:
If I write a bunch of jython scripts for webSphere v6.1, will they all still work on websphere v7? (backwards compatibility)
If I wish to call another jython ...
1
vote
0answers
161 views
WebSphere wsadmin ClassNotFound Exceptions
I'm trying to use wsadmin with Jython to deploy an EAR file. Before the actual deployment, I need to run a DB update using a Java class. I'm running into a ClassNotFoundException that isn't making ...
0
votes
0answers
12 views
Is it possible to import WebSphere wsadmin as a jython module?
In WebLogic, there's the WLST (WebLogic Scripting Tool) which is similar to WebSphere wsadmin. The nice thing about WLST is that you can import it as a module into other jython code and use it ...
0
votes
2answers
41 views
How to get newlines in classpath for JMSProvider using wsadmin
I want to create a JMSProvider object with a custom classpath. Here's how I'm doing it in jython:
...
classpath = "a.jar:b.jar:c.jar".replace(":", "\n")
properties = [
['name', name],
...
0
votes
1answer
24 views
What is the WebSphere hierarchy of object types?
The documentation for WebSphere's wsadmin tool is pretty dire. I'm automating deployments and constantly coming across the following scripting exception:
WASX7129E: Cannot create objects of type ...
0
votes
1answer
66 views
List currently active websphere variables in server using wsadmin
how can I list using the wsadmin tool the currently active websphere variables and its values in a node/server ? Additionally, is there a way to filter the results using regular expressions ?
Thanks
0
votes
1answer
79 views
wsadmin: How to inspect existing resource references?
With $AdminApp view <applicationName> -MapResRefToEJB it is possible to list the resource references defined for a deployed EJB module. However, the result of that command is plain text (that in ...
0
votes
2answers
93 views
How do I determine if an application is running using wsadmin Jython script?
I can get a list of instlled applications but how do I get the status using Jython?
0
votes
2answers
70 views
wsadmin: jacl: AdminApp list <scope?> WebSphere 5.x
I am trying to list applications installed on particular server below command works fine on WAS 6.x and 7 however I cannot make the same on WAS 5.x
wsadmin> $AdminApp list ...
0
votes
0answers
163 views
WAS7, wsadmin, AdminTask.extractConfigProperties produces invalid properties?
I'm trying to create a script that silently configures a WebSphere (7) instance with datasources and JMS queues. To do that I'm exporting existing configuration to a properties file:
...
0
votes
1answer
353 views
Modify the default WorkManager in WebSphere 7 using a wsadmin script
I want to raise the maximum number of threads in the default work manager's thread pool using a wsadmin (Jython) script. What is the best approach?
I can't seem to find documentation of a ...
0
votes
1answer
248 views
Jython - How to get the path of the executed script
I've found many answer about the python way but what I found isn't working with jython.
I'm running a jython script using the WebSphere interpreter wsadmin -lang jython -f /path/to/script
I'd like ...
0
votes
2answers
300 views
How do you escape a dash in Jython/Websphere?
I have a Jython script that is used to set up a JDBC datasource on a Websphere 7.0 server. I need to set several properties on that datasource. I am using this code, which works, unless value is '-'.
...
0
votes
0answers
241 views
os.stat().st_uid always returns a value of 0 to wsadmin (jython 2.1)
I come a across a tricky issue developing wsadmin code for websphere. No matter what file I choose, os.stat() seems always to give me back a uid = 0. See the following files:
-rw-r--r-- 1 tn58660 ...
0
votes
3answers
362 views
wsadmin is taking 10 minutes to connect to Application Server
wsadmin is taking about 10 minutes to connect to the WebSphere Application Server 7.0
i tried this:
C:\WAS_HOME\profiles\PROFILE_NAME\bin>wsadmin -lang jython -user -password -javaoption ...
0
votes
2answers
1k views
Adding a Console User to WebSphere in jython
I need to add Administrative users to the WebSphere Console using a Jython script. I tried to turn on the "Log command assistance commands" preference, but it did not log adding a user. It did log ...