2017-11-14 25 views
1

CentOS 7にMSSSQLをインストールしました。インストールは完了しましたが、sqlcmd経由でSQLに接続しています。エラー。Centos:Sqlcmd:SQL Server用Microsoft ODBCドライバ13:TCPプロバイダ:エラーコード0x2749

[[email protected]*03****k ~]# sqlcmd -S 127.0.0.1 -U sa -P H*****3 
Sqlcmd: Error: Microsoft ODBC Driver 13 for SQL Server : Login timeout expired. 
Sqlcmd: Error: Microsoft ODBC Driver 13 for SQL Server : TCP Provider: Error code 0x2749. 
Sqlcmd: Error: Microsoft ODBC Driver 13 for SQL Server : A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.. 

[email protected]*****k ~]# netstat -ntpl 
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:22    0.0.0.0:*    LISTEN  699/sshd    
tcp  0  0 127.0.0.1:25   0.0.0.0:*    LISTEN  793/master   
tcp6  0  0 :::80     :::*     LISTEN  704/httpd   
tcp6  0  0 :::22     :::*     LISTEN  699/sshd  

誰でも手助けできますか?

答えて

0

これは何度も無駄になった後、私はこれがStopped SQL Serviceのために発生したことを知りました。私は始めようとしましたが、どうしてこれが起きないのかいくつかあります。 MSSQLサービスが失敗したことを確認するたびに、私は仮想サーバー上に5 GB以上のメモリを持っています。

r*****k:~# sudo systemctl status mssql-server

●のMSSQL-server.service - Microsoft SQL Serverデータベースエンジン ロード:ロード(/lib/systemd/system/mssql-server.service;有効;ベンダーのプリセット:有効) アクティブ:非アクティブ(死亡)2017-11-17 15:39:39 UTCより(結果:終了コード) 1分の37Sは、前

Process: 4906 ExecStart=/opt/mssql/bin/sqlservr (code=exited, status=255) 
Main PID: 4906 (code=exited, status=255) 

Nov 17 15:39:39 SV0*****com systemd[1]: mssql-server.service: Unit entered failed state. 

Nov 17 15:39:39 SV0*****com systemd[1]: mssql-server.service: Failed with result 'exit-code'. 

Nov 17 15:39:39 SV0*****.com systemd[1]: mssql-server.service: Service hold-off time over, scheduling restart. 

Nov 17 15:39:39 SV0*****.com systemd[1]: Stopped Microsoft SQL Server Database Engine. 

Nov 17 15:39:39 SV0*****.com systemd[1]: mssql-server.service: Start request repeated too quickly. 

Nov 17 15:39:39 SV0*****.com systemd[1]: Failed to start Microsoft SQL Server Database Engine. 

最後に、私は、新しい仮想マシンを作成し、SQLサービスが正常に動作しています。 SQLデータベースが期待どおりに動作しています。

関連する問題