gpt4 book ai didi

mysql - drush sql-sync 上的访问被拒绝(远程用户和数据库用户不同)

转载 作者:行者123 更新时间:2023-11-30 22:25:43 25 4
gpt4 key购买 nike

双方都使用 Drush v8.0.3(本地是 Mac,desarrollo 是带有 CPanel 的 Linux 服务器),我正在执行:

sql-sync @project.local @project.desarrollo

并在过程结束时出现此错误(其他一切正常):

ERROR 1045 (28000): Access denied for user 'myremotehostuser'@'localhost' (using password: YES)

我的别名文件包括:

$aliases['desarrollo'] = array (
'root' => '/home/myremotehostuser/subdomains/project/',
'uri' => 'http://project.myremotehost.com',
'remote-user' => 'myremotehostuser',
'remote-host' => 'myremotehost.com',
'path-aliases' => array(
'%dump-dir' => '/tmp',
),
'source-command-specific' => array (
'sql-sync' => array (
'no-cache' => TRUE,
'structure-tables-key' => 'common',
),
),
'command-specific' => array (
'sql-sync' => array (
'sanitize' => TRUE,
'no-ordered-dump' => TRUE,
'structure-tables' => array(
'common' => array('cache', 'cache_filter', 'cache_menu', 'cache_page', 'history', 'sessions', 'watchdog'),
),
),
),
);

“desarrollo”返回 drush 状态:

Drupal version         :  7.41                                   
Site URI : http://project.myremotehost.com
Database driver : mysql
Database hostname : localhost
Database port :
Database username : databaseuser
Database name : databasename
PHP configuration : /usr/local/lib/php.ini
PHP OS : Linux
Drush script : /usr/local/bin/drush
Drush version : 8.0.3
Drush temp directory : /tmp
Drush configuration :
Drush alias files :
Drupal root : /home/myremotehostuser/subdomains/project/
Drupal Settings File : sites/default/settings.php
Site path : sites/default

如您所见,“数据库所有者”(MySQL 用户)与“远程主机”(CPanel 用户)不同。

Drush 应该扫描两侧的设置文件以找出正确的配置,如果我没记错的话,从 v7 开始,您甚至不必添加 $databases 数组或 db-url 字符串。那么,为什么要尝试使用 'myremotehostuser'@'localhost' 而不是 'databaseuser'@'localhost' 来访问数据库?

在这种情况下,没有名为“myremotehostuser”的数据库用户,我想我可以通过创建它并授予“databasename”权限来解决问题,但我几乎可以肯定我在这里遗漏了一些非常愚蠢的东西并且必须有一个简单的解决方案。

编辑:

尝试在主机用户名和数据库用户名仍然不同的同一服务器中使用相同的别名文件,但这次在新创建的帐户中,似乎工作得很好。所以我猜这个问题是由一些 CPanel/WHM 配置问题而不是任何 Drush 相关的问题引起的。在结束问题之前,我会继续尝试几次。

最佳答案

我也遇到了这个问题。结果是 drush 首先寻找文件 ~/.my.cnf,如果找到,它将使用它进行连接。该文件包含用户名和密码。

[client]
user=myremotehostuser

一旦我暂时删除了这个文件,drush 就可以使用站点的 settings.php 成功转储 sql。

关于mysql - drush sql-sync 上的访问被拒绝(远程用户和数据库用户不同),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35296844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com