我试图运行这个program
conn = pymssql.connect(host='localhost',user='notsa',password='notsayly',database='TallicaTweets')
但我收到以下错误:
Traceback (most recent call last):
File "harvester_of_tweets.py",line 11,in sql.connect(host='localhost',user='username',password='password!',database='Database')
File "/usr/local/lib/python2.7/dist-packages/pymssql.py",line 607,in connect
raise OperationalError,e[0]
pymssql.OperationalError: DB-Lib error message 20009,severity 9:
Unable to connect: Adaptive Server is unavailable or does not exist
Net-Lib error during Connection refused Error 111 - Connection refused
搜索Google并没有真正有用,而且那里的一些内容并不是很彻底.我应该将我的凭证添加到特定的配置文件中吗?以及如何在mssql中创建凭据? (我在psql中做过这些事情但不熟悉mssql.
我正在使用Ubuntu 13.04 ad我的python版本是2.7.
Traceback (most recent call last):
File "harvester_of_tweets.py",user='tweet',password='1234',database='tweet_db')
File "/usr/local/lib/python2.7/dist-packages/pymssql.py",severity 9:
Unable to connect: Adaptive Server is unavailable or does not exist
Net-Lib error during Connection refused Error 111 - Connection refused
最佳答案
我遇到了同样的问题.事实证明,我没有为我的本地sql服务器打开TCP / IP访问.
原文链接:https://www.f2er.com/mysql/433465.html进行快速测试以检查是否由此引起,您可以尝试使用相同的代码连接到远程服务器.如果它有效,则表示本地服务器出现问题.
因此,只需在sql Server配置管理器中打开对127.0.0.1:1433的访问权限.
脚步:
>开始 – >所有程序 – > Microsoft sql Server 20XX – >配置工具 – > sql Server配置管理器
> sql Server网络配置 – > MSsqlSERVER的协议
> TCP / IP – >属性 – > IP地址.找到127.0.0.1并将“已启用”更改为“是”.如果需要,您可以为所有IP执行此操作.