Questions tagged [localhost]

Localhost is an address/term used for testing connection to the local host (current computer) used for some network troubleshooting

localhost (all lowercase) (meaning this computer in computer networking) and is the standard hostname given to the loopback network interface.

IPv4

Under IPv4 the standard localhost address is normally assigned to:

127.0.0.1

IPv6

In full notation, the address under IPv6 is:

0:0:0:0:0:0:0:1
537 questions
0
votes
4 answers

Windows 7 resolve localhost name with ipv6 instead of ipv4

When I ping localhost I can see that localhost name is resolved as :::1 instead of 127.0.0.1. Do you know how to solve this? I need a ipv4 resolution of localhost for Tomcat server. I could quickly fix this with "127.0.0.1 localhost" to windows's…
Tobia
  • 1,210
  • 8
  • 37
  • 73
0
votes
1 answer

Subdomain on local machine using apache

On my local network, I have a server that goes by the name of telly, and can be connected with locally on http://telly. I am trying to set up a subdomain on that machine, say sub. I have added a sites-available record and sites-enabled record…
Mild Fuzz
  • 153
  • 1
  • 9
0
votes
2 answers

How to access localhost with an internal IP address when outside of network

I have my development environment on my local system with XAMPP(Windows 7). During dev. work I use my system's IP address (i.e 192.168.XX.XXX of Internal Network) when I am inside the network, it works fine to access the localhost by…
Subharanjan
  • 59
  • 2
  • 2
  • 8
0
votes
1 answer

LAMP not working after php.ini change (even if resetted)

My LAMP machine on Ubuntu 12.04 was working fine, then I tried to modify the etc/php5/apache2/php.ini file opening nautilus through the terminal with sudo nautilus. I have edited this line: error_reporting = E_ALL & ~E_DEPRECATED &…
don
  • 215
  • 1
  • 4
0
votes
1 answer

server localhost to get access to /admin/* pages and block all others

Requirements: every one in the local network can access all pages except /admin pages. only localhost should have access to the /admin pages. how to write webfilter for tomcat 6 or other alternatives?
0
votes
2 answers

Error message: Host 'server1.MY_DOMAIN.TLD' is not allowed to connect to this MySQL server

I have a web and mail server running Ubuntu 12.04. I installed iRedMail and had it running fine, but this morning mail was not connecting and none of my sites worked. I checked some logs which told me to run mysqladmin flush-hosts. That may have put…
Noah
  • 101
  • 2
0
votes
1 answer

Apache suddenly stopped working

After using apache in a local dev setup it has suddenly stopped working. I have tried pinging a previously used custom domain and I'm not getting anything. I have checked the syntax its correct according to apache. I have made sure that my custom…
alme1304
  • 141
  • 1
  • 6
0
votes
1 answer

How do I only serve on localhost through apache2?

Possible Duplicate: TOR: hide my site in clearweb‏ I'm trying to serve on localhost only but every time I find a way to do it, it always says to edit http.d I cannot find http.d. Can someone tell me a good way to setup apache to serve ONLY on…
KI4JGT
  • 95
0
votes
2 answers

IIS "localhost" subdomain

I have an IIS7.5 server (also running SQL Server) which has a server name of (say) dc-db. On this server, my IIS default site runs correctly on http://localhost and http://dc-db I want to load on a web app to run at http://management.dc-db I have…
LuckySpoon
  • 71
  • 11
0
votes
1 answer

Can I put "localhost" into /etc/hostname?

I want to stop apache2 from querying the dns name at every start and to make it faster. There is absolutely no reason for apache to do any DNS-queries at all. For redirects it has to use the name passed in by the client in the host header. (See…
Christian
  • 1,033
  • 5
  • 16
  • 24
0
votes
2 answers

emails not sending from CentOS 5.6 VM on Win7 via PHP code

I am experiencing an issue where my CentOS 5.6 (Final) VM running on Windows 7 has stopped sending emails from my PHP code. I'm confident this isn't a coding issue as I have the exact same code running in my office and emails send correctly from…
crmpicco
  • 221
  • 1
  • 3
  • 11
0
votes
2 answers

Localhost physical path

Right now my localhost path is limited to C:\inetpub\wwwroot. I am using IIS 7.5 and would wish to start working on PHP. before enabling the IIS 7, I was unable to connect to localhost/127.0.0.1. Now, it can connect and display files but I cannot…
Legend
0
votes
1 answer

Apache 2.0 is showing only text and not php files

I have a web application written in PHP, html and JavaScript. On my PC, I have installed the EasyPHP program which has Apache and everything installed. I wanted to put this web app on my server and I have installed Apache 2.0, but my php files are…
user123_456
  • 123
  • 5
0
votes
1 answer

WAMP can connect to localhost but not 127.0.0.1

I'm running WAMP which was working fine the other day. Today I tried connecting to 127.0.0.1 and my browser throws a 404. Both firefox and chrome. My hosts file is correct mapping 127.0.0.1 to localhost. I can telnet to both the IP and localhost…
Anagio
  • 216
  • 2
  • 15
0
votes
2 answers

hitting a webpage hosted in JBOSS externally

I have jboss 5.0 running a web application I am developing. I am able to hit the pages using localhost:8080 but not my external IP address.. How can i hit with my ip???
coderman