SQLSTATE[HY000] [2002] Permission denied

北城以北 提交于 2019-12-10 02:58:47

问题


I am getting this error don't know the reason SQLSTATE[HY000] [2002] Permission denied and here is the website on which i am tryiing to upload my file example.com.


回答1:


This happen because selinux avoid db connections from the httpd server to the remote db server. To solve it you need to access your server trough ssh or just open a console if you have pretencial acces and do the follow:

You must check in the SELinux if the port 80 is managed in. You can check it typing # semanage port -l | grep http_port_t for list and check:

http_port_t tcp 443, 488, 8008, 8009, 8443, 9000

If you need to add the required port, just type:

# semanage port -a -t http_port_t -p tcp 80

Type the command to ckeck once again:

# semanage port -l | grep http_port_t

.

http_port_t tcp 80, 443, 488, 8008, 8009, 8443, 9000

Then you should notify SELinux you want to allow network connections from the httpd server to the db remote server, seting the boolean variables that set it:

  1. Down the httpd service # service httpd stop
  2. # setsebool httpd_can_network_connect 1
  3. # setsebool httpd_can_network_connect_db 1
  4. Up the httpd service # service httpd start

Now your httpd service should be capable to get data from the db server.

I hope that can be usefull for the gang that search solve errors like this.

From Chile, best regards.




回答2:


Go in .env file and change DB_HOST=127.0.0.1 to DB_HOST=localhost




回答3:


Maybe you need to shut down your selinux just like this

setenforce 0


来源:https://stackoverflow.com/questions/34673627/sqlstatehy000-2002-permission-denied

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!