NextCloud の DB データ操作

Snap コマンドで導入される NextCloud の DB には MySQL が使用されています。
Docker版 NextCloud には SQLite が導入されたので、てっきり SQLite かと思っていました。
Nextcloud を Docker 環境にデプロイする

NextCloud の操作用には、下記コマンド群が用意されています。

# ls -lh /snap/bin/
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.disable-https -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.enable-https -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.export -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.import -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.manual-install -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.mysql-client -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.mysqldump -> /usr/bin/snap
lrwxrwxrwx 1 root root 13 Mar  3 12:37 nextcloud.occ -> /usr/bin/snap

これらのうち、MySQL 接続に使うのは以下のコマンドです。

  • nextcloud.mysql-client

以下、接続例

# nextcloud.mysql-client -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 34
Server version: 5.7.25 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use nextcloud;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select count(*) from oc_bruteforce_attempts;
+----------+
| count(*) |
+----------+
|        0 |
+----------+
1 row in set (0.00 sec)

mysql> quit;