How can I connect via Symfony 4 to mySQL database created with MAMP?(如何通过 Symfony 4 连接到使用 MAMP 创建的 mySQL 数据库?)
问题描述
我在 MAMP 中创建了一个名为项目"的数据库.
I created a database in MAMP called "project".
在我的 .env 文件中,我添加了这一行:
In my .env file I added this line:
DATABASE_URL=mysql://root:root@localhost:3306/project
现在我想跑步
php bin/console doctrine:database:create
但我收到一条错误消息:
But I get an error message:
SQLSTATE[HY000] [2002] 没有这样的文件或目录
SQLSTATE[HY000] [2002] No such file or directory
我的教义配置:
parameters:
# Adds a fallback DATABASE_URL if the env var is not set.
# This allows you to run cache:warmup even if your
# environment variables are not available yet.
# You should not need to change this value.
env(DATABASE_URL): ''
doctrine:
dbal:
# configure these for your database server
driver: 'pdo_mysql'
server_version: '5.7'
charset: utf8mb4
default_table_options:
charset: utf8mb4
collate: utf8mb4_unicode_ci
url: '%env(resolve:DATABASE_URL)%'
orm:
auto_generate_proxy_classes: '%kernel.debug%'
naming_strategy: doctrine.orm.naming_strategy.underscore
auto_mapping: true
mappings:
App:
is_bundle: false
type: annotation
dir: '%kernel.project_dir%/src/Entity'
prefix: 'AppEntity'
alias: App
推荐答案
解决了!
在config/packages/doctrine.yaml"文件中,我必须添加这一行
in the file "config/packages/doctrine.yaml" I had to add this line
unix_socket:/Applications/MAMP/tmp/mysql/mysql.sock
unix_socket: /Applications/MAMP/tmp/mysql/mysql.sock
这意味着改变这个:
dbal:
# configure these for your database server
driver: 'pdo_mysql'
server_version: '5.7'
charset: utf8mb4
default_table_options:
charset: utf8mb4
collate: utf8mb4_unicode_ci
url: '%env(resolve:DATABASE_URL)%'
进入
dbal:
# configure these for your database server
driver: 'pdo_mysql'
server_version: '5.7'
charset: utf8mb4
unix_socket: /Applications/MAMP/tmp/mysql/mysql.sock
default_table_options:
charset: utf8mb4
collate: utf8mb4_unicode_ci
url: '%env(resolve:DATABASE_URL)%'
这篇关于如何通过 Symfony 4 连接到使用 MAMP 创建的 mySQL 数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过 Symfony 4 连接到使用 MAMP 创建的 mySQL 数据库?
基础教程推荐
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 无法解决整理冲突 2021-01-01
