-1

I am trying to publish one page on tomcat server. But it fails at Deploying phase with error message

Phase: Deployment Processing Phase failed, Could not initialize class com.tridion.storage.StorageManagerFactory. Can anybody help me?

Satya
  • 115
  • 1
  • 7
  • Do you get any exception before this message? – azendh Oct 03 '12 at 09:41
  • 4
    The error usually means that one or more jar files are missing. Did you follow the instructions in the installation manual? – Quirijn Oct 03 '12 at 09:48
  • Or a listener fails on startup. – azendh Oct 03 '12 at 09:52
  • 1
    Check the CD logs. Core and/or Deployer will tell you more. This usually means a jar missing or wrong configuration. – Nuno Linhares Oct 03 '12 at 11:31
  • Thanks for replying. The error was due to wrong configuration in cd_deployer_config.xml. That I fixed. But now I am getting error at committing deployment phase. Phase: Deployment Prepare Commit Phase failed, Unable to prepare transaction: tcm:0-44-66560, org.hibernate.exception.SQLGrammarException: Cannot open connection, org.hibernate.exception.SQLGrammarException: Cannot open connection, Unable to prepare transaction: tcm:0-44-66560, org.hibernate.exception.SQLGrammarException: Cannot open connection, org.hibernate.exception.SQLGrammarException: Cannot open connection – Satya Oct 04 '12 at 09:54

2 Answers2

3

Please also check password encryption in cd_storage_conf.xml: try without password encryption and see if it works.

0

Thanks for replying. The error was due to wrong configuration in cd_deployer_config.xml. That I fixed. But now I am getting error at committing deployment phase.

Error: Phase: Deployment Prepare Commit Phase failed, Unable to prepare transaction: tcm:0-44-66560, org.hibernate.exception.SQLGrammarException: Cannot open connection, org.hibernate.exception.SQLGrammarException: Cannot open connection, Unable to prepare transaction: tcm:0-44-66560, org.hibernate.exception.SQLGrammarException: Cannot open connection, org.hibernate.exception.SQLGrammarException: Cannot open connection

Satya
  • 115
  • 1
  • 7
  • Cannot open connection indicates that your database (server/username/password) information is not correct in cd_storage_conf.xml. – Ram G Oct 04 '12 at 16:39