Differences

This shows you the differences between two versions of the page.

Link to this comparison view

vendors:nextcloud [2019/02/10 18:51] – created gerardorourkevendors:nextcloud [2019/06/10 16:35] (current) gerardorourke
Line 30: Line 30:
 opcache.revalidate_freq=1 opcache.revalidate_freq=1
 </code> </code>
 +
 +
 +<code>
 +/usr/local/mariadb10/bin# ./mysql -u root -p
 +
 +MariaDB [(none)]> show databases;
 ++--------------------+
 +| Database           |
 ++--------------------+
 +| NextCloud          |
 +| information_schema |
 +| mysql              |
 +| performance_schema |
 ++--------------------+
 +
 +MariaDB [(none)]> use NextCloud;
 +Database changed
 +
 +MariaDB [NextCloud]> select * from oc_bruteforce_attempts;
 +
 +...
 +
 +MariaDB [NextCloud]>  DELETE FROM oc_bruteforce_attempts WHERE ip = 'aaa.bbb.ccc.ddd';
 +
 +OR 
 +
 +MariaDB [NextCloud]>  DELETE FROM oc_bruteforce_attempts WHERE action = 'login'; 
 +
 +https://dev.mysql.com/doc/mysql-getting-started/en/#mysql-getting-started-basic-ops
 +</code>
 +
 +
  • vendors/nextcloud.1549824663.txt.gz
  • Last modified: 2019/02/10 18:51
  • by gerardorourke