[Installation, Configuration & DEPLOYMENT] - Re: shutting down jboss server running on a machine having m
by Mahi_nath
Hi again...
I got new problem in shutting down jBoss server in linux machine.
As i mentioned earlier
anonymous wrote :
| I have JBoss server running on a single machine having multiple IPs (say xxx.xxx.xxx.108,xxx.xxx.xxx.109,and so on), i need to bind my application only to particular IP(say xxx.xxx.xxx.108).
|
now i can able to bind my application to single ip in linux but i was not able to shutdown the jboss server.
Before binding my application to single IP(i.e;server is bound to all IPs)the shutdown results are as follows:
anonymous wrote : [system@bin] sh run.sh
| [system@bin]netstat -anp | grep 9170
| (Not all processes could be identified, non-owned process info
| will not be shown, you would have to be root to see it all.)
| tcp 0 0 :::53825 :::* LISTEN 9170/java
| tcp 0 0 :::33162 :::* LISTEN 9170/java
| tcp 0 0 :::33515 :::* LISTEN 9170/java
| tcp 0 0 :::8500 :::* LISTEN 9170/java
| tcp 0 0 ::ffff:127.0.0.1:57876 ::ffff:127.0.0.1:33336 ESTABLISHED 9170/java
| tcp 0 0 ::ffff:127.0.0.1:58621 ::ffff:127.0.0.1:33336 ESTABLISHED 9170/java
| tcp 0 0 ::ffff:127.0.0.1:57022 ::ffff:127.0.0.1:33336 ESTABLISHED 9170/java
| tcp 0 0 ::ffff:127.0.0.1:50975 ::ffff:127.0.0.1:33336 ESTABLISHED 9170/java
| udp 0 0 :::1514 :::* 9170/java
| unix 2 [ ] STREAM CONNECTED 86960 9170/java
| [system@bin] sh shutdown.sh [Successful]
|
After binding to single IP the shutdown results are shown below :
anonymous wrote : [system@bin] run.sh -c default -b 192.168.111.234
| [system@bin]netstat -anp | grep 9444
| (Not all processes could be identified, non-owned process info
| will not be shown, you would have to be root to see it all.)
| tcp 0 0 ::ffff:192.168.111.23:39360 :::* LISTEN 9444/java
| tcp 0 0 ::ffff:192.168.111.23:54371 :::* LISTEN 9444/java
| tcp 0 0 ::ffff:192.168.111.23:44686 :::* LISTEN 9444/java
| tcp 0 0 ::ffff:192.168.111.234:8500 :::* LISTEN 9444/java
| tcp 0 0 ::ffff:127.0.0.1:33209 ::ffff:127.0.0.1:33336 ESTABLISHED 9444/java
| tcp 0 0 ::ffff:127.0.0.1:60493 ::ffff:127.0.0.1:33336 ESTABLISHED 9444/java
| tcp 0 0 ::ffff:127.0.0.1:57899 ::ffff:127.0.0.1:33336 ESTABLISHED 9444/java
| tcp 0 0 ::ffff:127.0.0.1:56898 ::ffff:127.0.0.1:33336 ESTABLISHED 9444/java
| udp 0 0 :::1514 :::* 9444/java
| unix 2 [ ] STREAM CONNECTED 96875 9444/java
|
| [system@bin] sh shutdown.sh [ failed with ConnectException ]
|
Even tried with the below command : (solution which you have provided me earlier..)
anonymous wrote : [system@bin] sh shutdown.sh -S -s 192.168.111.234:<Naming Service Port>
Still iam getting the same error i mean "failed with ConnectException"
Also i observed that after i bind to single ip , when i netstat iam not able to see the full ip in the results i dont know why?(see above in quote 3, Actually binded IP is 192.168.111.234 but it is displaying only 192.168.111.23)
Please suggest me anything with respect to this....
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4173666#4173666
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4173666
17 years, 7 months
Re: Problem in running the samples of jBPM BPEL
by samk@twinix.com
See Thread at: http://www.techienuggets.com/Detail?tx=31456 Posted on behalf of a User
why no answer?
In Response To:
Dear All
I am going to run the samples of jBPM BPEL 1.1GA and have three questions and it would be great to get appropriate answers.
1) I can deploy the hello sample, but when I want to test the process the following error message is shown:
detect.wsdl:
get.published.wsdl:
check.mapping:
generate.mapping:
detect.mapping.tool:
wstools:
BUILD FAILED
D:\Tools\jbpm\jbpm-bpel-1.1.5\jbpm-bpel-1.1.GA\examples\common\mapping-build.xml
:148: The following error occurred while executing this line:
D:\Tools\jbpm\jbpm-bpel-1.1.5\jbpm-bpel-1.1.GA\examples\common\mapping-build.xml
:92: Error running jbossws:
Also, there is a similar problem in running the purchase sample. As the tutorial indicates, after deploying the process I should run this command: ant deploy.webservice
But the above error message is show.
2)How the froms of the purchase sample are implemented? I mean user must fill out the forms and submit them in order to run several tasks of this process, but it is not clear for me where these forms are defined. Are they defined in the BPEL file?
3) I am very interested to run the purchase sample to see its execution. How can I do this? I mean I want to fill out the forms and track its execution, but I don’t know how to do this. I think that “ant testâ€� only tests this process and does not provide the possibility of running the whole of process.
Thanks a lot for your help,
Arman
17 years, 7 months
[Installation, Configuration & DEPLOYMENT] - Problem With SymLinks, Apache, AJP
by soundz
Hi,
My apache, mod_proxy_ajp configuration is having issues following any symlinks in docroot. Trying to access any URL that is a symlink results in 404.
Here is my setup:
Ubuntu 7.10 64bit
Apache 2.2.4 (installed from respository)
default mod_proxy_ajp install with apache
mod_proxy_ajp configured with JBoss 4.0.5
FollowSymLinks is turned on for all directories and virtual servers. Here are the lines I added to Apache configuration to enable pass-through to Jboss:
| ProxyRequests Off
| <Proxy *>
| Options Indexes FollowSymLinks MultiViews
| AllowOverride None
| Order allow,deny
| Allow from all
| </Proxy>
|
| ProxyPass / ajp://127.0.0.1:8009/
| ProxyPassReverse / ajp://127.0.0.1:8009/
|
I made a simple symlink test with test2.html -> test1.html. To test the permissions, I set them to 777 and tried chowning to root, www-data, my username. All test fail with 404.
If I disable ajp, all symlinks work fine in the default apache DocumentRoot.
Any suggestions?
Thanks,
Jimmy
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4173651#4173651
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4173651
17 years, 7 months