vim禁止鼠标

How to disable visual mode on mouse select for vim

echo "set mouse-=a" >> ~/.vimrc

安装mysql

How To Install the Latest MySQL on Debian 10

优化mysql内存占用

MySql configuration file my.cnf. ideal setup for 256 and 512Mb on Ubuntu

[mysqld]
performance_schema = OFF

修改ip绑定
bind-address = 0.0.0.0

docker run -d --name lg --restart always -e HTTP_PORT=48000 --network host wikihostinc/looking-glass-server

创建应用数据库

CREATE DATABASE matomo_db_name_here;
# mysql 5.7 或8
CREATE USER 'matomo'@'localhost' IDENTIFIED WITH mysql_native_password BY 'my-strong-password-here';
# mysql 5.5 5.6
CREATE USER 'matomo'@'localhost' IDENTIFIED BY 'my-strong-password-here';

grant all privileges ON matomo_db_name_here.* TO 'matomo'@'localhost';
flush privileges;

增加swap分区

Swap分区的拓展和缩小

安装mongodb

Install MongoDB Community Edition on Debian

修改ip绑定
bind_ip = 0.0.0.0

apt install python3-pip

pip3 install gunicorn flask flask_minio flask_cors flask_pymongo flask_wtf flask_login pymysql dbutils

ps -ef | grep gunicorn | grep -v auto | cut -c 9-16 | xargs kill -s 9
nohup gunicorn -w 4 -b 0.0.0.0:8000 app:app >/dev/null 2>&1 &