当前位置:   article > 正文

手机安装数据库然后远程访问_远程访问aidlux

远程访问aidlux

大致思路

手机安装AidLux,然后安装数据库,最后远程访问

条件

局域网(没有会比较麻烦,这个是用来远程访问手机的,校园网好像还不太行),手机,电脑

步骤

  1. 应用商城或网页搜索aidlux,(下载)安装
  2. 启动之后,打开Cloud_ip,看看ip是什么,然后选择网址打开,或者ssh(ssh root@192.168.1.17 -p9022)
  3. 安装数据库
    • 注意尽量不要安装mysql,aidlux是debian,需要安装mariadb,mysql会很麻烦,没装成功,会报错
      E: Package 'mysql-server' has no installation candidate
    1. 安装mariadb很简单,一行命令:
      apt install mariadb-server mariadb-client
    2. 启动服务:
      service mysql start
    3. 进入mysql,直接:
      mysql
    4. 设置
      - 查询用户
      select Host,User from user;
      - 使可远程访问 localhost -> %
      update user set Host="%" where User="root";
      - 查看root密码
      select host, user,authentication_string from user;
      - 修改密码
      update mysql.user set authentication_string=password('密码') where user='root';
      - 终端打开目录:/etc/mysql/mariadb.conf.d
      cd /etc/mysql/mariadb.conf.d
      - 修改文件 50-server.cnf
      vim 50-server.cnf
      - 设置可远程访问,修改ip为0.0.0.0
      bind-address            = 0.0.0.0
      - 取消端口的注释
      port                   = 3306
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15
      • 16
    5. 远程登录(idea,连接自己创建的数据库

`

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/267200
推荐阅读
相关标签
  

闽ICP备14008679号