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
1
vote
0 answers

windows 10 localhost resolution slow

i am running a local python server on windows 10 and sending requests to it via the localhost domain are significantly slower than using 127.0.0.1. i have edited my hosts file and the problem occurs whether i have 127.0.0.1 localhost commented…
jpro
  • 133
  • 1
  • 3
1
vote
3 answers

-bash: mysql: command not found

I'm kinda new to this but I am having issues with PHPMyAdmin as well as MySQL on my local machine. It has worked previously. When I try to run mysql from the command line I get: -bash: mysql: command not found Additionally, PHPMyAdmin will not let…
Shaun
  • 149
  • 2
  • 2
  • 7
1
vote
1 answer

What does "localhost name resolution is handled within DNS itself" mean?

I know that the Windows hosts file maps host names to IP addresses. But there is no mapping for localhost. Instead it has a comment that says this: # localhost name resolution is handled within DNS itself. # 127.0.0.1 localhost I don't…
Liga
  • 127
  • 1
  • 9
0
votes
1 answer

Hostname wildcard % does not include localhost or 127.0.0.0

In MariaDB on windows I create a user and database with the following flush privileges; CREATE USER 'test-one'@'%' IDENTIFIED BY 'test-one'; GRANT USAGE ON *.* TO 'test-one'@'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0…
theking2
  • 159
  • 1
  • 8
0
votes
0 answers

How to redirect HTTPS traffic to a proxy on localhost:443?

I'm building an HTTP server in C++ using the Cesanta Mongoose c++ networking library. Essentially I'm trying to redirect traffic from my web browser to a proxy on the localhost. I recently added support for HTTPS by purchasing a certificate and…
0
votes
2 answers

Adding virtualhost to Apache prevent access to localhost

I am using Uubntu 16.04, with Apache2 (version 2.4) on my local personal laptop for development purpose. I have added a virtual host (hehe) under sites-enabled directory. Since I have added it, I have troubles accessing http://localhost from Firefox…
aviv
  • 167
  • 1
  • 1
  • 9
0
votes
1 answer

Configuring https for localhost (Apache2)

I try to set up https for my localhost. On my localhost I have a Zabbix_server instance running. I have set the permissions according to this post, but I recieved this errors: [Mon Oct 14 10:37:37.593028 2019] [ssl:error] [pid 4224:tid…
Jarne
  • 15
  • 1
  • 9
0
votes
1 answer

Can't set up domain and subdomain locally using SSL

I have the following configuration for my local Apache server: ServerName mysite.local SSLEngine on SSLCertificateFile "/Users/graziano/Projects/mysite/ssl/mysite.local.pem" SSLCertificateKeyFile…
grazdev
  • 101
0
votes
2 answers

Can I make subdomain of company website only accessable on our company network?

I have created a WordPress site for our company intranet. I also created a subdomain called intranet.example.com. Is it possible to make this subdomain only accessible from our local network? If not, could I host the site on a local computer and…
0
votes
0 answers

Trying to open an IIS page locally

I have two IIS sites, which expose the same virtual directory. One is bound as http::80:wfe.website.com, and is accessed through a reverse proxy server. The second is bound as http::80:www.website.com, and is not exposed externally. Our public DNS…
Reaces
  • 5,547
  • 4
  • 36
  • 46
0
votes
0 answers

Nginx reverse proxy to many local servers + webserver duty

I currently have to master a difficult setup: I want nginx to serve webcontent AND deeply redirect to content on localhosts (local apps) with altered posts. I want every request to use https using nginx capabilities and certification from…
jcor
  • 1
  • 1
0
votes
1 answer

why is my apache2 server not serving localhost?

I have setup an apache2 server which successfully serves requests to my specific IP a-la curl -i -H GET http://a.b.c.d/nominatim/lookup.php?osm_ids=N107775&format=json but requests (from the selfsame server) to localhost (a-la curl -i -H GET…
0
votes
0 answers

Tomcat localhost private ip link is not accessible by another PC in same network

My PC has the IP 192.168.1.185 The URL http://192.168.1.185:8080/projectname is not accessible by another computer in the same network having the IP 192.168.1.135. I have disabled IIS already through which the link was accessible. But Through tomcat…
Shreeya
  • 63
  • 9
0
votes
1 answer

Waiting for localhost : getting this message on all browsers

I am using Ubuntu 14.04 and have php5 and mysql installed. I have 3 web applications on my /var/www/html folder. Until yesterday evening I was able to test and work on the applications. All of a sudden, I am not able to load any of my applications…
Apricot
  • 121
  • 1
  • 5
0
votes
1 answer

Postfix SMTP on port 587 errno connection refused only from localhost

If I connect from a website from the localhost (127.0.0.1) with port 587 and STARTTLS to my smtp-server on mail.example.tld, I get the the error "Connection refused, errno 111". Connections from a server with another IP are working, the problem…
Migster
  • 1
  • 1
  • 3