我在获取服务器上本地主机的 IP 地址时遇到很多问题。
我有这样的状态:
$ sudo service apache2 status
● apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
Drop-In: /lib/systemd/system/apache2.service.d
└─apache2-systemd.conf
Active: active (running) since Wed 2018-04-18 11:44:37 UTC; 18h ago
Docs: man:systemd-sysv-generator(8)
Process: 3087 ExecStop=/etc/init.d/apache2 stop (code=exited, status=0/SUCCESS)
Process: 3132 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCESS)
Tasks: 55
Memory: 6.0M
CPU: 53.265s
CGroup: /system.slice/apache2.service
├─3157 /usr/sbin/apache2 -k start
├─3162 /usr/sbin/apache2 -k start
└─3163 /usr/sbin/apache2 -k start
Apr 18 11:44:36 instance-3 systemd[1]: Starting LSB: Apache2 web server...
Apr 18 11:44:36 instance-3 apache2[3132]: * Starting Apache httpd web server apache2
Apr 18 11:44:37 instance-3 apache2[3132]: *
Apr 18 11:44:37 instance-3 systemd[1]: Started LSB: Apache2 web server.
Apr 19 03:44:22 instance-3 systemd[1]: Started LSB: Apache2 web server.
当我使用时:
$ curl -4 icanhazip.com
35.197.193.182
但是之后:
$ ifconfig
ens4 Link encap:Ethernet HWaddr 42:01:0a:9a:00:03
inet addr:10.154.0.3 Bcast:10.154.0.3 Mask:255.255.255.255
inet6 addr: fe80::4001:aff:fe9a:3/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1460 Metric:1
RX packets:4770059 errors:0 dropped:0 overruns:0 frame:0
TX packets:5014906 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1059058126 (1.0 GB) TX bytes:1017190807 (1.0 GB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:910501 errors:0 dropped:0 overruns:0 frame:0
TX packets:910501 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:153346351 (153.3 MB) TX bytes:153346351 (153.3 MB)
我使用/var/www
并使用 IP 开始的 HTML 取得了成功,35
但使用 t 的应用程序localhos
无法在服务器上运行。
我不确定实际的本地主机 IP 地址是什么。
主办方 -
>猫 /etc/hosts 127.0.0.1 本地主机 # 以下行适用于支持 IPv6 的主机 ::1 ip6-localhost ip6-环回 fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-所有节点 ff02::2 ip6-所有路由器 ff02::3 ip6-allhosts 169.254.169.254metadata.google.内部元数据 10.154.0.3 instance-3.c.inbound-axon-200905.internal instance-3 # 由 Google 添加 169.254.169.254metadata.google.internal # 由 Google 添加
答案1
本地主机使用环回地址 127.0.0.1
从你的 ifconfig 来看,该服务器上似乎没有使用该 IP。
尝试通过 SSH 连接到该 IP 并查看它的列出位置。尽管如果这是因为您正在执行一些奇怪的路由或负载平衡,那么您应该扩展您的问题以包括此详细信息
答案2
尝试这个解决方案:
ip address show | grep -E "inet " | grep -v "host"