linux安装mysql二进制文件怎么打开_linux二进制文件安装mysql

第一步:创建用户和用户组

groupadd mysql

useradd -g mysql mysql

第二步:解压二进制文件

tar zxvf xxxx.tar.gz

将解压后的文件mv到/usr/local下并改名为mysql

第三步:创建mysql许可表

网上很多方法都是:/usr/local/mysql/scripts/mysql_install_db --user=mysql

但是很有可能报错,找不到bin目录中的my_print_defaults

错误信息:

FATAL ERROR: Could not find ./bin/my_print_defaults

If you are using a binary release, you must run this script from

within the directory the archive extracted into. If you compiled

MySQL yourself you must run 'make install' first.

如果遇到此错误只需要多加两个参数指明路径就ok,如下:

scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data (这点非常重要)

第四步:设置权限

/usr/local/mysql目录下:

chown -R root /usr/local/mysql (所属root用户)

chown -R mysql /usr/local/mysql(所属mysql用户)

chown -R mysql /usr/local/mysql/data(数据目录所属mysql用户)

第五步:启动服务器并测试

/usr/local/mysql/bin/mysqld_safe --user=mysql &

/usr/local/mysql/bin/mysql -u mysql

如果出现:

Welcome to the MySQL monitor. Commands end with ; or g.

Your MySQL connection id is 220

Server version: 5.0.77 MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buff

你可能感兴趣的:(linux安装mysql二进制文件怎么打开_linux二进制文件安装mysql)