我是新手。我正在尝试将远程mariadb数据库连接到freeradius。我已经尝试过在sql文件中使用托管IP地址,但无法正常工作。是否可以在freeradius中连接远程数据库?如果是,如何连接远程数据库。
错误消息:MySQL错误:无法在“ ip地址”上连接到MySQL服务器
谢谢
答案 0 :(得分:-1)
是的,有可能。该错误意味着您的MySQL服务器没有响应RADIUS服务器的请求。
在MySQL服务器上使用class Team: # Capitalize your class names
def __init__(self, city, teamname, wins, losses):
self.city = city
self.teamname = teamname
self.wins = wins
self.losses = losses
team_list = [Team('Boston','Red Sox', 162, 0),
Team('New York', 'Yankees', 0, 162),
Team('Tampa Bay', 'Rays', 80, 82),
Team('Toronto', 'Blue Jays', 82, 80),
Team('Baltimore', 'Orioles', 1, 161)]
def sort_key(x):
return x.wins
teams_sorted = sorted(team_list, key=sort_key)
print([x.city for x in teams_sorted])
# ['New York', 'Baltimore', 'Tampa Bay', 'Toronto', 'Boston']
,并检查端口3306以检查它是否已实际启动/侦听。如果是,请验证防火墙是否设置为允许该端口上的流量。