会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
。思索
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
25
26
27
28
29
30
31
32
33
···
61
下一页
2020年7月27日
MySQL——查看数据库大小
摘要: 前言 为了计算一些后面的扩展,所以看下当前业务数据的存储 步骤 所有的信息都存放在information_schema这个库里面,我们可以通过查询这个库中的数据来找到我们需要的数据。 查看所有库的数据和索引大小 select table_schema, concat(truncate(sum(dat
阅读全文
posted @ 2020-07-27 15:58 。思索
阅读(305)
评论(0)
推荐(1)
2020年7月26日
Git——常用命令总结
摘要: 前言 记录日常中常用的Git命令 安装 Git官网 | Git官网 Git下载 | Git下载 配置 配置user.name和user.email git config --global user.name 'your_name' git cofig --global user.email 'you
阅读全文
posted @ 2020-07-26 10:35 。思索
阅读(253)
评论(0)
推荐(0)
2020年7月13日
SonarQube——如何搭建SonarQube完整版
摘要: 前言 选择7.6是因为,比他高的版本已经移除了mysql,最新版可取官网去下载。 安装包 | 软件包 JDK | 1.8 Maven | 3.6.0 MySQL | 5.7 步骤 SonarQube安装与配置 1. 解压我们下载好的安装包,然后进入到D:\Program Files\sonarqub
阅读全文
posted @ 2020-07-13 16:22 。思索
阅读(6288)
评论(0)
推荐(1)
Linux——服务器时间不同步
摘要: 前言 服务器时间和客户端时间不一致,导致无法登陆 步骤 安装NTP yum install -y ntpdate 时间同步 ntpdate cn.pool.ntp.org 写入定时器 crontab -e #每隔一小时就同步一次 * */1 * * * /sbin/ntpdate cn.pool.n
阅读全文
posted @ 2020-07-13 09:15 。思索
阅读(684)
评论(0)
推荐(0)
2020年7月11日
Nginx——根据ur中的参数进行转发
摘要: 前言 业务需求 步骤 location / { if ($request_uri ~* ^/\?id\=(.*)\&type\=(\d)$) { return 307 https://shtlc.xxxx.cn/micro_code/customize?id=$arg_id; } try_files
阅读全文
posted @ 2020-07-11 06:33 。思索
阅读(335)
评论(0)
推荐(0)
2020年7月6日
Fortify——导出报告
摘要: 前言 版本: 20.1.1.0007 步骤
阅读全文
posted @ 2020-07-06 17:55 。思索
阅读(3398)
评论(1)
推荐(0)
Fortify——安装并修改报告语言为中文
摘要: 前言 !> 如果你想导出的报告是中文的话,可以直接使用中文规则版本 中文规则版本: https://share.weiyun.com/eBnyP8k4 中文规则包: https://share.weiyun.com/j7Aavm2Q 源文件地址:https://www.shungg.cn/301.h
阅读全文
posted @ 2020-07-06 17:50 。思索
阅读(9917)
评论(34)
推荐(1)
2020年7月1日
Docker——ls -l 快捷为 ll
摘要: 前言 习惯了ll,这边就转换下 步骤 vi ~/.bashrc alias ll='ls $LS_OPTIONS -l' source ~/.bashrc
阅读全文
posted @ 2020-07-01 11:02 。思索
阅读(475)
评论(0)
推荐(0)
Docker——安装vim
摘要: 前言 配置NGINX,发现没有vim命令 步骤 进入容器后,先升级再安装就可以了 docker exec -it nginx /bin/bash apt-get update && agt-get install vim -y
阅读全文
posted @ 2020-07-01 10:29 。思索
阅读(274)
评论(0)
推荐(0)
2020年6月30日
Ueditor——请求后台配置项http错误,上传功能将不能正常使用
摘要: 前言 昨天迁移网站,今天突然出了Ueditor请求后台配置项http错误,上传功能将不能正常使用 步骤 看了下网络请求发现是config.json文件没有读取到,重新覆盖了该文件后恢复,不过不排除网络问题造成的 cp -rvf public/static/js/ue/config.json /dat
阅读全文
posted @ 2020-06-30 14:04 。思索
阅读(7921)
评论(0)
推荐(0)
上一页
1
···
25
26
27
28
29
30
31
32
33
···
61
下一页
公告