我在symfony 2上创建了一个实体,现在我正在尝试使用console命令创建一个数据库:
php app/console doctrine:database:create
并生成此错误:
Could not create database for connection named `symfony`
SQLSTATE[HY000] [2003] Can't connect to MySQL server on '127.0.0.1' (61)
我的操作系统是Mac OS x,带有MAMP
我的参数文件是:
parameters:
database_driver: pdo_mysql
database_host: 127.0.0.1
database_port: null
database_name: symfony
database_user: root
database_password: null
mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: null
mailer_password: null
locale: en
secret: ThisTokenIsNotSoSecretChangeIt
答案 0 :(得分:0)
默认情况下,MySQL在端口3306
上运行。如果您尚未更改该端口,请使用:
database_port: 3306
如果您更改了端口,请改用端口,然后尝试一下。
答案 1 :(得分:0)
如果你试着写这个怎么办:
database_password: null > database_password: ''
您的用户是否拥有商品权限?