分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

Docker安装Jira破解版

采用Docker来实现破解版的Jira安装。 步骤 1、下载镜像 一定要安装jira-software(不是jira),否则没有agile [root@iZo7e61fz42ik0Z ~]# docker pull dchevell/jira-software:7.13.0 2、运行容器 [root@iZo7e61fz42ik0Z data]# docker run -d -it -p 8080:8080 --privileged -m 4096M -v /data/jira-data:/var/atlassian/application-data/jira -v /etc/localtime:/etc/localtime --name jira dchevell/jira-software:7.13.0 3、拷贝文件到容器内 下载3个文件 下载3个文件 [root@iZo7e61fz42ik0Z ...

DevOps, Docker, Manager 暂无评论 阅读(374)

Docker布署AWVS

Acunetix Web Vulnerability Scanner(AWVS)经典商业漏扫工具,最近更新了 13 的版本,本文分享的 AWVS 的破解版是网上大佬们分享出来的国光我只是一个小小搬运工,折腾 AWVS 的原因是正好最近准备用 Django 去调用一些 AWVS 的接口,所以就来写一篇系统的文章记录折腾安装的过程。 下载地址 Windows 因为蓝奏云不支持特殊的分卷后缀,所以下载下来手动重命名,解压001后缀的文件即可。 Windows acunetix_13.0.200205121.zip.001.zip 手动重命名为 Windows acunetix_13.0.200205121.zip.001 Windows acunetix_1...

DevOps, Docker, 测试 暂无评论 阅读(215)

CentOS下使用tcpdump网络抓包用

CentOS下使用tcpdump网络抓包用 1. 安装tcpdump工具 rpm -ql tcpdump          #查看tcpdump是否安装   本机是安装的,yum安装: yum install tcpdump   2.  tcpdump抓包 根据协议和端口抓包 tcpdump -i eth0 udp port 694 -n              #-i指定网卡信息  udp协议 tcpdump -i eth0 tcp  port 8088 -n               #port 8088端口   tcp协议 tcpdump -i eth0 port 8088 -c 3 -t -w /tmp/tcpdump.pcap   #-c指定抓包数量   -t不显示时间戳  -w指定存放路径 &...

DevOps 暂无评论 阅读(164)

openwrt hosts

update openwrt hosts   vi /etc/hosts   /etc/init.d/dnsmasq restart

DevOps, 安全 暂无评论 阅读(125)

PVE修改源source.list

vi /etc/apt/sources.list.d/pve-enterprise.list deb http://download.proxmox.wiki/debian/pve buster pve-no-subscription   vi /etc/apt/sources.list deb http://mirrors.163.com/debian buster main contrib deb http://mirrors.163.com/debian buster-updates main contrib # security updates deb http://mirrors.163.com/debian-security/ buster/updates main contrib 最后执行 apt update

DevOps 暂无评论 阅读(200)

git合并两个有冲突的分支

git合并两个有冲突的分支 背景: 现在有两个分支 master,develop 一面有一个共同的文件 index.js,现在两个分支一样。 当A修改了index.js,commit&push到master后, B修改index.js,  commit&push到develop, 现在,当B想merge code to master就会报conflict冲突。   解决办法: 1.B switch branch to master TIPS1: 选择master分支 TIPS2:选中merge 2.切换之后,会提示是否合并代码,选择merge,并输入comment 3.这时,master的代码就拉了一下来,并且有冲突。 4.找到index.js,修改文件,合并A和B...

DevOps, LINUX 暂无评论 阅读(281)

阿里云镜像库

阿里云镜像库点我进入: https://opsx.alibaba.com/mirror

DevOps 暂无评论 阅读(239)

Ocelot+Consul+.netcore高可用&动态伸缩

Ocelot 网关: publicclassStartup { publicStartup(IConfiguration configuration) { Configuration= configuration; } publicIConfigurationConfiguration{ get;} // This method gets called by the runtime. Use this method to add services to the container. publicvoidConfigureServices(IServiceCollection services) {             var config =newConfigurationBuilder() .AddJsonFile("Ocelot.json",false,true) .Build();             services.AddOcelot(config).AddConsul();             servic...

.NET, DevOps, 微服务 暂无评论 阅读(344)

基于docker 如何部署surging分布式微服务引擎

.NET, DevOps, 微服务, 系统架构 暂无评论 阅读(331)

error: RPC failed; HTTP 413 curl 22 The requested URL returned error

error: RPC failed; HTTP 413 curl 22 The requested URL returned error   方法1: 第一个解决办法是: 在git bash中执行:git config http.postBuffer 524288000 成功后,再次提交,ok。 有些博客,说这个办法不灵,我试可以。   方法2: 错误场景: 使用Git提交文件报错,找了许多方法,都是无济于事,几经周转才得以解决。   错误如下: git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree push -v –tags origin refs/heads/develop:refs/heads/devel...

DevOps 暂无评论 阅读(369)