防火墙设置
前言记录一下Linux下的firewall-cmd命令的用法,以后慢慢更新,慢慢完善。
正文查看防火墙状态#查看防火墙状态systemctl status firewalld#开启防火墙systemctl start firewalld#开机启动systemctl enable firewalld
端口访问设置查看已开放的端口、IP规则
#查询打开的端口firewall-cmd --zone=public --list-ports
开放新端口,默认情况下所有端口都是关闭状态
#开放端口9001/tcp (tcp、udp等)firewall-cmd --zone=public --add-port=9001/tcp --add-port=9001/udp --permanent#批量开放9002~9005的tcp端口firewall-cmd --zone=public --add-port=9002-9005/tcp --permanent#重新载入防火墙设置,使设置生效firewall-cmd --reload
关闭已开放的端口
#关闭端口9001/tcp (tcp、udp等)fir ...
List对象排序
前言记一下Java中List对象的三种排序方式,万一用得着呢(已经用着了)。
方案一简单对象排序,如Integer对象,String对象等,代码如下:
// 调用Collections.sort 方法public class SortTest { public static void main(String[] args) { List<Integer> integerList = new ArrayList<>(); integerList.add(9); integerList.add(4); integerList.add(6); integerList.add(1); integerList.add(8); integerList.add(7); integerList.add(5); // 默认升序 Collections.sort(integerList); for (I ...
css实用代码合集
前言记录一些在工作和写博客中遇到的一些CSS代码场景,可能这些用的不多,以后也很敢再遇到新的逻辑代码,但总要养成遇到就要记录的习惯。
img图片保持比例且居中显示 外部容器设置 固定宽度高度,设置line-height与height相等(垂直居中),设置text-align是center(水平居中),内部img设置style(max-height:100%;max-width:100%;vertical-align: middle; margin: 0 auto;)。
<div style="width: 398px;height: 298px;line-height: 298px;text-align: center;border:1px solid #E09972"> <img src="test.jpg" style="max-width:100%;max-height:100%;vertical-align: middle; margin: 0 auto;" alt=""&g ...
Sql语句
前言工作中遇到的SQL查询方法、语法、和优化记录。
SQL 方法和关键字GROUP_COUNT\WM_COUNT# mysql group_concat# separator 用来替换拼接字段, eg: 水果-素菜select group_concat(c.category_name separator '-') category_name, cs.store_idfrom dt_category_store as cs inner join dt_category as c on cs.category_id = c.category_id and cs.category_type = 6group by cs.store_id
# dm wm_concat 方式select wm_concat(c.category_name) category_name, cs.store_idfrom dt_category_store as cs inner join dt_category as c on cs.category_id = c.category_ ...
Mybatis下Mapper文件例子
前言记一下Mybatis的常用写法,其中也有一些mybatis-plus的写法文档。
choose 用法<choose> <when test="reqVo.inspectionType == 3"> SQL1... </when> <when test="reqVo.inspectionType == 4"> SQL2... </when> <otherwise> SQL3... </otherwise></choose>
foreach 用法<foreach collection="categoryIds" open="(" separator="," close=")" item="categoryId"> #{categoryId} ...
域名自动化更新证书
前言目前免费证书的使用期限是90天,证书更新也从以前的一年一换变成了现在的三个月一换,本人自己域名加公司域名有近四十个之多,每次证书更新都是一个很费事又费时的工作,不得不进行自动化处理。
安装安装很简单,一个命令:
curl https://get.acme.sh | sh -s email=my@example.com
创建 一个 shell 的 alias,例如 .bashrc,方便你的使用: alias acme.sh=~/.acme.sh/acme.sh;
自动为你创建 cronjob,,每天 0:00 点自动检测所有的证书, 如果快过期了,需要更新,则会自动更新证书。
注:如果没有安装crontab,可在安装crontab之后加入以下任务:
0 0 * * * "~/.acme.sh"/acme.sh --cron --home "~/.acme.sh" > /dev/null
更改服务地址acme.sh脚本默认ca服务器是zerossl,经常出错,会导致获取证书的时候一直出现:Pendi ng,The CA is proces ...
使用hexo和git实现多地更新和配置博客源文件
前言使用hexo写博客的一个问题就是源文件都是在本地的,如果换了电脑需要更新博客时就会比较麻烦。目前,觉得比较靠谱的办法就是用github来管理了。
利用git分支实现
hexo生成的静态博客文件默认放在master分支上。
hexo的源文件(部署环境文件)可以都放在hexo分支上(可以新创建一个hexo分支),换新电脑时,直接git clone hexo分支
hexo搭建博客原理
hexo帮助把博客发送到github,同时把md文件转换成网页文件。
hexo目录下的文件和github上的文件是不同的,public文件夹的文件通过hexo d 上传到github去了,其他的文件则留在本地目录下。
搭建hexo服务器端电脑设置准备工作
首先确保自己已经使用hexo在github搭建好了自己的个人博客。
对username.github.io仓库新建hexo分支,并克隆
在Github的username.github.io仓库上新建一个xxx分支,并切换到该分支,并在该仓库->Settings->Branches->Default branch中将默认分支设为xx ...
hexo命令
前言第一次用hexo写博客,之前有自己用自己的服务器写过博客,但后来服务器出问题,不堪回首,现在要用这个来重写博客了!!!
总要记录一点什么吧hexo的一些常用命令模版
hexo s # 启动服务hexo d -g # 编译项目并推送到github下mater分支hexo new post 测试 --path hexo/test # 创建title为测试文件名为test.md位置在hexo文件夹下的文章