Using PHPMyAdmin to administer Amazon RDS

后端 未结 9 1042
挽巷
挽巷 2020-12-02 10:02

I can\'t get PHPMyAdmin to connect to my Amazon RDS instance. I\'ve granted permissions for my IP address to the DB Security Group which has access to this database I\'m tr

9条回答
  •  失恋的感觉
    2020-12-02 10:29

    If you can connect from the cli using mysql -h ENDPOINT -u USERNAME -p but not from PHPMyAdmin or your own web scripts, don't forget to tell selinux to let your web server talk to the network :)

    sudo setsebool -P httpd_can_network_connect=1
    

提交回复
热议问题