本文原地址: http://www.feitianzhi.com/boke/index.php/archives/13/

转载请注明出处,有疑问或错误请发邮件到[email protected] 或加QQ群:869598376


概述

小雉系统中已集成mariadb数据库,但未包含数据库文件,本文是在完整的centos7.3上装好mariadb数据库,把初始化后的数据库文件打包传到小雉系统中.

步骤

  1. 使用ssh或telnet工具远程登录小雉系统(用户名:root,密码:12345),如下图

ssh或telnet工具远程登录小雉系统

  1. 用ftp登录系统(用户名:admin,密码:12345)上传数据库文件(可下载我提供的https://download.csdn.net/download/zhangrui_fslib_org/11317633,没有密码)到ftp根目录,如下图

上传数据库文件

  1. 解压数据库文件,并启动mariadb数据库(系统每次开机时会自动启动数据库)

    cd /fs/project/data/
    ls
    gzip -cd mysql.cpio.gz |cpio -idvm
    ls
    systemctl restart mariadb
    systemctl status mariadb

解压数据库文件,并启动mariadb数据库

  1. 修改mariadb数据密码,支持远程登录,如下图

    mysql;
    user mysql;
    select user,host,password from user;
    update user set host='%',password=password('12345') where user='root' and host='localhost';
    select user,host,password from user;
    FLUSH PRIVILEGES;

修改mariadb数据密码,支持远程登录
猜您可能喜欢
使用小雉系统搭建可调试的php生产环境:
http://www.feitianzhi.com/boke/index.php/archives/12/

标签: none

评论已关闭