我已经创建了两个数据库,并希望在我的情况下为特定用户提供访问权限
MariaDB [(none)]> create database test1;
MariaDB [(none)]> create database test2;
MariaDB [(none)]> CREATE USER 'dblogin'@'localhost' IDENTIFIED BY 'MYPASS';
MariaDB [(none)]> GRANT ALL ON test1.* TO 'dblogin'@'localhost' ;
MariaDB [(none)]> GRANT ALL ON test2.* TO 'dblogin'@'localhost' ;
MariaDB [(none)]> FLUSH PRIVILEGES;
当我尝试配置WordPress时,它只是不会连接到数据库,并显示访问被拒绝。
在添加了公共IP4地址之后,我在VM上确实有两个公共地址,我按照VULTR进行了以下操作
用以下文本填充/etc/netplan/10-ens3.yaml文件。
network:
version: 2
renderer: networkd
ethernets:
ens3:
dhcp4: no
addresses: [207.148.X.XX/23,66.XX.XXX.XXX/32]
gateway4: 207.148.X.X
nameservers:
addresses: [108.XX.XX.XX]
routes:
- to: 169.XXX.X.0/16
via: 207.XXX.X.XX
metric: 100
更新网络或重新启动。 netplan适用
我的绑定地址
bind-address = 127.0.0.1