科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道mysql5的安装

mysql5的安装

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

LINUX下mysql5.0.27的安装.

作者:xliu 来源:CSDN 2008年3月30日

关键字: 安装 MySQL 5 数据库 MySQL

  • 评论
  • 分享微博
  • 分享邮件

1以下使用root身份
添加用户组和用户,mysql服务需要以mysql组的用户来执行
shell> groupadd mysql
shell> useradd -g mysql mysql

2释放压缩文件到/usr/local下
把压缩包放到/usr/local下
shell> cd /usr/local
shell> tar zxvf mysql-standard-5.0.27-linux-i686-glibc23.tar.gz
然后得到 一个文件夹mysql-standard-5.0.27-linux-i686-glibc23

3给这个巨长文件名的文件夹作个快捷方式,这样以后不用打那么长字了,呵呵
shell> ln -s mysql-standard-5.0.21-linux-i686-glibc23 mysql

4创建授权表
shell> cd /usr/local/mysql
shell> scripts/mysql_install_db --user=mysql

5更改许可权限
shell> cd /usr/local/mysql
shell> chown -R root  .
shell> chown -R mysql data
shell> chgrp -R mysql .

6启动mysql并且测试
shell> bin/mysqld_safe --user=mysql &
如果没有报错就是启动成功了
shell> bin/mysql
如果出现
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5 to server version: 5.0.21-standard

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

mysql>

说明成功了 
 

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章