This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
can some one tell me : importance of of "127.0.0.1"
"http:/127.0.0.1:8080 does 127.0.0.1 is substitue of local host how do we get that IP address is it always for tomcat?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
127.0.0.1 is the "loopback" address, which is kind of a shortcut for addressing the originating machine. localhost is generally configured to point to 127.0.0.1, but you could theoretically change that to something else in yours hosts file (although that wouldn't be a good idea).
8080 happens to be the default port that Tomcat attaches itself to. That can be changed to something else in the startup scripts if you want.