我有一个在EC2实例中运行的rest应用程序(例如win1)。我有另一个EC2实例(例如win2)在与win1相同的VPC中运行。我无法从win2访问/调用win1中公开的其余URL。我已将组的安全性配置为允许入站的HTTP请求。 安全组规则:
Inbound:
Protocol Port Range Source
HTTP (80) TCP 80 0.0.0.0/0
HTTPS (443) TCP 443 0.0.0.0/0
在出站我已启用所有流量。 win1公开的其余API是
http://<IP>:9090/ui
。
答案 0 :(得分:0)
您通过win1公开了端口from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
n = 100
fig = plt.figure(figsize=(12,6))
ax1 = fig.add_subplot(121)
ax2 = fig.add_subplot(122,projection='3d')
y = np.linspace(np.pi/8, np.pi*4/5, n)
x = np.sin(y)
t = np.linspace(0, np.pi*2, n)
xn = np.outer(x, np.cos(t))
yn = np.outer(x, np.sin(t))
zn = np.zeros_like(xn)
for i in range(len(x)):
zn[i:i+1,:] = np.full_like(zn[0,:], y[i])
ax1.plot(x, y)
ax2.plot_surface(xn, yn, zn)
plt.show()
,但是在安全组中,您只允许入站端口:9090
和80
。
您需要:
入站:
443