我正在使用Grails云代工插件。应用程序启动后,我遇到了异常
2012-05-19 08:34:09,179 [main] ERROR hbm2ddl.SchemaUpdate - Unsuccessful: create
table article_content (id bigint not null auto_increment, version bigint not null,
comments LONGTEXT, content LONGTEXT, date_created datetime not null, failure bit
not null, tags varchar(255), title varchar(255), url varchar(500) not null,
primary key (id)) ENGINE=InnoDB
2012-05-19 08:34:09,181 [main] ERROR hbm2ddl.SchemaUpdate - CREATE command denied
to user 'uozOL0LSfBM3u'@'172.30.50.25' for table 'article_content'
使用dbConsole和CloudFoundry属性我连接到db,尝试执行SQL命令并获得相同的异常。
怎么了?
答案 0 :(得分:1)
您是否尝试使用vmc隧道功能运行create table...
命令? http://docs.cloudfoundry.com/tools/vmc/caldecott.html
我能够在我的Cloud Foundry帐户上配置的MySQL服务上执行SQL。如果这没有帮助,你可以链接到你的应用程序的zip,所以我可以下载并尝试重现这个问题吗?