Home > Database > Mysql Tutorial > Ubuntu14.04安装mysql的一点小问题_MySQL

Ubuntu14.04安装mysql的一点小问题_MySQL

WBOY
Release: 2016-06-01 13:12:41
Original
1073 people have browsed it

Ubuntu

Ubuntu14.04出来有段时间了,前几天刚升级到这个版本,新鲜了一把。不过安装mysql时遇到了一点小问题,记录一下以备后用。

预备操作:

网上安装mysql的方法不少,大体有这么三种。

1. 从网上安装 sudo apt-get install mysql-server。装完已经自动配置好环境变量,可以直接使用mysql的命令。

2. 安装离线包,以mysql-5.0.45-linux-i686-icc-glibc23.tar.gz为例。

3. 二进制包安装:安装完成已经自动配置好环境变量,可以直接使用mysql命令。

根据工作的需要有时候需要安装离线包。所以我尝试安装的是第二种方式,先说下大体的过程。

groupadd mysql#第一步mkdir /home/mysql#第二步useradd -g mysql -d /home/mysql mysql#第三步sudo cp mysql-5.0.45-linux-i686-icc-glibc23.tar.gz /usr/local#第四步tar zxvf mysql-5.0.45-linux-i686-icc-glibc23.tar.gz#第五步ln -s mysql-5.0.45-linux-i686-icc-glibc23 mysql#第六步cd /usr/local/mysql#第七步chown -R mysql .#第八步chgrp -R mysql .#第九步scripts/mysql_install_db --user=mysql#第十步./bin/mysqladmin -u root password 'passw0rd'#第十一步
Copy after login

问题:

在执行第十步的时候出现了出错如下:
Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Copy after login
解决方案:

上述提示信息说明这里缺少一个依赖包libaio,安装这个依赖包即可。

<span style="font-size:14px;">sudo apt-get install libaio-dev</span>
Copy after login

至此可以顺利完成整个mysql的安装过程。

本文为原创内容,亲测可用!欢迎转载,转载请注明出处:blog.csdn.net/ljgstudy,谢谢您的配合!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template