我使用Ubuntu-Vagrant通过Apigility制作API。 Apigility已安装且运行良好:
$ sudo php -S 10.10.10.30:8888 -t public public/index.php
PHP 5.6.4-1+deb.sury.org~trusty+1 Development Server started at Tue Jan 27 13:40:23 2015
Listening on http://10.10.10.30:8888
Document root is /var/www/public
Press Ctrl-C to quit.
当我从vagrantbox内部做一个wget时,我收到了Apigility的一个好的html文件。当我从访客系统(osX)浏览网址(http://10.10.10.30:8888)时,无法访问该网站。
防火墙似乎还可以:
$ sudo netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:46165 0.0.0.0:* LISTEN 619/rpc.statd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2371/sshd
tcp 0 0 10.10.10.30:8888 0.0.0.0:* LISTEN 5717/php
tcp 0 0 0.0.0.0:1080 0.0.0.0:* LISTEN 1062/mailcatcher
tcp 0 0 0.0.0.0:1025 0.0.0.0:* LISTEN 1062/mailcatcher
tcp 0 0 0.0.0.0:59106 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 1010/php-fpm.conf)
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1016/mysqld
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 572/rpcbind
tcp6 0 0 :::22 :::* LISTEN 2371/sshd
tcp6 0 0 :::443 :::* LISTEN 1345/apache2
tcp6 0 0 :::42974 :::* LISTEN 619/rpc.statd
tcp6 0 0 :::39553 :::* LISTEN -
tcp6 0 0 :::111 :::* LISTEN 572/rpcbind
tcp6 0 0 :::80 :::* LISTEN 1345/apache2
udp 0 0 0.0.0.0:19413 0.0.0.0:* 794/dhclient
udp 0 0 0.0.0.0:741 0.0.0.0:* 572/rpcbind
udp 0 0 0.0.0.0:51436 0.0.0.0:* -
udp 0 0 0.0.0.0:44542 0.0.0.0:* 619/rpc.statd
udp 0 0 127.0.0.1:795 0.0.0.0:* 619/rpc.statd
udp 0 0 0.0.0.0:68 0.0.0.0:* 794/dhclient
udp 0 0 0.0.0.0:848 0.0.0.0:* -
udp 0 0 0.0.0.0:111 0.0.0.0:* 572/rpcbind
udp 0 0 10.10.10.30:123 0.0.0.0:* 2666/ntpd
udp 0 0 10.0.2.15:123 0.0.0.0:* 2666/ntpd
udp 0 0 127.0.0.1:123 0.0.0.0:* 2666/ntpd
udp 0 0 0.0.0.0:123 0.0.0.0:* 2666/ntpd
udp6 0 0 :::741 :::* 572/rpcbind
udp6 0 0 :::10482 :::* 794/dhclient
udp6 0 0 :::50958 :::* -
udp6 0 0 :::111 :::* 572/rpcbind
udp6 0 0 fe80::a00:27ff:fe3a:123 :::* 2666/ntpd
udp6 0 0 ::1:123 :::* 2666/ntpd
udp6 0 0 :::123 :::* 2666/ntpd
udp6 0 0 :::34952 :::* 619/rpc.statd
那么问题可能是什么?
答案 0 :(得分:0)
您可以转发端口或建立专用网络: 在Vagrantfile中,您可以将此行添加到转发端口: config.vm.network" forwarded_port",guest:80,host:81 在" localhost:81"访问后,请求将被转发到VM的端口80。 或者制作一个私人newotk: config.vm.network" private_network",ip:" 192.168.10.10" 在另一行中,访客VM将通过IP 192.168.10.10进行访问,您可以访问它: http://192.168.10.10:8080 为简单起见,您可以在sistem上的hosts文件中添加一个条目: 192.168.10.10 myvm 并访问:http://myvm:8080
Holpe这有帮助。