2013-07-31 115 views
0

我試圖在SQL Server 2008上安裝Sonar 3.6和/或3.6.2。用於測試準備從MySql到SQL Server的轉換。運行時,我收到沒有錯誤:Sonar與SQL Server 2008

sonar.sh console 

控制檯輸出:

Running sonar... 
wrapper | --> Wrapper Started as Console 
wrapper | Launching a JVM... 
jvm 1 | Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org 
jvm 1 | Copyright 1999-2006 Tanuki Software, Inc. All Rights Reserved. 
jvm 1 | 
jvm 1 | 2013-07-31 11:41:12.374:INFO:oejs.Server:jetty-7.6.11.v20130520 
jvm 1 | JRuby limited openssl loaded. http://jruby.org/openssl 
jvm 1 | gem install jruby-openssl for full support. 
jvm 1 | 2013-07-31 11:41:43.963:INFO:oejsh.ContextHandler:started o.e.j.w.WebAppContext{/,file:/alm/sonar-3.6.2/war/sonar-server/},file:/alm/sonar-3.6.2/war/sonar-server 
jvm 1 | 2013-07-31 11:41:44.034:INFO:oejs.AbstractConnector:Started [email protected]:29000 

我正在我的數據庫的遠程服務器上。這應該不是問題。

我能夠使用DBVisualizer以相同的憑據訪問服務器,所以我會想象它應該通過聲納。

我使用的驅動程序是與聲納捆綁在一起的驅動程序。

當我嘗試訪問服務器時,出現的錯誤是基於Web的。

We're sorry, but something went wrong. 

Please try back in a few minutes and contact support if the problem persists. 

<%= link_to "Go back to the homepage", home_path %> 

當我使用H2嵌入式數據庫我有沒有問題訪問它,所以我推斷,這是最有可能與我的數據庫設置有問題。

--------------------------------------------------------- 
# WEB SETTINGS - STANDALONE MODE ONLY 
# These settings are ignored when the war file is deployed to a Java EE server. 
#--------------------------------------------------------- 
# Listen host/port and context path (for example/or /sonar). Default values are 0.0.0.0:9000/. 
sonar.web.host:       localhost 
sonar.web.port:       9500 
sonar.web.context:      /sonar 

# Log HTTP requests. Deactivated by default. 
#sonar.web.jettyRequestLogs: ../../logs/jetty-yyyy_mm_dd.request.log 
#sonar.web.jetty.threads.min:    5 
#sonar.web.jetty.threads.max:    50 

#----------------------------------------------------------------------- 
# DATABASE 
# 
# IMPORTANT : the embedded database H2 is used by default. 
# It is recommended for tests only. Please use an external database 
# for production environment (MySQL, Oracle, Postgresql, SQLServer) 
# 
#----------------------------------------------------------------------- 

#----- Credentials 
# Permissions to create tables and indexes must be granted to JDBC user. 
# The schema must be created first. 
sonar.jdbc.username:      sonar 
sonar.jdbc.password:      sonar 

#----- Embedded database H2 
# Note : it does not accept connections from remote hosts, so the 
# sonar server and the maven plugin must be executed on the same host. 

# Comment the following line to deactivate the default embedded database. 
#sonar.jdbc.url:       jdbc:h2:tcp://localhost:19092/sonar 
#sonar.jdbc.driverClassName:    org.h2.Driver 

# directory containing H2 database files. By default it's the /data directory in the sonar installation. 
#sonar.embeddedDatabase.dataDir:/alm/sonar/apache-tomcat-7.0.41/data 
# H2 embedded database server listening port, defaults to 9092 
#sonar.embeddedDatabase.port:    19092 
... 
... 
#----- Microsoft SQLServer 
# The Jtds open source driver is available in extensions/jdbc-driver/mssql. More details on http://jtds.sourceforge.net 
sonar.jdbc.url        
jdbc:jtds:sqlserver://(REMOTE IP ADDRESS);instance=MSSQLSERVER;databaseName=SONAR;selectMethod=cursor; 

# Optional properties 
sonar.jdbc.driverClassName:    net.sourceforge.jtds.jdbc.Driver 

聲納的用戶名,我有先後爲SONAR數據庫中的所有權限。

我可能錯過了一些小的任何幫助表示讚賞。

回答

1

解決它:

的問題是我需要創建一個聲納架構和聲納用戶的聲納數據庫關聯到它。

我還確保了聲納用戶具有創建數據庫所需的權限。完美啓動。