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

推荐订阅源

T
The Exploit Database - CXSecurity.com
A
Arctic Wolf
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
PCI Perspectives
PCI Perspectives
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
P
Privacy & Cybersecurity Law Blog
O
OpenAI News
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Cisco Blogs
AWS News Blog
AWS News Blog
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
美团技术团队
T
Threatpost
S
Schneier on Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
Cyber Attacks, Cyber Crime and Cyber Security
Last Week in AI
Last Week in AI
C
CERT Recently Published Vulnerability Notes
Blog — PlanetScale
Blog — PlanetScale
C
Cybersecurity and Infrastructure Security Agency CISA
F
Full Disclosure
博客园_首页
N
Netflix TechBlog - Medium
Security Latest
Security Latest
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Register - Security
The Register - Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Recent Announcements
Recent Announcements
博客园 - Franky
P
Palo Alto Networks Blog
Project Zero
Project Zero
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
H
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Cisco Talos Blog
Cisco Talos Blog
H
Heimdal Security Blog
The Hacker News
The Hacker News
博客园 - 【当耐特】
GbyAI
GbyAI

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

宝塔面板自动挂载 webdav 无需输入密码充当网站附件盘 解决宝塔面板后台访问卡顿软件商店加载不出来问题 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连接不上 阿里云的服务器 宝塔的面板 解决办法 宝塔面板日常使用八大技巧总结(建议收藏)
宝塔面板强制安装 MySQL8.0
Huo · 2024-12-06 · via 记录生活,精彩一刻 - 宝塔

MySQL8.0 对比以往的版本有了很大的提升,但是要求的服务器配置也就变得越来越高。对于低配置服务器,在宝塔面板进行安装时,总会出现“至少需要 2 个 CPU 核心才能安装”或者“至少需要 XXX 内存才能安装”。但我们又想要体验 MySQL8.0 新版本,这时候该怎么办呢?只有强制在宝塔面板中安装 MySQL8.0。

低配置服务器在宝塔面板中安装 MySQL8.0 方法

远程连接到服务器中,并执行下面代码:

cd /www/server/panel/install

编译安装 MySQL8.0,请在远程控制台中输入下面脚本:

SHELL

wget http://download.bt.cn/install/0/mysql.sh;
bash mysql.sh install 8.0

极速安装 MySQL8.0,请在远程控制台中输入下面脚本:

SHELL

wget http://download.bt.cn/install/1/mysql.sh;
bash mysql.sh install 8.0

将 8.0 替换成你要安装的 mysql 版本。

请注意:如果你已经安装了数据库,上面的命令会卸载删除当前数据库及数据

这样低内存服务器在宝塔面板安装 Mysql8.0 就实现了!