Connecting JConsole to a Local Process


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Connecting JConsole to a Local Process
# 1  
Old 03-08-2010
Connecting JConsole to a Local Process

Why does jconsole doesn't need a username and password for connecting to a Local Process?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To run a local shell script in a remote machine by passing arguments to the local shell script

I need to run a local shell script on a remote machine. I am able to achieve that by executing the command > ssh -qtt user@host < test.sh However, when I try to pass arguments to test.sh it fails. Any pointers would be appreciated. (7 Replies)
Discussion started by: Sree10
7 Replies

2. UNIX for Dummies Questions & Answers

SQL block in a Shell Script connecting to a local and remote DB

Hi All, In a Shell scriipt with a SQL block I want to issue a query against a local DB and a remote DB on a remote server. The shell script is running locally. This is how I connect to the local server. But I want the query to reference remote table in the join. Question can I specify a... (1 Reply)
Discussion started by: daveu7
1 Replies

3. UNIX for Advanced & Expert Users

has no rc.local in /etc, how to auto run cmd in the boot process?

Hi I want to run some cmd before the linux boot up and I want to let it run before sshd service start, any helps? (1 Reply)
Discussion started by: yanglei_fage
1 Replies

4. Programming

Integrating Jconsole with Eclipse

Hi Guys, I was hoping someone has integrated Eclipse with jconsole to monitor their applications. I have not seen this in action . Any help is much appreciated http://images.devshed.com/fds/smilies/smile.gif Thanks (0 Replies)
Discussion started by: aish11
0 Replies

5. AIX

Do I need to configure my local windows to FTP files from local windows to a UNIX AIX server?

Hi Friends, I have this script for ftping files from AIX server to local windows xp. #!/bin/sh HOST='localsystem.net' USER='myid_onlocal' PASSWD='mypwd_onlocal' FILE='file.txt' ##This is a file on server(AIX) ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE... (1 Reply)
Discussion started by: rajsharma
1 Replies

6. IP Networking

can i force connecting to local web server via internet network ?

Hello all this is general question , if i have web server installed in my local pc and i have client that connecting to that web server can i force it always to go via the internet network ? the reason im asking is .. that im noticed when i close my internet connection i still can connect to my... (2 Replies)
Discussion started by: umen
2 Replies

7. UNIX for Dummies Questions & Answers

Monitoring Mbeans on native JVM using jconsole

Hey folks I have an MBean deployed to my native MBean Server. I got the pid for this using the jps utility. Next, I ran the jconsole utility from command line (I am running on a windows box :( ). However, I do not see the pid in the local agents tab for the jconsole app. Am I missing a... (0 Replies)
Discussion started by: jacques83
0 Replies

8. Shell Programming and Scripting

how to get the list of process running in the server from the local machin n unix ?

how to get the list of process running in the server from the local machin n unix ? (3 Replies)
Discussion started by: guhas
3 Replies

9. UNIX for Dummies Questions & Answers

why i have local.profile, local.cshrc,local.login instead of .profile, .login ?

Hello again ! Thanks for response of my first question. there is my second quesiton why i have local.profile instead of .profile file ? my all files in pwd shoes local. before any file. is anybody can tell me about that ? Thanks Abid Malik (5 Replies)
Discussion started by: abidmalik
5 Replies
Login or Register to Ask a Question
apache_mod_perl-108~358::mod_perl-2.0.7::docs::api::ApacUser:Contributed Peapache_mod_perl-108~358::mod_perl-2.0.7::docs::api::Apache2::Process(3)

NAME
Apache2::Process - Perl API for Apache process record Synopsis use Apache2::Process (); use Apache2::ServerRec (); my $proc = $s->process; # global pool cleared on exit my $global_pool = $proc->pool; # configuration pool cleared on restart my $pconf = $proc->pconf; # short program name (e.g. httpd) my $proc_name = $proc->short_name; Description "Apache2::Process" provides the API for the Apache process object, which you can retrieve with "$s->process": use Apache2::ServerRec (); $proc = $s->process; API
"Apache2::Process" provides the following functions and/or methods: "pconf" Get configuration pool object. $p = $proc->pconf(); obj: $proc ( "Apache2::Process object" ) ret: $p ( "APR::Pool object" ) since: 2.0.00 This pool object gets cleared on server restart. "pool" Get the global pool object. $p = $proc->pool(); obj: $proc ( "Apache2::Process object" ) ret: $p ( "APR::Pool object" ) since: 2.0.00 This pool object gets cleared only on (normal) server exit "short_name" The name of the program used to execute the program $short_name = $proc->short_name(); obj: $proc ( "Apache2::Process object" ) ret: $short_name (string) e.g. "httpd" since: 2.0.00 See Also mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.16.2 2011-02apache_mod_perl-108~358::mod_perl-2.0.7::docs::api::Apache2::Process(3)