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
2
votes
1 answer

used colons for url htaccess http://localhost/1:1

I have a problem with the colons used in url this my url http://localhost/1:1 this my htaccess RewriteEngine On RewriteRule ^/(.*):(.*) index.php/$1:$2 this error show Forbidden You don't have permission to access /1:1 on this server. # Virtual…
2
votes
2 answers

Minikube. How to allow access to local mySQL database from container

I'm trying to access to local MySQL database from minikube container. My minikube works on Windows 10 with hyper-v driver. I found a few solutions (creating host-only network from VirtualBox) but nothing for hyper-v. Can somebody assist me how can I…
Dennis Spade
  • 21
  • 1
  • 2
1
vote
0 answers

Web server on remote, is it possible to ssh to remote and have local browser connect to server?

On a headless remote machine which I connect to via ssh and do not have sudo privileges, I have an interactive python script with a console interface. I want to use a simple web framework like flask or bottle to create a locally hosted web interface…
Elfen Dew
  • 11
  • 1
1
vote
0 answers

CURL Cannot Resolve Host running on MAMP

I have a MAMP PRO set up with local SSL certificates for a url named qph-plugin.local which is running a wordpress site. When I view the site in the browser on my machine it all works as expected. When I make a request to the url with postman it…
Paul
  • 131
  • 1
  • 1
  • 3
1
vote
2 answers

No ping localhost after starting RAS service with demand-dial PPPoE connection

I have a big problem on my Windows Server 2008 Enterprise x64 SP2 non-R2: There is no ping to 127.0.0.1: Request timeout. Ping to ::1 (localhost on IPv6) is still alive. I mean, server has no interface 127.0.0.1 at all! So ping absence is just a…
abatishchev
  • 531
  • 1
  • 9
  • 31
1
vote
1 answer

Changing from Localhost to Computer Name Throws 403 Error (Tomcat 9)

I am trying to run Tomcat 9. I have configured it to run with SSL. So when I am accessing the tomcat URL with: https://localhost:8443/manager/html It works fine. But when I try to run it with my computer name I get the 403 error saying I should…
hell_storm2004
  • 145
  • 2
  • 11
1
vote
1 answer

If I have user/host pair "root@", is it necessary to keep "root@localhost" in the mysql host/users table? (multi-part Q)

On computer "dexwin10", the user@host pair is as follows: root@dexwin10 root@% root@localhost When people install our software, we want them to be able to access the database from computers other than just their own. This tells me localhost…
Collin Fox
  • 111
  • 3
1
vote
2 answers

MDNS response “storm” with “localhost_prl: 127.0.0.1”

We are experiencing occasional performance problems in our WIFI. With Wireshark I see a high number (currently 50/s) of MDNS responses for localhost_prl:127.0.0.1. I don't think that this is normal. A MDNS response with 127.0.0.1 seem pointless to…
GxB
  • 401
  • 1
  • 3
  • 8
1
vote
0 answers

How to connect to localhost in Docker in Windows Server 2016

Background: Am using Windows Server 2016 Have installed Containers Have installed Docker (not Docker Desktop / Docker for Windows): https://docs.docker.com/install/windows/docker-ee/ Have multiple containers running on the same server I need…
A X
  • 382
  • 2
  • 8
  • 23
1
vote
0 answers

Unable to make named virtual hosts work on windows-docker-nginx

Windows version: 10 Docker for Windows: 2.0.0.2 (30215) Nginx: latest Docker-compose.yml: version: '3.7' services: nginx: restart: always image: nginx:latest ports: - "8000:80" volumes: -…
1
vote
1 answer

What is localhost.webcache in tcpdump

I'm trying to verify that a user is actually logging into my machine and I figured out that looking at tcpdump would be reasonable. I'm using the new omhttp module for Rsyslog to send logs via http from localhost to localhost (dest is…
Darakian
  • 113
  • 1
  • 4
1
vote
1 answer

Proxy a remote server as localhost

There is a server running in a "remotehost:some_port". I can connect to it from my linux machine like telnet remotehost remoteport. I have an application in the linux machine that is configured to connect to 127.0.0.1:7576 where it expects the…
1
vote
1 answer

View a localhost:port address over LAN

I'm working on a Sinatra app so I have a Mongrel instance running at localhost:4567 on my main machine, a Macbook Pro. How can I view the app over my LAN, preferably from an iPhone? If I enable web sharing I can get to the files in my ~/Sites folder…
joeminkie
  • 13
  • 2
1
vote
1 answer

500 Internal Server Error with nginx local host

I am using Linux Mint 17. I am trying to setup PHP 7.1 or PHP 7.2 with nginx but whenever I access a php script I get 500 Internal Server Error. Whenever I restart nginx or PHP, I receive no errors. Here are the contents of…
Dan Bray
  • 113
  • 1
  • 1
  • 6
1
vote
1 answer

adding string & variable to another variable in bash script

I've tried to create a bash script to show all available local IP addresses. Since the normal ping option can't go quicker than 1 second per IP address and fping shows too much output when executed in a for loop, I tried to do it like this: read -p…
user450947