美文网首页
Centos6.8上安装mariadb10.1.26

Centos6.8上安装mariadb10.1.26

作者: Alex_Honnold | 来源:发表于2017-09-01 15:44 被阅读0次

    mariadb包下载:[下载地址]

    安装步骤:
    1.新建用户

    [root@localhost scripts]# groupadd mysql
    [root@localhost scripts]# useradd mysql -g mysql
    [root@localhost scripts]# passwd mysql
    更改用户 mysql 的密码 。
    新的 密码:
    重新输入新的 密码:
    passwd: 所有的身份验证令牌已经成功更新。
    

    2.上传解压
    上传到/app下,因为我的安装目录是/app

    [root@localhost app]# tar -xvf mariadb-10.1.26-linux-x86_64.tar.gz
    [root@localhost app]# mv mariadb-10.1.26-linux-x86_64 mariadb-10.1.26
    

    3.初始化数据库软件

    [root@localhost app]# cd mariadb-10.1.26
    [root@localhost mariadb-10.1.26]# cd scripts/
    [root@localhost scripts]# ./mysql_install_db --user=mysql --basedir=/app/mariadb-10.1.26 --datadir=/app/mariadb-10.1.26/data
    

    4.拷贝配置文件

    [root@localhost scripts]# cd ../support-files/
    [root@localhost support-files]# cp my-large.cnf /etc/my.cnf
    cp:是否覆盖"/etc/my.cnf"? y
    [root@localhost support-files]# cp mysql.server /etc/init.d/mysql
    

    5.启动服务

    [root@localhost support-files]# cd /app
    [root@localhost app]# chown mysql:mysql -R mariadb-10.1.26
    

    vi /etc/init.d/mysql
    补齐如下两行内容:

    basedir=
    datadir=
    改至:
    basedir=/app/mariadb-10.1.26
    datadir=/app/mariadb-10.1.26/data
    

    起服务

    [root@localhost app]# service mysql start
    Starting MySQL.170721 23:39:19 mysqld_safe Logging to '/app/mariadb-10.1.26/data/localhost.centos1.err'.
    170721 23:39:19 mysqld_safe Starting mysqld daemon with databases from /app/mariadb-10.1.26/data
    [确定]
    

    6.配置root账户信息

    [root@localhost app]# cd mariadb-10.1.26/bin
    [root@localhost bin]# vi mysql_secure_installation
    

    找到/usr/local/bin字段,只有两处,连在一起的
    两行内容如下:

      print_defaults="/usr/local/mysql/bin/my_print_defaults"
      mysql_command="/usr/local/mysql/bin/mysql"
    改至:
      print_defaults="/app/mariadb-10.1.26/bin/my_print_defaults"
      mysql_command="/app/mariadb-10.1.26/bin/mysql"
    

    执行如下命令:

    [root@localhost bin]# ./mysql_secure_installation 
    

    除了输密码时输入,其他都回车即可。

    vi /etc/profile,加入这两行

    export MYSQL_HOME="/app/mariadb-10.1.26"
    export PATH="$PATH:$MYSQL_HOME/bin"
    

    添加后重载下变量: . /etc/profile

    测试root账号是否可用:

    [root@localhost bin]# mysql -uroot -p
    Enter password: 
    Welcome to the MariaDB monitor.  Commands end with ; or \g.
    Your MariaDB connection id is 12
    Server version: 10.1.26-MariaDB MariaDB Server
    Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    MariaDB [(none)]> 
    

    7.用普通用户启动

    [root@localhost bin]# service mysql stop
    Shutting down MySQL...[确定]
    [root@localhost bin]# su - mysql
    [mysql@localhost ~]$ service mysql start
    Starting MySQL.170721 23:54:34 mysqld_safe Logging to '/app/mariadb-10.1.26/data/localhost.centos1.err'.
    170721 23:54:34 mysqld_safe Starting mysqld daemon with 
    databases from /app/mariadb-10.1.26/data
    [确定]
    

    查看进程

    [mysql@localhost ~]$ ps -ef|grep mysql
    root      44551  16323  0 23:54 pts/4    00:00:00 su - mysql
    mysql     44587      1  0 23:54 pts/4    00:00:00 /bin/sh /app/mariadb-10.1.26/bin/mysqld_safe --datadir=/app/mariadb-10.1.26/data --pid-file=/app/mariadb-10.1.26/data/localhost.centos1.pid
    mysql     44715  44587  2 23:54 pts/4    00:00:00 /app/mariadb-10.1.26/bin/mysqld --basedir=/app/mariadb-10.1.26 --datadir=/app/mariadb-10.1.26/data --plugin-dir=/app/mariadb-10.1.26/lib/plugin --log-error=/app/mariadb-10.1.26/data/localhost.centos1.err --pid-file=/app/mariadb-10.1.26/data/localhost.centos1.pid --socket=/tmp/mysql.sock --port=3306
    

    配置galera集群:http://www.jianshu.com/p/52676b0e313f

    相关文章

      网友评论

          本文标题:Centos6.8上安装mariadb10.1.26

          本文链接:https://www.haomeiwen.com/subject/bhofjxtx.html