2012-10-17 101 views
0

我想在雲代工雲上部署我的spring 3 + tomcat 6 + mysql 5.5應用程序。我可以使用適用於cloudfoundry的STS插件從Eclipse部署應用程序。現在我得到的問題是我的應用程序不能連接到數據庫。我配置了一個mysql服務並啓動了一個隧道。我已經使用隧道用戶名/密碼和URL連接到應用程序上下文文件中的數據庫。雲服務器中找不到MySQL服務器

<Resource name="jdbc/myDB" auth="Container" type="javax.sql.DataSource" 
      maxActive="10" maxIdle="3" maxWait="10000" 
      username="xxx" password="xxx" driverClassName="com.mysql.jdbc.Driver" 
      url="jdbc:mysql://127.0.0.1:10100/xxx?autoReconnect=true"/> 

我得到錯誤。

Could not get JDBC Connection; nested exception is org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Could not create connection to database server. Attempted reconnect 3 times. Giving up.) 

有人可以幫我。另外讓我知道如何上傳我的本地SQL數據庫轉儲在雲代工DB,因爲我認爲有一次我將能夠連接這將是另一個問題

回答