首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
Linux:Centos7基础优化
环境信息 可安装系统 Cnetos 7.9 Rocky 8.7
2023-12-15
23
0
0
Linux
服务部署 Pm2 安装
安装部署 安装NODEJS: centos 安装方式 curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash - sudo yum install nodejs -y debian 安装方式 curl -sL https://deb.no
2023-12-15
14
0
0
服务部署
MySQL 通过字段查找所在数据表
通过 information_schema 来查找 指定库查找 SELECT table_name FROM information_schema.columns WHERE table_schema = '库名' AND column_name = '字段名'; 整个实例查找 SELECT ta
2023-12-15
11
0
0
MySQL
服务部署 跨互联网访问NFS
此选项要求请求源自小于 IPPORT_RESERVED (1024) 的 Internet 端口。此选项默认开启。要关闭它,请指定 insecure。 vim /etc/exports/var/share *(insecure,ro,sync) systemctl retart nfs
2023-12-15
73
0
0
服务部署
Python: pyecharts 安装碰到一些问题
问题一 No module named 'pyecharts_snapshot,因为pyecharts_snapshot也是第三方库。 解决方法: pip install pyecharts_snapshot 问题二 使用pyechart-snapshot获取图表的图片格式报错Exception:
2023-12-15
38
0
0
服务部署
Nginx 结合 CDN 过滤用户 IP 访问
http标签添加 #获取用户真实IP,并赋值给变量$clientRealIP map $http_x_forwarded_for $clientRealIp { "" $remote_addr; ~^(?P<firstAddr>[0-9\.]+),?.*$
2023-12-15
46
0
0
Nginx
MySQL: 统计索引碎片
统计排名前十个索引碎片 select table_schema AS db, table_name, data_free, engine from information_schema.tables where table_schema not in ('informatio
2023-12-15
24
0
0
MySQL
Zstack单机企业版激活
zstack-ctl install_license -f /var/lib/zstack/license/zstack_trial_license
2023-12-15
49
0
0
Linux
Linux命令-wget
其它示例 对于动态URL 可以使用 --content-disposition 下载 wget --content-disposition url 参考网址 [使用 wget 下载,怎样让他默认保存成远程的文件名?](https://segmentfault.com/q/10100000
2023-12-15
13
0
0
KeyboardEvent对象的keyCode属性已被弃用
原始方案 <Button onKeyDown={(event) => { if (event.keyCode === 13) { // 阻止默认的回车事件执行 event.preventDefault(); } }} > 我是一个按
2023-12-15
35
0
0
1
...
9
10
11
12
13