
Linux和宝塔面板下关闭phpMyAdmin的SSL访问
一、Linux下关闭phpMyAdmin的SSL访问
编辑phpMyAdmin配置文件
找到phpMyAdmin的配置文件config.inc.php
,通常位于/usr/share/phpmyadmin
或/etc/phpmyadmin
。
sudo nano /usr/share/phpmyadmin/config.inc.php
修改SSL配置
在配置文件中找到或添加以下行,确保$cfg['Servers'][$i]['ssl']
设置为false
:
$cfg['Servers'][$i]['ssl'] = false;
保存并退出
保存文件并退出编辑器。
重启Web服务器
重启Apache或Nginx以使更改生效。
Apache:
sudo systemctl restart apache2
Nginx:
sudo systemctl restart nginx
二、宝塔面板下关闭phpMyAdmin的SSL访问
登录宝塔面板
使用浏览器登录宝塔面板。
进入phpMyAdmin设置
在面板左侧菜单中找到“软件商店”,搜索并进入phpMyAdmin的管理页面。
关闭SSL
在phpMyAdmin设置页面,找到SSL选项并关闭。
重启Web服务器
在宝塔面板的“软件商店”中重启Nginx或Apache。
Nginx: 点击Nginx服务的“重启”按钮。
Apache: 点击Apache服务的“重启”按钮。
三、验证
完成上述步骤后,访问phpMyAdmin时应不再使用SSL。可以通过HTTP访问确认。
注意事项
关闭SSL会降低安全性,建议仅在测试或内网环境中使用。
如果phpMyAdmin通过反向代理访问,还需检查代理服务器的SSL配置。