VPN内网相关信息快速配置模板

连接信息 地址home.xxcheng.cn 工具OpenVPN 配置文件xxx.ovpn client dev-type tun dev tunx proto udp tun-mtu 1400 cipher BF-CBC comp-lzo remote home.xxcheng.cn 1194 resolv-retry infinite nobind persist-key pe

- 阅读全文 -

uniapp开发避坑

Vue3版本获取dom <script setup> import { getCurrentInstance,onMounted } from 'vue' onMounted(()=>{ const instance = getCurrentInstance(); const query = uni.createSelectorQuery().in(inst

- 阅读全文 -

Mysql开发处理

快速解决 关闭表名大小写 使用root登录,修改/etc/my.cnf 文件,在[mysqld]节点下,加入一行lower_case_table_names=1。 #docker环境下没有vim编辑器,先安装编辑器 apt-get update apt-get install vim vim /etc/my.cnf 8版本的数据库只能在初始化的时候修改 lower_case_table_

- 阅读全文 -

docker相关模板

安装 docker 一键安装命令 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 安装 docker compose 参考链接:Install the Compose standalone curl -SL https://github.com/docker/compose/releases/download/v

- 阅读全文 -