ubuntu因为意外关机导致 mysql启动不了
来源:SegmentFault
时间:2023-01-28 19:32:26 177浏览 收藏
对于一个数据库开发者来说,牢固扎实的基础是十分重要的,golang学习网就来带大家一点点的掌握基础知识点。今天本篇文章带大家了解《ubuntu因为意外关机导致 mysql启动不了》,主要介绍了MySQL、PHP、ubuntu18.04,希望对大家的知识积累有所帮助,快点收藏起来吧,否则需要时就找不到了!
操作之前首先要做好重新安装mysql的准备
步骤:在/etc/mysql/mysql.conf.d下的mysqld.cnf中配置
[mysqld]
innodb_force_recovery = 1
其中后面的值设置为1、如果1不能启动成功,再逐步增加为2/3/4等。直到能启动mysql为止
一般情况下到3为止应该是可以启动的,如果启动了先把数据库备份,最好重新装一下mysql,因为虽然启动了,但是当你第一次访问项目以后,第二次再访问就会报数据库错,当然你也可以按照网上的方法试试,方法在下方最后,反正我没成功。
这里讲一下卸载数据库
首先在终端中查看MySQL的依赖项:
sudo apt purge mysql-* sudo rm -rf /etc/mysql/ /var/lib/mysql sudo apt autoremove sudo apt autoclean
在执行命令
dpkg --list|grep mysql查看mysql下依赖
留下php-mysql就行了
参考连接:记一次服务器宕机后数据库恢复的过程
Ubuntu18.04彻底删除MySQL数据库
Ubuntu20.04上安装MySQL8.0
如果以上链接内容失效,就直接看下面把,我都给复制过来了
------------------------------------------------------这里我把参考链接的内容复制过来了
第一种卸载mysql
首先在终端中查看MySQL的依赖项:
dpkg --list|grep mysql
卸载:
sudo apt-get remove mysql-common
卸载:
sudo apt-get autoremove --purge mysql-server-5.7
清除残留数据:
dpkg -l|grep ^rc|awk '{print$2}'|sudo xargs dpkg -P
再次查看MySQL的剩余依赖项:
dpkg --list|grep mysql
继续删除剩余依赖项,如:
sudo apt-get autoremove --purge mysql-apt-config
至此已经没有了MySQL的依赖项,彻底删除,Good Luck
链接:https://blog.csdn.net/iehadoo...
第二种方法就是我写的那样
mysql启动不了方法:
现象
现象很简单,数据库服务器被宕机,当然是在没有停数据库服务的情况下。
机器重启后,试图重启MySQL服务,无果,查看错误日志:
170920 0:30:17 InnoDB: Assertion failure in thread 140107687212800 in file /export/home/pb2/build/sb_0-2629600-1291399482.5/mysql-5.5.10/storage/innobase/include/fut0lst.ic line 83 InnoDB: Failing assertion: addr.page == FIL_NULL || addr.boffset >= FIL_PAGE_DATA InnoDB: We intentionally generate a memory trap. InnoDB: Submit a detailed bug report to http://bugs.mysql.com. InnoDB: If you get repeated assertion failures or crashes, even InnoDB: immediately after the mysqld startup, there may be InnoDB: corruption in the InnoDB tablespace. Please refer to InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html InnoDB: about forcing recovery. 170920 0:30:17 - mysqld got signal 6 ; This could be because you hit a bug. It is also possible that this binary or one of the libraries it was linked against is corrupt, improperly built, or misconfigured. This error can also be caused by malfunctioning hardware. We will try our best to scrape up some info that will hopefully help diagnose the problem, but since we have already crashed, something is definitely wrong and this may fail. key_buffer_size=16777216 read_buffer_size=262144 max_used_connections=0 max_threads=500 thread_count=0 connection_count=0 It is possible that mysqld could use up to key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 406067 K bytes of memory Hope that's ok; if not, decrease some variables in the equation. thd: 0x0 Attempting backtrace. You can use the following information to find out where mysqld died. If you see no messages after this, something went terribly wrong... stack_bottom = (nil) thread_stack 0x40000 /usr/local/mysql/bin/mysqld(my_print_stacktrace+0x39)[0x916839] /usr/local/mysql/bin/mysqld(handle_segfault+0x359)[0x4fc0d9] /lib64/libpthread.so.0(+0xf4a0)[0x7f6d5ca9f4a0] /lib64/libc.so.6(gsignal+0x35)[0x7f6d5be4a885] /lib64/libc.so.6(abort+0x175)[0x7f6d5be4c065] /usr/local/mysql/bin/mysqld[0x7d5601] /usr/local/mysql/bin/mysqld[0x7ca012] /usr/local/mysql/bin/mysqld[0x7ca357] /usr/local/mysql/bin/mysqld[0x7cce1a] /usr/local/mysql/bin/mysqld[0x7b89e8] /usr/local/mysql/bin/mysqld[0x78d97d] /usr/local/mysql/bin/mysqld(_Z24ha_initialize_handlertonP13st_plugin_int+0x48)[0x6683a8] /usr/local/mysql/bin/mysqld[0x57ddba] /usr/local/mysql/bin/mysqld(_Z11plugin_initPiPPci+0xb5d)[0x581cbd] /usr/local/mysql/bin/mysqld[0x50212c] /usr/local/mysql/bin/mysqld(_Z11mysqld_mainiPPc+0x3c2)[0x504742] /lib64/libc.so.6(__libc_start_main+0xfd)[0x7f6d5be36cdd] /usr/local/mysql/bin/mysqld[0x4fa3fa] The manual page at http://dev.mysql.com/doc/mysql/en/crashing.html contains information that should help you find out what is causing the crash. 170920 00:30:17 mysqld_safe mysqld from pid file /usr/local/mysql/data/localhost.localdomain.pid ended 170920 01:04:55 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data 170920 1:04:55 [Warning] Ignoring user change to 'ser=mysql' because the user was set to 'mysql' earlier on the command line
解决过程
刚开始的重点放在了这段日志上:
It is possible that mysqld could use up to key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 406067 K bytes of memory Hope that's ok; if not, decrease some variables in the equation.
以为是MySQL的一些参数设置有问题,结合Google结果,对
/etc/my.cnf进行了修改,仍无果。问题解决之后想来,因为之前MySQL是运行正常的,因此配置一般不会有问题,当时也是“病急乱投医”了。
- Forcing InnoDB Recovery
设置恢复模式启动mysql,在 /etc/my.cnf中添加如下配置:
[mysqld] innodb_force_recovery = 1
其中后面的值设置为1、如果1不能启动成功,再逐步增加为2/3/4等。直到能启动mysql为止!!!
Forcing InnoDB Recovery提供了6个等级的修复模式,需要注意的是值大于3的时候,会对数据文件造成永久的破坏,不可恢复。六个等级的介绍摘抄如下:
- (SRV_FORCE_IGNORE_CORRUPT)
Lets the server run even if it detects a corrupt page. Tries to make SELECT * FROM tbl_name jump over corrupt index records and pages, which helps in dumping tables.
- (SRV_FORCE_NO_BACKGROUND)
Prevents the master thread and any purge threads from running. If a crash would occur during the purge operation, this recovery value prevents it.
- (SRV_FORCE_NO_TRX_UNDO)
Does not run transaction rollbacks after crash recovery.
- (SRV_FORCE_NO_IBUF_MERGE)
Prevents insert buffer merge operations. If they would cause a crash, does not do them. Does not calculate table statistics. This value can permanently corrupt data files. After using this value, be prepared to drop and recreate all secondary indexes.
- (SRV_FORCE_NO_UNDO_LOG_SCAN)
Does not look at undo logs when starting the database: InnoDB treats even incomplete transactions as committed. This value can permanently corrupt data files.
- (SRV_FORCE_NO_LOG_REDO)
Does not do the redo log roll-forward in connection with recovery. This value can permanently corrupt data files. Leaves database pages in an obsolete state, which in turn may introduce more corruption into B-trees and other database structures.
恢复模式下启动MySQL
/usr/local/mysql/bin/mysqld_safe -user=mysql&
重启成功后,测试数据库是否可以正常连接:
mysql -uroot -p123456
数据备份
恢复模式数据库是只读的,当然和恢复级别相关。
现在需要做的是将数据库数据备份,然后清除之前的错误数据,最后再从备份数据中进行恢复。
mysqldump -uroot -p123456 --all-databases > all_mysql_backup.sql
原数据清理或备份
清理数据前需要先将数据库服务停止。
将数据库的data目录进行备份,相当于恢复到数据库刚安装完成时的状态。
mkdir data-bak cd data mv * ../data-bak/
数据恢复
数据库初始化
因为所有的数据都已删除掉,因此需要进行MySQL的初始化。
cd /usr/local/mysql ./scripts/mysql_install_db --user=mysql&
备份数据恢复
登录MySQL:
mysql -u root -p123456
登录后,在数据库中执行下列语句,即可恢复数据:
source /app/all_mysql_backup.sql
恢复后对数据进行检查。
本篇关于《ubuntu因为意外关机导致 mysql启动不了》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于数据库的相关知识,请关注golang学习网公众号!
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
-
418 收藏
-
339 收藏
-
279 收藏
-
189 收藏
-
208 收藏
-
174 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习