0

我正在使用 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'

使用我连接到 db 的 dbConsole 和 CloudFoundry 属性,尝试执行 SQL 命令并获得相同的异常。

怎么了?

4

1 回答 1

1

您是否尝试过create table...使用 vmc 隧道功能运行该命令?http://docs.cloudfoundry.com/tools/vmc/caldecott.html

我能够在我的 Cloud Foundry 帐户上配置的 MySQL 服务上执行 SQL。如果这没有帮助,您能否链接到您的应用程序的 zip,以便我可以下载并尝试重现该问题?

于 2012-05-22T00:18:34.817 回答