Quantcast

no jobtracker to stop,no namenode to stop

classic Classic list List threaded Threaded
17 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

no jobtracker to stop,no namenode to stop

Prabhu Hari Dhanapal
Hi all,

I just installed Hadoop(single node cluster) and tried to start and stop the
nodes , and it said
no jobtracker to stop , no namenode to stop

however the tutorial i used suggest that jobtracker and namenodes should
also have started ? Why does this happen?
am i missing something?

http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)


hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ jps
20671 Jps
20368 DataNode
20463 SecondaryNameNode

hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ ./stop-all.sh
no jobtracker to stop
localhost: no tasktracker to stop
no namenode to stop
localhost: stopping datanode
localhost: stopping secondarynamenode




--
Hari
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Nitesh Bhatia
Check if JAVA_HOME is pointing to /usr/lib/jvm/java-6-sun

On Mon, Nov 16, 2009 at 8:15 PM, Prabhu Hari Dhanapal <
[hidden email]> wrote:

> Hi all,
>
> I just installed Hadoop(single node cluster) and tried to start and stop
> the
> nodes , and it said
> no jobtracker to stop , no namenode to stop
>
> however the tutorial i used suggest that jobtracker and namenodes should
> also have started ? Why does this happen?
> am i missing something?
>
>
> http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)
>
>
> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ jps
> 20671 Jps
> 20368 DataNode
> 20463 SecondaryNameNode
>
> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ ./stop-all.sh
> no jobtracker to stop
> localhost: no tasktracker to stop
> no namenode to stop
> localhost: stopping datanode
> localhost: stopping secondarynamenode
>
>
>
>
> --
> Hari
>



--
Nitesh Bhatia

"Life is never perfect. It just depends where you draw the line."

http://www.linkedin.com/in/niteshbhatia
http://www.twitter.com/niteshbhatia
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Jeff Zhang
In reply to this post by Prabhu Hari Dhanapal
look at the logs of job tracker, maybe you will get some clues.


Jeff Zhang



On Mon, Nov 16, 2009 at 6:45 AM, Prabhu Hari Dhanapal <
[hidden email]> wrote:

> Hi all,
>
> I just installed Hadoop(single node cluster) and tried to start and stop
> the
> nodes , and it said
> no jobtracker to stop , no namenode to stop
>
> however the tutorial i used suggest that jobtracker and namenodes should
> also have started ? Why does this happen?
> am i missing something?
>
>
> http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)<http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_%28Single-Node_Cluster%29>
>
>
> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ jps
> 20671 Jps
> 20368 DataNode
> 20463 SecondaryNameNode
>
> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ ./stop-all.sh
> no jobtracker to stop
> localhost: no tasktracker to stop
> no namenode to stop
> localhost: stopping datanode
> localhost: stopping secondarynamenode
>
>
>
>
> --
> Hari
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Edward Capriolo
On Mon, Nov 16, 2009 at 9:57 AM, Jeff Zhang <[hidden email]> wrote:

> look at the logs of job tracker, maybe you will get some clues.
>
>
> Jeff Zhang
>
>
>
> On Mon, Nov 16, 2009 at 6:45 AM, Prabhu Hari Dhanapal <
> [hidden email]> wrote:
>
>> Hi all,
>>
>> I just installed Hadoop(single node cluster) and tried to start and stop
>> the
>> nodes , and it said
>> no jobtracker to stop , no namenode to stop
>>
>> however the tutorial i used suggest that jobtracker and namenodes should
>> also have started ? Why does this happen?
>> am i missing something?
>>
>>
>> http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)<http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_%28Single-Node_Cluster%29>
>>
>>
>> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ jps
>> 20671 Jps
>> 20368 DataNode
>> 20463 SecondaryNameNode
>>
>> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ ./stop-all.sh
>> no jobtracker to stop
>> localhost: no tasktracker to stop
>> no namenode to stop
>> localhost: stopping datanode
>> localhost: stopping secondarynamenode
>>
>>
>>
>>
>> --
>> Hari
>>
>


The issue here is that these resources failed to start. What happens
here is as soon as the java process is started the system returns an
ok status to the script. However the processes die moments later as
they start up.

For example if you start the namenode, script returns ok, namenode
runs and realizes its dfs.name directory is not formatted. Then it
stops.

Generally after starting a hadoop process, tail the log it creates for
a few seconds and make sure it REALLY starts up. Really the scripts
should do more pre-startup checking, but the scripts could not test
for every possible condition that could cause hadoop not to start.

Also for long running deamons the pid files are written to /tmp see
bin/hadoop-daemon.sh
If something is cleaning /tmp stop arguments are unable to find the pid.

That is shell scripting for you :)
Edward
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Prabhu Hari Dhanapal
@ Nitesh , Jeff & Ed

Thanks guys !! It was a mistake in the configuration  file !! It works now !
..

8408 Jps
8109 DataNode
8370 TaskTracker
8204 SecondaryNameNode
8281 JobTracker


Except for " TaskTracker$Child " !!




On Mon, Nov 16, 2009 at 10:57 AM, Edward Capriolo <[hidden email]>wrote:

> On Mon, Nov 16, 2009 at 9:57 AM, Jeff Zhang <[hidden email]> wrote:
> > look at the logs of job tracker, maybe you will get some clues.
> >
> >
> > Jeff Zhang
> >
> >
> >
> > On Mon, Nov 16, 2009 at 6:45 AM, Prabhu Hari Dhanapal <
> > [hidden email]> wrote:
> >
> >> Hi all,
> >>
> >> I just installed Hadoop(single node cluster) and tried to start and stop
> >> the
> >> nodes , and it said
> >> no jobtracker to stop , no namenode to stop
> >>
> >> however the tutorial i used suggest that jobtracker and namenodes should
> >> also have started ? Why does this happen?
> >> am i missing something?
> >>
> >>
> >>
> http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)<http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_%28Single-Node_Cluster%29>
> <
> http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_%28Single-Node_Cluster%29
> >
> >>
> >>
> >> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ jps
> >> 20671 Jps
> >> 20368 DataNode
> >> 20463 SecondaryNameNode
> >>
> >> hadoop@pdhanapa-laptop:/home/pdhanapa/Desktop/hadoop/bin$ ./stop-all.sh
> >> no jobtracker to stop
> >> localhost: no tasktracker to stop
> >> no namenode to stop
> >> localhost: stopping datanode
> >> localhost: stopping secondarynamenode
> >>
> >>
> >>
> >>
> >> --
> >> Hari
> >>
> >
>
>
> The issue here is that these resources failed to start. What happens
> here is as soon as the java process is started the system returns an
> ok status to the script. However the processes die moments later as
> they start up.
>
> For example if you start the namenode, script returns ok, namenode
> runs and realizes its dfs.name directory is not formatted. Then it
> stops.
>
> Generally after starting a hadoop process, tail the log it creates for
> a few seconds and make sure it REALLY starts up. Really the scripts
> should do more pre-startup checking, but the scripts could not test
> for every possible condition that could cause hadoop not to start.
>
> Also for long running deamons the pid files are written to /tmp see
> bin/hadoop-daemon.sh
> If something is cleaning /tmp stop arguments are unable to find the pid.
>
> That is shell scripting for you :)
> Edward
>



--
Hari
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

ursbrbalaji

Hi Prabhu,

I am facing exactly the same problem. I too followed the steps in the below
link.

Please let me know which configuration file was modified and what were the
changes.

Thanks,
Balaji


--
View this message in context: http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p2450308.html
Sent from the Users mailing list archive at Nabble.com.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

ursbrbalaji
In reply to this post by Prabhu Hari Dhanapal
Hi Prabhu,

I am facing exactly the same problem. I too followed the steps in the below link.

http://www.michael-noll.com/tutorials/running-hadoop-on-ubuntu-linux-single-node-cluster/ 

Please let me know which configuration file was modified and what were the changes.

Thanks,
Balaji
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

madhu phatak
In reply to this post by ursbrbalaji
Please see the job tracker logs

On Tue, Feb 8, 2011 at 3:54 PM, ursbrbalaji <[hidden email]> wrote:

>
> Hi Prabhu,
>
> I am facing exactly the same problem. I too followed the steps in the below
> link.
>
> Please let me know which configuration file was modified and what were the
> changes.
>
> Thanks,
> Balaji
>
>
> --
> View this message in context:
> http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p2450308.html
> Sent from the Users mailing list archive at Nabble.com.
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

ahmed nagy
In reply to this post by Prabhu Hari Dhanapal
I am facing the same problem I look in the log files I find this that error

FATAL org.apache.hadoop.mapred.JobTracker: java.net.BindException:
Problem binding to cannonau.isti.cnr.it/146.48.82.190:9001 : Address already in use

I also did a netstat to see whether the port is in use but it does not show that the port is in use I also changed the port and did another netstat and the error is the same
any ideas ? please help
when i stop hadoop here is what i get  there is no namenode to stop and there is no job tracker
ahmednagy@cannonau:~/HadoopStandalone/hadoop-0.21.0/bin$ ./stop-all.sh
This script is Deprecated. Instead use stop-dfs.sh and stop-mapred.sh
no namenode to stop
n01: stopping datanode
n02: stopping datanode
n07: stopping datanode
n06: stopping datanode
n03: stopping datanode
n04: stopping datanode
n08: stopping datanode
n05: stopping datanode
localhost: no secondarynamenode to stop
no jobtracker to stop
n03: stopping tasktracker
n01: stopping tasktracker
n04: stopping tasktracker
n06: stopping tasktracker
n02: stopping tasktracker
n05: stopping tasktracker
n08: stopping tasktracker
n07: stopping tasktracker



I made jps

and here is the result
1580 Jps
20972 RunJar
22216 RunJar


2011-02-08 15:25:45,610 INFO org.apache.hadoop.mapred.JobTracker: STARTUP_MSG:
/************************************************************
STARTUP_MSG: Starting JobTracker
STARTUP_MSG:   host = cannonau.isti.cnr.it/146.48.82.190
STARTUP_MSG:   args = []
STARTUP_MSG:   version = 0.21.0
STARTUP_MSG:   classpath = /home/ahmednagy/HadoopStandalone/hadoop-0.21.0/bin/../conf:/usr/lib/jvm/java-6-sun/lib/tools.jar:/home/ahmednagy/HadoopStandalone$
STARTUP_MSG:   build = https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.21 -r 985326; compiled by 'tomwhite' on Tue Aug 17 01:02:28 EDT 2010
************************************************************/
2011-02-08 15:25:46,737 INFO org.apache.hadoop.security.Groups: Group mapping impl=org.apache.hadoop.security.ShellBasedUnixGroupsMapping; cacheTimeout=3000$
2011-02-08 15:25:46,752 INFO org.apache.hadoop.mapred.JobTracker: Starting jobtracker with owner as ahmednagy and supergroup as supergroup
2011-02-08 15:25:46,755 INFO org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager: Updating the current master key for generatin$
2011-02-08 15:25:46,758 INFO org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager: Starting expired delegation token remover thr$
2011-02-08 15:25:46,759 INFO org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager: Updating the current master key for generatin$
2011-02-08 15:25:46,760 INFO org.apache.hadoop.mapred.JobTracker: Scheduler configured with (memSizeForMapSlotOnJT, memSizeForReduceSlotOnJT, limitMaxMemFor$
2011-02-08 15:25:46,762 INFO org.apache.hadoop.util.HostsFileReader: Refreshing hosts (include/exclude) list
2011-02-08 15:25:46,791 INFO org.apache.hadoop.mapred.QueueManager: AllQueues : {default=default}; LeafQueues : {default=default}
2011-02-08 15:25:46,873
FATAL org.apache.hadoop.mapred.JobTracker: java.net.BindException:
Problem binding to cannonau.isti.cnr.it/146.48.82.190:9001 : Address already in use
        at org.apache.hadoop.ipc.Server.bind(Server.java:218)
        at org.apache.hadoop.ipc.Server$Listener.<init>(Server.java:289)
        at org.apache.hadoop.ipc.Server.<init>(Server.java:1443)
        at org.apache.hadoop.ipc.RPC$Server.<init>(RPC.java:343)
        at org.apache.hadoop.ipc.WritableRpcEngine$Server.<init>(WritableRpcEngine.java:324)
        at org.apache.hadoop.ipc.WritableRpcEngine.getServer(WritableRpcEngine.java:284)
        at org.apache.hadoop.ipc.WritableRpcEngine.getServer(WritableRpcEngine.java:45)
        at org.apache.hadoop.ipc.RPC.getServer(RPC.java:331)
        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:1450)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:258)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:250)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:245)
        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:4164)
Caused by: java.net.BindException: Address already in use
        at sun.nio.ch.Net.bind(Native Method)
        at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)
        at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59)
        at org.apache.hadoop.ipc.Server.bind(Server.java:216)
        ... 12 more

2011-02-08 15:25:46,875 INFO org.apache.hadoop.mapred.JobTracker: SHUTDOWN_MSG:
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

rahul patodi
Please check
1. Required port should be free
2. Another instance of hadoop should not be running


On Tue, Feb 8, 2011 at 9:58 PM, ahmed nagy <[hidden email]>wrote:

>
> I am facing the same problem I look in the log files I find this that error
>
> FATAL org.apache.hadoop.mapred.JobTracker: java.net.BindException:
> Problem binding to cannonau.isti.cnr.it/146.48.82.190:9001 : Address
> already
> in use
>
> I also did a netstat to see whether the port is in use but it does not show
> that the port is in use I also changed the port and did another netstat and
> the error is the same
> any ideas ? please help
> when i stop hadoop here is what i get  there is no namenode to stop and
> there is no job tracker
> ahmednagy@cannonau:~/HadoopStandalone/hadoop-0.21.0/bin$ ./stop-all.sh
> This script is Deprecated. Instead use stop-dfs.sh and stop-mapred.sh
> no namenode to stop
> n01: stopping datanode
> n02: stopping datanode
> n07: stopping datanode
> n06: stopping datanode
> n03: stopping datanode
> n04: stopping datanode
> n08: stopping datanode
> n05: stopping datanode
> localhost: no secondarynamenode to stop
> no jobtracker to stop
> n03: stopping tasktracker
> n01: stopping tasktracker
> n04: stopping tasktracker
> n06: stopping tasktracker
> n02: stopping tasktracker
> n05: stopping tasktracker
> n08: stopping tasktracker
> n07: stopping tasktracker
>
>
>
> I made jps
>
> and here is the result
> 1580 Jps
> 20972 RunJar
> 22216 RunJar
>
>
> 2011-02-08 15:25:45,610 INFO org.apache.hadoop.mapred.JobTracker:
> STARTUP_MSG:
> /************************************************************
> STARTUP_MSG: Starting JobTracker
> STARTUP_MSG:   host = cannonau.isti.cnr.it/146.48.82.190
> STARTUP_MSG:   args = []
> STARTUP_MSG:   version = 0.21.0
> STARTUP_MSG:   classpath =
>
> /home/ahmednagy/HadoopStandalone/hadoop-0.21.0/bin/../conf:/usr/lib/jvm/java-6-sun/lib/tools.jar:/home/ahmednagy/HadoopStandalone$
> STARTUP_MSG:   build =
> https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.21 -r
> 985326; compiled by 'tomwhite' on Tue Aug 17 01:02:28 EDT 2010
> ************************************************************/
> 2011-02-08 15:25:46,737 INFO org.apache.hadoop.security.Groups: Group
> mapping impl=org.apache.hadoop.security.ShellBasedUnixGroupsMapping;
> cacheTimeout=3000$
> 2011-02-08 15:25:46,752 INFO org.apache.hadoop.mapred.JobTracker: Starting
> jobtracker with owner as ahmednagy and supergroup as supergroup
> 2011-02-08 15:25:46,755 INFO
>
> org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager:
> Updating the current master key for generatin$
> 2011-02-08 15:25:46,758 INFO
>
> org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager:
> Starting expired delegation token remover thr$
> 2011-02-08 15:25:46,759 INFO
>
> org.apache.hadoop.security.token.delegation.AbstractDelegationTokenSecretManager:
> Updating the current master key for generatin$
> 2011-02-08 15:25:46,760 INFO org.apache.hadoop.mapred.JobTracker: Scheduler
> configured with (memSizeForMapSlotOnJT, memSizeForReduceSlotOnJT,
> limitMaxMemFor$
> 2011-02-08 15:25:46,762 INFO org.apache.hadoop.util.HostsFileReader:
> Refreshing hosts (include/exclude) list
> 2011-02-08 15:25:46,791 INFO org.apache.hadoop.mapred.QueueManager:
> AllQueues : {default=default}; LeafQueues : {default=default}
> 2011-02-08 15:25:46,873
> FATAL org.apache.hadoop.mapred.JobTracker: java.net.BindException:
> Problem binding to cannonau.isti.cnr.it/146.48.82.190:9001 : Address
> already
> in use
>        at org.apache.hadoop.ipc.Server.bind(Server.java:218)
>        at org.apache.hadoop.ipc.Server$Listener.<init>(Server.java:289)
>        at org.apache.hadoop.ipc.Server.<init>(Server.java:1443)
>        at org.apache.hadoop.ipc.RPC$Server.<init>(RPC.java:343)
>        at
>
> org.apache.hadoop.ipc.WritableRpcEngine$Server.<init>(WritableRpcEngine.java:324)
>        at
>
> org.apache.hadoop.ipc.WritableRpcEngine.getServer(WritableRpcEngine.java:284)
>        at
>
> org.apache.hadoop.ipc.WritableRpcEngine.getServer(WritableRpcEngine.java:45)
>        at org.apache.hadoop.ipc.RPC.getServer(RPC.java:331)
>        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:1450)
>        at
> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:258)
>        at
> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:250)
>        at
> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:245)
>        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:4164)
> Caused by: java.net.BindException: Address already in use
>        at sun.nio.ch.Net.bind(Native Method)
>        at
> sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:119)
>        at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:59)
>        at org.apache.hadoop.ipc.Server.bind(Server.java:216)
>        ... 12 more
>
> 2011-02-08 15:25:46,875 INFO org.apache.hadoop.mapred.JobTracker:
> SHUTDOWN_MSG:
>
> --
> View this message in context:
> http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p2452336.html
> Sent from the Users mailing list archive at Nabble.com.
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

ursbrbalaji
In reply to this post by madhu phatak

Hi Madhu,

The jobtracker logs show the following exception.

2011-02-09 16:24:51,244 INFO org.apache.hadoop.mapred.JobTracker: STARTUP_MSG:
/************************************************************
STARTUP_MSG: Starting JobTracker
STARTUP_MSG:   host = BRBALAJI-PC/172.17.168.45
STARTUP_MSG:   args = []
STARTUP_MSG:   version = 0.20.2
STARTUP_MSG:   build = https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20 -r 911707; compiled by 'chrisdo' on Fri Feb 19 08:07:34 UTC 2010
************************************************************/
2011-02-09 16:24:51,357 INFO org.apache.hadoop.mapred.JobTracker: Scheduler configured with (memSizeForMapSlotOnJT, memSizeForReduceSlotOnJT, limitMaxMemForMapTasks, limitMaxMemForReduceTasks) (-1, -1, -1, -1)
2011-02-09 16:24:51,421 INFO org.apache.hadoop.ipc.metrics.RpcMetrics: Initializing RPC Metrics with hostName=JobTracker, port=54311
2011-02-09 16:24:56,538 INFO org.mortbay.log: Logging to org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.Slf4jLog
2011-02-09 16:24:56,703 INFO org.apache.hadoop.http.HttpServer: Port returned by webServer.getConnectors()[0].getLocalPort() before open() is -1. Opening the listener on 50030
2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer: listener.getLocalPort() returned 50030 webServer.getConnectors()[0].getLocalPort() returned 50030
2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer: Jetty bound to port 50030
2011-02-09 16:24:56,704 INFO org.mortbay.log: jetty-6.1.14
2011-02-09 16:24:57,394 INFO org.mortbay.log: Started SelectChannelConnector@0.0.0.0:50030
2011-02-09 16:24:57,395 INFO org.apache.hadoop.metrics.jvm.JvmMetrics: Initializing JVM Metrics with processName=JobTracker, sessionId=
2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker: JobTracker up at: 54311
2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker: JobTracker webserver: 50030
2011-02-09 16:24:58,710 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 0 time(s).
2011-02-09 16:24:59,711 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 1 time(s).
2011-02-09 16:25:00,712 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 2 time(s).
2011-02-09 16:25:01,713 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 3 time(s).
2011-02-09 16:25:02,713 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 4 time(s).
2011-02-09 16:25:03,714 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 5 time(s).
2011-02-09 16:25:04,715 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 6 time(s).
2011-02-09 16:25:05,715 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 7 time(s).
2011-02-09 16:25:06,716 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 8 time(s).
2011-02-09 16:25:07,717 INFO org.apache.hadoop.ipc.Client: Retrying connect to server: localhost/127.0.0.1:54310. Already tried 9 time(s).
2011-02-09 16:25:07,722 INFO org.apache.hadoop.mapred.JobTracker: problem cleaning system directory: null
java.net.ConnectException: Call to localhost/127.0.0.1:54310 failed on connection exception: java.net.ConnectException: Connection refused
        at org.apache.hadoop.ipc.Client.wrapException(Client.java:767)
        at org.apache.hadoop.ipc.Client.call(Client.java:743)
        at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220)
        at $Proxy4.getProtocolVersion(Unknown Source)
        at org.apache.hadoop.ipc.RPC.getProxy(RPC.java:359)
        at org.apache.hadoop.hdfs.DFSClient.createRPCNamenode(DFSClient.java:106)
        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:207)
        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:170)
        at org.apache.hadoop.hdfs.DistributedFileSystem.initialize(DistributedFileSystem.java:82)
        at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1378)
        at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:66)
        at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1390)
        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:196)
        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:95)
        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:1665)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:183)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:175)
        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:3702)
Caused by: java.net.ConnectException: Connection refused
        at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574)
        at org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
        at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:404)
        at org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:304)
        at org.apache.hadoop.ipc.Client$Connection.access$1700(Client.java:176)
        at org.apache.hadoop.ipc.Client.getConnection(Client.java:860)
        at org.apache.hadoop.ipc.Client.call(Client.java:720)
        ... 16 more
2011-02-09 16:25:08,899 INFO org.apache.hadoop.mapred.JobTracker: SHUTDOWN_MSG:
/************************************************************
SHUTDOWN_MSG: Shutting down JobTracker at BRBALAJI-PC/172.17.168.45
************************************************************/
Please let me know what might be the problem.

Thanks,
B R Balaji
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

madhu phatak
IP address with not work ..You have to put the hostnames in every
configuration file.
On Wed, Feb 9, 2011 at 2:01 PM, ursbrbalaji <[hidden email]> wrote:

>
>
> Hi Madhu,
>
> The jobtracker logs show the following exception.
>
> 2011-02-09 16:24:51,244 INFO org.apache.hadoop.mapred.JobTracker:
> STARTUP_MSG:
> /************************************************************
> STARTUP_MSG: Starting JobTracker
> STARTUP_MSG:   host = BRBALAJI-PC/172.17.168.45
> STARTUP_MSG:   args = []
> STARTUP_MSG:   version = 0.20.2
> STARTUP_MSG:   build =
> https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20 -r
> 911707; compiled by 'chrisdo' on Fri Feb 19 08:07:34 UTC 2010
> ************************************************************/
> 2011-02-09 16:24:51,357 INFO org.apache.hadoop.mapred.JobTracker: Scheduler
> configured with (memSizeForMapSlotOnJT, memSizeForReduceSlotOnJT,
> limitMaxMemForMapTasks, limitMaxMemForReduceTasks) (-1, -1, -1, -1)
> 2011-02-09 16:24:51,421 INFO org.apache.hadoop.ipc.metrics.RpcMetrics:
> Initializing RPC Metrics with hostName=JobTracker, port=54311
> 2011-02-09 16:24:56,538 INFO org.mortbay.log: Logging to
> org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via
> org.mortbay.log.Slf4jLog
> 2011-02-09 16:24:56,703 INFO org.apache.hadoop.http.HttpServer: Port
> returned by webServer.getConnectors()[0].getLocalPort() before open() is
> -1.
> Opening the listener on 50030
> 2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer:
> listener.getLocalPort() returned 50030
> webServer.getConnectors()[0].getLocalPort() returned 50030
> 2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer: Jetty bound
> to port 50030
> 2011-02-09 16:24:56,704 INFO org.mortbay.log: jetty-6.1.14
> 2011-02-09 16:24:57,394 INFO org.mortbay.log: Started
> SelectChannelConnector@0.0.0.0:50030
> 2011-02-09 16:24:57,395 INFO org.apache.hadoop.metrics.jvm.JvmMetrics:
> Initializing JVM Metrics with processName=JobTracker, sessionId=
> 2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker:
> JobTracker
> up at: 54311
> 2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker:
> JobTracker
> webserver: 50030
> 2011-02-09 16:24:58,710 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 0 time(s).
> 2011-02-09 16:24:59,711 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 1 time(s).
> 2011-02-09 16:25:00,712 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 2 time(s).
> 2011-02-09 16:25:01,713 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 3 time(s).
> 2011-02-09 16:25:02,713 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 4 time(s).
> 2011-02-09 16:25:03,714 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 5 time(s).
> 2011-02-09 16:25:04,715 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 6 time(s).
> 2011-02-09 16:25:05,715 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 7 time(s).
> 2011-02-09 16:25:06,716 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 8 time(s).
> 2011-02-09 16:25:07,717 INFO org.apache.hadoop.ipc.Client: Retrying connect
> to server: localhost/127.0.0.1:54310. Already tried 9 time(s).
> 2011-02-09 16:25:07,722 INFO org.apache.hadoop.mapred.JobTracker: problem
> cleaning system directory: null
> java.net.ConnectException: Call to localhost/127.0.0.1:54310 failed on
> connection exception: java.net.ConnectException: Connection refused
>        at org.apache.hadoop.ipc.Client.wrapException(Client.java:767)
>        at org.apache.hadoop.ipc.Client.call(Client.java:743)
>        at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220)
>        at $Proxy4.getProtocolVersion(Unknown Source)
>        at org.apache.hadoop.ipc.RPC.getProxy(RPC.java:359)
>        at
> org.apache.hadoop.hdfs.DFSClient.createRPCNamenode(DFSClient.java:106)
>        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:207)
>        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:170)
>        at
>
> org.apache.hadoop.hdfs.DistributedFileSystem.initialize(DistributedFileSystem.java:82)
>        at
> org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1378)
>        at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:66)
>        at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1390)
>        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:196)
>        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:95)
>        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:1665)
>        at
> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:183)
>        at
> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:175)
>        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:3702)
> Caused by: java.net.ConnectException: Connection refused
>        at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
>        at
> sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574)
>        at
>
> org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
>        at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:404)
>        at
> org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:304)
>        at
> org.apache.hadoop.ipc.Client$Connection.access$1700(Client.java:176)
>        at org.apache.hadoop.ipc.Client.getConnection(Client.java:860)
>        at org.apache.hadoop.ipc.Client.call(Client.java:720)
>        ... 16 more
> 2011-02-09 16:25:08,899 INFO org.apache.hadoop.mapred.JobTracker:
> SHUTDOWN_MSG:
> /************************************************************
> SHUTDOWN_MSG: Shutting down JobTracker at BRBALAJI-PC/172.17.168.45
> ************************************************************/
> Please let me know what might be the problem.
>
> Thanks,
> B R Balaji
> --
> View this message in context:
> http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p2457071.html
> Sent from the Users mailing list archive at Nabble.com.
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

madhu phatak
IP address wiLL not work ..You have to put the hostnames in every
configuration file.
On Wed, Feb 9, 2011 at 9:58 PM, madhu phatak <[hidden email]> wrote:

>
> IP address with not work ..You have to put the hostnames in every
> configuration file.
>
> On Wed, Feb 9, 2011 at 2:01 PM, ursbrbalaji <[hidden email]> wrote:
>
>>
>>
>> Hi Madhu,
>>
>> The jobtracker logs show the following exception.
>>
>> 2011-02-09 16:24:51,244 INFO org.apache.hadoop.mapred.JobTracker:
>> STARTUP_MSG:
>> /************************************************************
>> STARTUP_MSG: Starting JobTracker
>> STARTUP_MSG:   host = BRBALAJI-PC/172.17.168.45
>> STARTUP_MSG:   args = []
>> STARTUP_MSG:   version = 0.20.2
>> STARTUP_MSG:   build =
>> https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20 -r
>> 911707; compiled by 'chrisdo' on Fri Feb 19 08:07:34 UTC 2010
>> ************************************************************/
>> 2011-02-09 16:24:51,357 INFO org.apache.hadoop.mapred.JobTracker:
>> Scheduler
>> configured with (memSizeForMapSlotOnJT, memSizeForReduceSlotOnJT,
>> limitMaxMemForMapTasks, limitMaxMemForReduceTasks) (-1, -1, -1, -1)
>> 2011-02-09 16:24:51,421 INFO org.apache.hadoop.ipc.metrics.RpcMetrics:
>> Initializing RPC Metrics with hostName=JobTracker, port=54311
>> 2011-02-09 16:24:56,538 INFO org.mortbay.log: Logging to
>> org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via
>> org.mortbay.log.Slf4jLog
>> 2011-02-09 16:24:56,703 INFO org.apache.hadoop.http.HttpServer: Port
>> returned by webServer.getConnectors()[0].getLocalPort() before open() is
>> -1.
>> Opening the listener on 50030
>> 2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer:
>> listener.getLocalPort() returned 50030
>> webServer.getConnectors()[0].getLocalPort() returned 50030
>> 2011-02-09 16:24:56,704 INFO org.apache.hadoop.http.HttpServer: Jetty
>> bound
>> to port 50030
>> 2011-02-09 16:24:56,704 INFO org.mortbay.log: jetty-6.1.14
>> 2011-02-09 16:24:57,394 INFO org.mortbay.log: Started
>> SelectChannelConnector@0.0.0.0:50030
>> 2011-02-09 16:24:57,395 INFO org.apache.hadoop.metrics.jvm.JvmMetrics:
>> Initializing JVM Metrics with processName=JobTracker, sessionId=
>> 2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker:
>> JobTracker
>> up at: 54311
>> 2011-02-09 16:24:57,396 INFO org.apache.hadoop.mapred.JobTracker:
>> JobTracker
>> webserver: 50030
>> 2011-02-09 16:24:58,710 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 0 time(s).
>> 2011-02-09 16:24:59,711 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 1 time(s).
>> 2011-02-09 16:25:00,712 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 2 time(s).
>> 2011-02-09 16:25:01,713 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 3 time(s).
>> 2011-02-09 16:25:02,713 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 4 time(s).
>> 2011-02-09 16:25:03,714 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 5 time(s).
>> 2011-02-09 16:25:04,715 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 6 time(s).
>> 2011-02-09 16:25:05,715 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 7 time(s).
>> 2011-02-09 16:25:06,716 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 8 time(s).
>> 2011-02-09 16:25:07,717 INFO org.apache.hadoop.ipc.Client: Retrying
>> connect
>> to server: localhost/127.0.0.1:54310. Already tried 9 time(s).
>> 2011-02-09 16:25:07,722 INFO org.apache.hadoop.mapred.JobTracker: problem
>> cleaning system directory: null
>> java.net.ConnectException: Call to localhost/127.0.0.1:54310 failed on
>> connection exception: java.net.ConnectException: Connection refused
>>        at org.apache.hadoop.ipc.Client.wrapException(Client.java:767)
>>        at org.apache.hadoop.ipc.Client.call(Client.java:743)
>>        at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:220)
>>        at $Proxy4.getProtocolVersion(Unknown Source)
>>        at org.apache.hadoop.ipc.RPC.getProxy(RPC.java:359)
>>        at
>> org.apache.hadoop.hdfs.DFSClient.createRPCNamenode(DFSClient.java:106)
>>        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:207)
>>        at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:170)
>>        at
>>
>> org.apache.hadoop.hdfs.DistributedFileSystem.initialize(DistributedFileSystem.java:82)
>>        at
>> org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1378)
>>        at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:66)
>>        at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1390)
>>        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:196)
>>        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:95)
>>        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:1665)
>>        at
>> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:183)
>>        at
>> org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:175)
>>        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:3702)
>> Caused by: java.net.ConnectException: Connection refused
>>        at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
>>        at
>> sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:574)
>>        at
>>
>> org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
>>        at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:404)
>>        at
>> org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:304)
>>        at
>> org.apache.hadoop.ipc.Client$Connection.access$1700(Client.java:176)
>>        at org.apache.hadoop.ipc.Client.getConnection(Client.java:860)
>>        at org.apache.hadoop.ipc.Client.call(Client.java:720)
>>        ... 16 more
>> 2011-02-09 16:25:08,899 INFO org.apache.hadoop.mapred.JobTracker:
>> SHUTDOWN_MSG:
>> /************************************************************
>> SHUTDOWN_MSG: Shutting down JobTracker at BRBALAJI-PC/172.17.168.45
>> ************************************************************/
>> Please let me know what might be the problem.
>>
>> Thanks,
>> B R Balaji
>> --
>> View this message in context:
>> http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p2457071.html
>> Sent from the Users mailing list archive at Nabble.com.
>>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

ursbrbalaji
Hi Madhu,

Thanks for the response, sorry was busy couldn't check.

My mapred-site.xml is as follows.

Let me know the suggested changes to be done.

THanks in advance.

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>




<configuration>
<property>
  <name>mapred.job.tracker</name>
  <value>localhost:54311</value>
  <description>The host and port that the MapReduce job tracker runs
  at.  If "local", then jobs are run in-process as a single map
  and reduce task.
  </description>
</property>
</configuration>

- B R Balaji
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

no jobtracker to stop,no namenode to stop

Sigehere
I also have same problem.

$jps
20120 Jps

my log info as follow:
************************************************************/
2013-01-21 12:45:02,004 INFO org.apache.hadoop.mapred.JobTracker: STARTUP_MSG:
/************************************************************
STARTUP_MSG: Starting JobTracker
STARTUP_MSG:   host = Sigehere-lp/127.0.1.1
STARTUP_MSG:   args = []
STARTUP_MSG:   version = 1.0.4
STARTUP_MSG:   build = https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1.0 -r 1393290; compiled by 'hortonfo' on Wed Oct  3 05:20:10 UTC 2012
************************************************************/
2013-01-21 12:45:02,090 INFO org.apache.hadoop.metrics2.impl.MetricsConfig: loaded properties from hadoop-metrics2.properties
2013-01-21 12:45:02,123 INFO org.apache.hadoop.metrics2.impl.MetricsSourceAdapter: MBean for source MetricsSystem,sub=Stats registered.
2013-01-21 12:45:02,124 INFO org.apache.hadoop.metrics2.impl.MetricsSystemImpl: Scheduled snapshot period at 10 second(s).
2013-01-21 12:45:02,124 INFO org.apache.hadoop.metrics2.impl.MetricsSystemImpl: JobTracker metrics system started
2013-01-21 12:45:02,190 INFO org.apache.hadoop.metrics2.impl.MetricsSourceAdapter: MBean for source QueueMetrics,q=default registered.
2013-01-21 12:45:02,345 FATAL org.apache.hadoop.mapred.JobTracker: java.lang.IllegalArgumentException: Does not contain a valid host:port authority: local
        at org.apache.hadoop.net.NetUtils.createSocketAddr(NetUtils.java:162)
        at org.apache.hadoop.net.NetUtils.createSocketAddr(NetUtils.java:128)
        at org.apache.hadoop.mapred.JobTracker.getAddress(JobTracker.java:2560)
        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:2200)
        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:2192)
        at org.apache.hadoop.mapred.JobTracker.<init>(JobTracker.java:2186)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:300)
        at org.apache.hadoop.mapred.JobTracker.startTracker(JobTracker.java:291)
        at org.apache.hadoop.mapred.JobTracker.main(JobTracker.java:4978)

2013-01-21 12:45:02,345 INFO org.apache.hadoop.mapred.JobTracker: SHUTDOWN_MSG:
/************************************************************
SHUTDOWN_MSG: Shutting down JobTracker at Sigehere-lp/127.0.1.1
************************************************************/

AND:-----------------------------
mapred-site.xml

 <property>
    <name>mapred.job.tracker</name>
    <value>localhost:54311</value>
    <description>A URI whose
        scheme and authority determine the FileSystem implementation. The
        uri’s scheme determines the config property (fs.SCHEME.impl) naming
        the FileSystem implementation class. The uri’s authority is used to
        determine the host, port, etc. for a filesystem.
    </description>
    <final>true</final>
  </property>

can any buddy tell me how will i resolve this problem.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Sigehere
Hey, Friends I have solved that error
Thanks
 
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: no jobtracker to stop,no namenode to stop

Harsh J-2
In spirit of http://xkcd.com/979/, please also let us know what you felt
was the original issue and how you managed to solve it - for benefit of
other people searching in future?


On Mon, Jan 21, 2013 at 3:26 PM, Sigehere <[hidden email]> wrote:

> Hey, Friends I have solved that error
> Thanks
>
>
>
>
> --
> View this message in context:
> http://hadoop-common.472056.n3.nabble.com/no-jobtracker-to-stop-no-namenode-to-stop-tp34874p4006830.html
> Sent from the Users mailing list archive at Nabble.com.
>



--
Harsh J
Loading...