Home  >  Article  >  Database  >  Ubuntu下配置MySQL数据库简述

Ubuntu下配置MySQL数据库简述

WBOY
WBOYOriginal
2016-06-07 16:55:501090browse

一). Ubuntu下MySQL安装布局:/usr/bin 客户端程序和mysql_install_db/db 数据

一). Ubuntu下MySQL安装布局:

/usr/bin                      客户端程序和mysql_install_db
/db                             数据库和日志文件(自定义的)
/var/run mysqld        服务器
/etc/mysql mysql       配置文件my.cnf
/usr/share/mysql       字符集,基准程序和错误消息
/etc/init.d/mysql        启动mysql服务器


二). 修改mysql数据库文件的存储目录:

假设我们指定的数据库文件目录为/db
1. 创建目录 /db,并修改其拥有者及所属群组为mysql:mysql.命令:chown mysql:mysql db
2. 关闭mysql数据库服务:mysqladmin -u root -p shutdown
3. 修改mysql配置文件my.cnf:将datadir=/var/lib/mysql改为datadir=/db
4. 重新初始化数据文件:执行mysql_install_db
5. 启动mysql数据库服务:sudo /etc/init.d/mysql start
6. 设置mysql数据库root密码:mysqladmin -u root password ‘new-password’
此时我们会发现/db目录下出现mysql相关文件。如果我们新建数据库,其数据库文件也将出现在db目录下。表示我们修改的mysql数据库文件存储目录正确。

linux

Statement:
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