CentOS7查看开放端口命令及开放端口号 查看已开放的端口 firewall-cmd --list-ports 开放端口(开放后需要要重启防火墙才生效) firewall-cmd --zone=public --add-port=3338/tcp --permanent 重启防火墙 firewal ...
分类:
其他好文 时间:
2021-07-16 17:42:16
阅读次数:
0
json={ "ip"=> "127.0.0.1, "ports"=> '80,135', "data"=>[{"port":22,"item":["22","open","tcp","","ssh"]}] } puts "str:#{ str.to_json}" write_log("nmapre ...
分类:
其他好文 时间:
2021-07-12 18:01:18
阅读次数:
0
识别银行卡云函数card2/index.js: const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) = ...
分类:
微信 时间:
2021-06-28 20:21:21
阅读次数:
0
引入依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.33</version> </dependency> val env = StreamExecutionEn ...
分类:
Web程序 时间:
2021-06-25 16:38:01
阅读次数:
0
服务安装与启动 官方文档:https://docs.jumpserver.org/zh/master/install/setup_by_fast/ 官方给出的一键安装脚本(注:要求系统内存≥4G): curl -sSL https://github.com/jumpserver/jumpserver ...
分类:
其他好文 时间:
2021-06-16 17:59:44
阅读次数:
0
There are several commands to determine the WWN of a Fibre Channel (FC) HBA and their status (online/offline). The post discusses few of the most comm ...
分类:
系统相关 时间:
2021-06-11 18:48:26
阅读次数:
0
kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:
其他好文 时间:
2021-06-10 17:55:40
阅读次数:
0
新建vue.config.js module.exports = { css: { loaderOptions: { sass: { // 全局引入变量和 mixin additionalData: ` @import "@/assets/scss/variable.scss"; @import " ...
分类:
Web程序 时间:
2021-06-06 19:40:33
阅读次数:
0
ES模块的导入 通过exports {num,function} 这个是导出变量或者是函数 ES导入模块 通过import {num,function} from 'aaa.js' 这个是模块的导入 ##这导入导出很固定,导入导出的名字必须一样 还有一种是通过exports default 这种是不 ...
分类:
其他好文 时间:
2021-06-04 19:29:21
阅读次数:
0
方法一: 在 package.json 中添加 --open 方法二: 在 vue.config.js 中,devServer 添加加 open:true ,没有vue.config.js,自己创建一个 module.exports = { devServer: { open: true } } ...
分类:
其他好文 时间:
2021-06-03 18:18:31
阅读次数:
0