安装二进制软件包的mysql出现 error while loading shared libraries: libaio.so.1:

在安装二进制mysql的软件包时(版本mysql-5.5.44),初始化中出现 error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory的错误:

[[email protected] mysql]# scripts/mysql_install_db --datadir=/data/mydata --user=mysql
Installing MySQL system tables...
./bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

Installation of system tables failed!  Examine the logs in
/data/mydata for more information.

You can try to start the mysqld daemon with:

shell> ./bin/mysqld --skip-grant &

and use the command line tool ./bin/mysql
to connect to the mysql database and look at the grant tables:

shell> ./bin/mysql -u root mysql
    mysql> show tables

Try ‘mysqld --help‘ if you have problems with paths.  Using --log
gives you a log in /data/mydata that may be helpful.

Please consult the MySQL manual section
‘Problems running mysql_install_db‘, and the manual section that
describes problems on your OS.  Another information source are the
MySQL email archives available at http://lists.mysql.com/.

Please check all of the above before submitting a bug report
at http://bugs.mysql.com/

解决方法:

[[email protected] data]# yum install -y libaio  //安装后在初始化就OK了

[[email protected] mysql]# scripts/mysql_install_db --datadir=/data/mydata --user=mysql
Installing MySQL system tables...
150804 18:53:23 [Note] ./bin/mysqld (mysqld 5.5.44) starting as process 1660 ...
OK
Filling help tables...
150804 18:53:24 [Note] ./bin/mysqld (mysqld 5.5.44) starting as process 1667 ...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

./bin/mysqladmin -u root password ‘new-password‘
./bin/mysqladmin -u root -h example.com password ‘new-password‘

Alternatively you can run:
./bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd . ; ./bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd ./mysql-test ; perl mysql-test-run.pl

Please report any problems at http://bugs.mysql.com/

时间: 2024-10-12 23:16:50

安装二进制软件包的mysql出现 error while loading shared libraries: libaio.so.1:的相关文章

mysql 初始化报错 /usr/local/mysql/bin/mysqld:error while loading shared libraries :libaio.so.1

安装mysql在初始化的时候,出现/usr/local/mysql/bin/mysqld:error while loading shared libraries:libaio.so.1 :cannot open shared object file:NO such file or directory 解决方法: <P>type the following</P> <P>apt-get install libaio1 libaio-dev</P> <P

MySQL&amp;MariaDB出现error while loading shared libraries: libaio.so错误

编译MariaDB中突然出现 “./bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory” 于是搜了搜终于解决了,正好来分享一下 sudo apt-get install libaio1 (参考文章:http://www.neatstudio.com/show-2360-1.shtml)

error while loading shared libraries: libaio.so.1

Installing MySQL system tables.../usr/local/mysql/bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory yum install libaio*

centos6.9安装xampp后报错:egrep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

1.centos6.9安装xampp(xampp-linux-x64-7.0.21-0-installer.run)后启动的时候,报错: egrep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directoryegrep: error while loading shared libraries: libc.so.6: cannot open

mysql无法初始化 报错 error while loading shared libraries: libaio.so.1

仔细看了一下,这个错误是在执行./scripts/mysql_install_db --user=mysql & 的时候出现的. 于是安装了一下libaio ubuntu:apt-get install libaio-dev centos:yum install libaio 再次执行./scripts/mysql_install_db --user=mysql & 成功 启动mysql成功. 成功安装. 顺便说一下,包的作用是为了支持同步I/O.对于数据库之类的系统特别重要,因此在lin

error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

此问题是在 ubuntu 14.04.5 上安装 MySQL 5.6 碰到的,倒腾半天,原因是没有安装 libail.so.1,执行以下命令即可: sudo apt-get install libaio1 libaio-dev 参看连接:https://blog.csdn.net/tongtong0704/article/details/78933112 原文地址:https://www.cnblogs.com/lzj123/p/10440045.html

mysql: error while loading shared libraries: libmysqlclient

mysql: error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory因为安装卸载过rpm旧版本的缘故,旧版本遗留下很多Mysql命令,执行mysql命令的时候,没有指定目录,直接使用的$PATH下的命令,使用的是旧版本的命令:把旧版本的命令删除,同时将新版本的bin加到path即可. 来源: http://blog.1

安装了libevent和memcached之后却发现在执行的时候出现了 error while loading shared libraries问题

今天晚上心血来潮装libevent和memcached,可是却出现了奇葩的问题,结果一看越来是引导文件的路径不对! 我遇到  error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory 这样的问题是在安装memcached的时候遇到的. 我按别人的攻略安装了libevent和memcached之后却发现在执行的时候出现了. er

NCARG安装配置出现error while loading shared libraries: libg2c.so.0问题额解决办法

nclncl: error while loading shared libraries: libg2c.so.0: cannot open shared object file: No such file or directory 先看看运行机器上面有没有这个动态链接库,有的话再看看环境变量对不对,libg2c.so.0 所在路径是不是在你的LD_LIBRARY_PATH里面了,可以到/etc/ld.so.conf文件里面去更改,然后ldconfig 如果有的话,按2楼操作,一般情况下是动态文