./mysqld: error while loading shared libraries: libaio.so.1: 报错处理

news/2025/1/15 12:25:58/

报错提示

[root@hecs-399223 bin]# ./mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

解决方案:

[root@hecs-399223 bin]# yum -y install libaio
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package libaio.x86_64 0:0.3.109-13.el7 will be installed
--> Finished Dependency ResolutionDependencies Resolved=================================================================================================================================Package                      Arch                         Version                              Repository                  Size
=================================================================================================================================
Installing:libaio                       x86_64                       0.3.109-13.el7                       base                        24 kTransaction Summary
=================================================================================================================================
Install  1 PackageTotal download size: 24 k
Installed size: 38 k
Downloading packages:
libaio-0.3.109-13.el7.x86_64.rpm                                                                          |  24 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transactionInstalling : libaio-0.3.109-13.el7.x86_64                                                                                  1/1 Verifying  : libaio-0.3.109-13.el7.x86_64                                                                                  1/1 Installed:libaio.x86_64 0:0.3.109-13.el7                                                                                                 Complete!

http://www.ppmy.cn/news/1180192.html

相关文章

安卓开发实例:首页

导航菜单&#xff0c;点击按钮跳转。 activity_main.xml <?xml version"1.0" encoding"utf-8"?> <androidx.constraintlayout.widget.ConstraintLayoutxmlns:android"http://schemas.android.com/apk/res/android"xmlns:tools&quo…

内网穿透的应用-Linux JumpServer堡垒机:安全远程访问解决方案

文章目录 前言1. 安装Jump server2. 本地访问jump server3. 安装 cpolar内网穿透软件4. 配置Jump server公网访问地址5. 公网远程访问Jump server6. 固定Jump server公网地址 前言 JumpServer 是广受欢迎的开源堡垒机&#xff0c;是符合 4A 规范的专业运维安全审计系统。JumpS…

结构伪类选择器

伪类选择器&#xff1a;用来描述一个元素的特殊状态&#xff01;比如第一个元素、某个元素的子元素、鼠标点击的元素 1 first-child/last-child /*ul的第一个子元素*/ ul li:first-child{ background: #0f35ad; } /*ul的最后一个子元素*/ ul li:last-child{ background: #0f3…

单片机为什么一直用C语言,不用其他编程语言?

单片机为什么一直用C语言&#xff0c;不用其他编程语言&#xff1f; 51 单片机规模小得拮据&#xff0c;C 的优势几乎看不到。放个类型信息进去都费劲&#xff0c;你还想用虚函数&#xff1f;还想模板展开&#xff1f;程序轻松破 10k。最近很多小伙伴找我&#xff0c;说想要一些…

Fabric.js 样式不更新怎么办?

本文简介 带尬猴&#xff0c;我嗨德育处主任 不知道你有没有遇到过在使用 Fabric.js 时无意中一些骚操作修改了元素的样式&#xff0c;但刷新画布却没更新元素样式&#xff1f; 如果你也遇到同样的问题的话&#xff0c;可以尝试使用本文的方法。 是否需要重新绘制 我先举个例…

sourcetree Incorrect username or password (access token)

sourcetree报错 sourcetree Incorrect username or password (access token) 右键sourcetree找到文件所在目录 回到上一级&#xff0c;一般为AppData\Local 在AppData\Local下找到名为Atlassian的文件夹 在里面找到passwd和userhosts文件&#xff0c;并删掉 回到sourcetree再次…

Kamailio statsd模块测试

Kamailio statsd模块测试 准备statsd服务器 git克隆 cd /usr/local git clone https://github.com/myoperator/grafana-graphite-statsd.git cd grafana-graphite-statsd make prep # 创建log目录修改docker-compose.yml&#xff0c;给statsd增加一个环境变量STATSD_DEBUGtr…

针对Java API格式

接口样式 /order/order/detail/{id} 小程序封装请求 //原 // getPurchaseDetail: (data) > request(/order/order/detail, GET, data) // -- 飘点符号不一致//现采购详情 getPurchaseDetail: (data) > request(/order/order/detail/${data}, GET, data),// 请求a…