• 1.django restframework 项目部署到ubuntu18.04上(同步数据库)


    1.mysql5.7安装

    sudo -i #切换为root用户
    #安装mysql5.7
    apt-get install mysql-server
    y
    apt-get install mysql-client
    apt-get install libmysqlclient-dev
    y
    #设置myql密码
    mysql
    show databases;
    use mysql;
    update user set authentication_string=PASSWORD("与本地数据库密码一致") where user='root';
    update user set plugin="mysql_native_password";
    flush privileges;
    quit;
    /etc/init.d/mysql restart
    #查看密码是否设置成功
    mysql -u root -p
    #输入设置的密码+回车
    quit;

     2.将本地数据库传输到云服务器

    #修改服务器数据库配置文件,使之允许远程连接
    vim /etc/mysql/mysql.conf.d/mysqld.cnf
    # 英文输入环境下,敲 i 键,进入插入模式
    #上下左右键移动光标,注释掉 bind-address = 127.0.0.1
    #英文输入环境下,敲Esc键,输入:wq 保存退出
    
    mysql -u root -p
    #输入密码(不显示),登录mysql
    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
    flush privileges;
    quit;
    #重启mysql服务
    /etc/init.d/mysql restart

    选择本地要传输到服务器的数据库,然后选择数据库连接,点击开始,确定,然后等待传输完成,关闭。

    #查看是否上传成功
    mysql -u root -p
    #输入密码
    show databases;
    #查看本地数据库是否上传上来了
    quit;
    #修改服务器数据库配置文件,使之不允许远程连接
    
    vim /etc/mysql/mysql.conf.d/mysqld.cnf
    # 英文输入环境下,敲 i 键,进入插入模式
    #上下左右键移动光标,将注释掉的 bind-address = 127.0.0.1 恢复
    #英文输入环境下,敲Esc键,输入:wq 保存退出
    
    #重启mysql服务
    /etc/init.d/mysql restart
  • 相关阅读:
    linux ps查看进程命令
    linux distribution是什么?
    samba配置smb.conf
    linux samba.tar.gz安装和配置
    linux后台执行命令&
    linux crontab任务调度的使用
    linux ubuntu卸载软件
    vue-router
    vue computed
    vue 监听的使用
  • 原文地址:https://www.cnblogs.com/xuepangzi/p/11108420.html
Copyright © 2020-2023  润新知