Google Compute Engine 和 Glassfish 无法从外部访问
Google Compute Engine and Glassfish can't access from outside
我在 GCE 中创建了一个实例 (CentOS7)。然后我安装了 Glassfish 4。但是,我似乎无法通过 http/https.
访问它
[ank@instance-1 bin]$ sudo ./asadmin start-domain
Waiting for domain1 to start .........
Successfully started the domain : domain1
domain Location: /opt/glassfish4/glassfish/domains/domain1
Log File: /opt/glassfish4/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
尝试访问 http://ip_address or even http://ip_address:4848 时出现 "refused to connect" 错误。
感谢任何帮助。
您需要在防火墙上打开端口 tcp:80
、tcp:443
(和 tcp:4848
);假设您已经分配了一个外部 IP(或者正在从同一网络上的另一个内部 IP 访问它,我建议 tcp:4848
)。请参阅文档,涉及:Using Firewall Rules.
我在 GCE 中创建了一个实例 (CentOS7)。然后我安装了 Glassfish 4。但是,我似乎无法通过 http/https.
访问它[ank@instance-1 bin]$ sudo ./asadmin start-domain
Waiting for domain1 to start .........
Successfully started the domain : domain1
domain Location: /opt/glassfish4/glassfish/domains/domain1
Log File: /opt/glassfish4/glassfish/domains/domain1/logs/server.log
Admin Port: 4848
Command start-domain executed successfully.
尝试访问 http://ip_address or even http://ip_address:4848 时出现 "refused to connect" 错误。
感谢任何帮助。
您需要在防火墙上打开端口 tcp:80
、tcp:443
(和 tcp:4848
);假设您已经分配了一个外部 IP(或者正在从同一网络上的另一个内部 IP 访问它,我建议 tcp:4848
)。请参阅文档,涉及:Using Firewall Rules.