惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Spread Privacy
Spread Privacy
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
SecWiki News
SecWiki News
腾讯CDC
P
Privacy International News Feed
Webroot Blog
Webroot Blog
J
Java Code Geeks
爱范儿
爱范儿
A
About on SuperTechFans
S
Secure Thoughts
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
D
DataBreaches.Net
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Security Latest
Security Latest
Forbes - Security
Forbes - Security
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
量子位
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
V
Visual Studio Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 聂微东
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs

记录生活,精彩一刻 - 宝塔

宝塔面板自动挂载 webdav 无需输入密码充当网站附件盘 宝塔面板强制安装 MySQL8.0 phpMyAdmin访问出现Warning: require_once(./libraries/common.inc.php)完美解决办法 解决宝塔面板SSL证书安装失败: Invalid version. The only valid version for X509Req is 0. 宝塔Nginx免费防火墙拦截发布的文章的解决办法 宝塔面板v7.7.0 Github纯净版 优化脚本 手动解锁插件 关于宝塔面板如何调整PHP配置 FTP连接不上 阿里云的服务器 宝塔的面板 解决办法 宝塔面板日常使用八大技巧总结(建议收藏)
解决宝塔面板后台访问卡顿软件商店加载不出来问题
Huo · 2025-01-09 · via 记录生活,精彩一刻 - 宝塔

宝塔

今天看到一个网友反馈自己很长时间没有登录的宝塔面板后台访问很慢,而且打开左侧菜单后加载也是比较慢的。同时,在打开软件商店的时候软件列表加载不出来。当然这个时候服务器中的网站是可以访问的,问题应该在于宝塔面板。这里我先考虑的是给他升级到BT面板最新版本,点击右上角升级的时候也是无法加载。

然后查看其他说明,告知是服务器的DNS和宝塔面板的兼容问题,这里需要修改DNS。

1、国内云服务器

如果我们是大陆和香港服务器,更换这个DNS。

优先选择这条命令执行

sed -i "/bt.cn/d" /etc/hosts
echo "116.10.184.232 www.bt.cn download.bt.cn api.bt.cn dg1.bt.cn dg2.bt.cn" >> /etc/hosts

2、国外云服务器

如果我们是国外的云服务器,执行这个脚本。

sed -i "/bt.cn/d" /etc/hosts
echo "128.1.164.196 www.bt.cn download.bt.cn api.bt.cn dg1.bt.cn dg2.bt.cn" >> /etc/hosts

如果还是无法解决的话,执行命令:

wget http://125.90.93.52/tools/auto_fix.sh && bash auto_fix.sh

修复后再试试。