我在本地计算机上安装了Fedora 19,并将默认主机名更改为'my.greathostname'
。
这意味着当我使用终端时,我的提示是:
[me@my ~]
我安装了MariaDB。
我在MariaDB中创建了一个新用户,例如'newuser@my.greathostname'
。
当我尝试使用'mysql -u newuser -p'
登录MariaDB并输入密码时,我得到:
ERROR 1045 (28000): Access denied for user 'newuser'@'localhost' (using password: YES)
因此,默认情况下,它会尝试登录'localhost'
而不是'my.greathostname'
。
当本地计算机的主机名为'localhost'
时,为什么要尝试登录'my.greathostname'
。
我想更改MariaDB中的主机名的原因只是为了获得更“自定义”的体验。