当前位置:   article > 正文

termux安装mariadb+wordpress_termux wordpress

termux wordpress

安装wordpress需要用到mysql,termux有官方提供mariadb,

那就可以用这个mariadb替代mysql做为wordpress的数据库

第一部分:数据库准备

1. 安装mariadb: pkg install mariadb

安装完之后默认会有两个密码为空的账号:root 和 u0_a205(当前用户)

2. 打开链接数据库:mysql -u u0_a205 -p

  1. ~ $ whoami
  2. u0_a205
  3. ~ $ mysql -u u0_a205 -p
  4. Enter password:
  5. Welcome to the MariaDB monitor. Commands end with ; or \g.
  6. Your MariaDB connection id is 5
  7. Server version: 10.6.4-MariaDB MariaDB Server
  8. Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
  9. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  10. MariaDB [(none)]>

3 . 创建wordpress数据:create database wordpress;show databases;

  1. MariaDB [(none)]> create database wordpress;show databases;
  2. Query OK, 1 row affected (0.001 sec)
  3. +--------------------+
  4. | Database |
  5. +--------------------+
  6. | information_schema |
  7. | mysql |
  8. | performance_schema |
  9. | sys |
  10. | test |
  11. | wordpress |
  12. +--------------------+
  13. 6 rows in set (0.002 sec)

4.  创建一个root1 密码为root的用户。(用户名和密码都随意主要是用户的权限,默认的两个用户只能localhost链接,不够用。)

GRANT ALL PRIVILEGES ON *.* TO 'root1'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;

  1. MariaDB [(none)]> use mysql;
  2. Reading table information for completion of table and column names
  3. You can turn off this feature to get a quicker startup with -A
  4. MariaDB [mysql]> SELECT user,host,Password FROM mysql.user;
  5. +-------------+-----------+----------+
  6. | User | Host | Password |
  7. +-------------+-----------+----------+
  8. | mariadb.sys | localhost | |
  9. | root | localhost | invalid |
  10. | u0_a205 | localhost | invalid |
  11. | | localhost | |
  12. +-------------+-----------+----------+
  13. 4 rows in set (0.003 sec)
  14. MariaDB [mysql]> GRANT ALL PRIVILEGES ON *.* TO 'root1'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
  15. Query OK, 0 rows affected (0.004 sec)
  16. MariaDB [mysql]> SELECT user,host,Password FROM mysql.user;
  17. +-------------+-----------+-------------------------------------------+
  18. | User | Host | Password |
  19. +-------------+-----------+-------------------------------------------+
  20. | mariadb.sys | localhost | |
  21. | root | localhost | invalid |
  22. | u0_a205 | localhost | invalid |
  23. | | localhost | |
  24. | root1 | % | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  25. +-------------+-----------+-------------------------------------------+
  26. 5 rows in set (0.003 sec)
  27. MariaDB [mysql]>

到这里 数据库部分准备完成,

第二部分:wordpress 安装

1.  下载单前最新wordpress5.9版本代码,并且解压到nginx相关目录。

  1. wget https://cn.wordpress.org/wordpress-5.9-zh_CN.zip
  2. unzip wordpress-5.9-zh_CN.zip -d $PREFIX/share/nginx/html && cd $PREFIX/share/nginx/html/wordpress && chmod -Rf 777 ./*

   这里可以新起一个终端通过ssh链接到termux

2 . 打开链接进入安装页面 :http://192.168.9.101:8080/wordpress/

 使用之前新建了的数据库,和用户名密码,主机这里用localhost不好使,换成对应ip

300edcd749312f9576e97abc0872c1a9.png6511a12887a05f5f62fc3023484249ad.png如果要用弱密码,就会多一个确认项。

7335dc0d2a66f2f77a32e2d0d93400e9.png安装成功登录

17d969dd7377e59fa12cf8c719e4bfb5.png

第三部分:其他

1. 一些命令相关:

启动数据库:mysqld_safe -u root &

  1. mysql -u u0_a205 -p # 密码为空的时候提示输密码时直接回车
  2. show databases; # 查看数据库
  3. use mysql; # 使用mysql库
  4. SELECT user,host,Password FROM mysql.user; # 查看用户部分信息
  5. GRANT ALL PRIVILEGES ON *.* TO 'root1'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; #创建用户名root1密码为root,%不限制链接,有全部权限的用户

2. Adminer 数据库管理

  2.1 下载adminer-4.8.1.php源码并且移动到nginx对应目录

  1. wget https://github.com/vrana/adminer/releases/download/v4.8.1/adminer-4.8.1.php
  2. mv adminer-4.8.1.php $PREFIX/share/nginx/html/

  2.2 打开数据库管理软件:http://192.168.9.101:8080/adminer-4.8.1.php

能正常图形话查看和管理数据库了。

3.termux安装kodbox-方便简单图形界面操作_xnllc的专栏-CSDN博客

   使用之前安装好的kodbox直接管理相关代码。最为方便快捷。

   直接去官网下载 wordpress,phpMyAdmin,adminer等代码直接图形化上传到对应nginx目录。

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

闽ICP备14008679号