Home  >  Article  >  Database  >  windows和Linux下的mysql授权表_MySQL

windows和Linux下的mysql授权表_MySQL

WBOY
WBOYOriginal
2016-06-01 13:38:391150browse

bitsCN.com


windows和Linux下的mysql授权表

 

在Windows中,当mysql安装完成之后不需要创建数据目录和授权表。在数据目录下的MySQL数据库中存在一套预初始化的账户的授权表。不要运行Unix中使用的mysql_install_db脚本。

 

    在Unix上安装MySQL后,需要初始化授权表、启动服务器,并确保服务器工作正常。并为授权表中的账户指定密码。  

 

    在Unix中,由mysql_install_db设置授权表。

 

    如果系统为安装好的CentOS5,则只需要运行 # mysql_install_db --user=mysql --datadir=/var/lib/mysql_ndbd/

 

    一定要确保由mysql登录账户拥有数据库目录和文件,以便在以后运行服务器具有读、写访问权限。

 

    当然,也可以以 mysqld_safe --user=mysql --skip-grant-tables &   跳过授权表来登录,登录进去重新赋权限,同时更新权限表:flush privileges
 

bitsCN.com
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