Home >Database >Mysql Tutorial >如何在Unix系统环境下安装MySQL数据库_MySQL

如何在Unix系统环境下安装MySQL数据库_MySQL

WBOY
WBOYOriginal
2016-06-01 14:02:421267browse

unix安装mysql安装

安装时建议你为MySQL管理创建一个用户和组。由该组用户运行mysql服务器并执行管理任务。(也可以以root身份运行服务器,但是不推荐)

第一步创建一个用户来运行服务器。在Solaris和unix下,可以用useradd和groupadd使用工具来完成。取一个名字叫mysql吧。(当然,任何你喜欢的id都可以)所以在做其它事情之前,利用su命令成为root:

$ su - root

$ groupadd mysql

$ useradd -g mysql mysql

选择要安装mysql软件的位置,并将当前目录转换到该目录。一般的,将安装到/usr/local,这是MySQL软件的标准安装位置。现在进去,

$ cd /usr/local

解开软件包:

$ gunzip -c /tmp/mysql -3.23.xx.tar.gz | tar -xf -

因为要安装在Solaris服务器上,所以如果安装的是不同版本的tar,例如GNU的tar,则上面的命令将不会起作用。这是要用下面的命令:

$ gunzip -c /tmp/mysql -3.23.xx.tar.gz | gtar -xf -

现在可以查看一下新目录,看是否存在

$ ls -ld mysql*

total 1

drwxr-xr-x 28 user user 1024 Jul 18 14:29 mysql-3.23.x/

下一步是创建一个符号链接,以便安装能够指向/usr/local/mysql:

$ ln -s mysql-3.23.x mysql

$ ls -ld mysql*

就会出现表示连接成功的行来。按照上帖软件安装好后,还有几项配置任务要完成。运行scripts/mysql_install_db创建MySQL许可表:

$ scripts/mysql_install_db

Preparing db talbe

Preparing host table

Preparing user table

Preparing func table

Preparing tables_priv table

Preparing columns_priv table

Installing all prepared tables

010726 19:40:05 ./bin/mysqld: Shutdown Complete

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