<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[阿俊运维技术]]></title> 
<atom:link href="https://www.chensj.net/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[阿俊运维技术]]></description>
<link>https://www.chensj.net/</link>
<language>zh-cn</language>
<generator>emlog</generator>

<item>
    <title>shell编写复制文件进度条</title>
    <link>https://www.chensj.net/?post=133</link>
    <description><![CDATA[!/bin/bash # Created by Chensj on 2022/03/11. export LC_CTYPE=zh_CN.UTF-8
export LANG=zh_CN.UTF-8 sour=dialog --stdout --title Coping... --inputbox 输入原路径 7 40
dest=dialog --stdout --title Coping... --inputbox 输入目标路径 7 40
LINE=ls -l $sour | wc -l declare -i PERCENT=0
(
    for I in $sour;do
&... <a href="https://www.chensj.net/?post=133">阅读全文</a>]]></description>
    <pubDate>Fri, 11 Mar 2022 17:24:26 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=133</guid>
</item>
<item>
    <title>vs code更新到1.53.0之后看板娘无法使用</title>
    <link>https://www.chensj.net/?post=132</link>
    <description><![CDATA[1、找到vscode安装目录。  2、按路径找到workbench.html文件 resources\app\out\vs\code\electron-browser\workbench  3、打开workbench.html文件 文件内容如下：  !--Copyright(C)MicrosoftCorporation.Allrightsreserved.--&g... <a href="https://www.chensj.net/?post=132">阅读全文</a>]]></description>
    <pubDate>Wed, 07 Apr 2021 13:20:44 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=132</guid>
</item>
<item>
    <title>通过Nginx设置HttpOnly Secure SameSite参数解决Cookie跨域丢失</title>
    <link>https://www.chensj.net/?post=131</link>
    <description><![CDATA[在前面的文章中“谷歌浏览器Chrome 80版本默认SameSite导致跨域请求Cookie丢失”，我们知道 Chrome 升级到80版本后，默认限制了跨域携带cookie给后端。我们也提到了可以修改Chrome的设置或在服务端添加SameSite设置来解决，但是普通的Web框架需要升级到最新版本才支持SameSite属性，升级Web框架成本太高，因此本文使用Nginx来解决SameSite问题的办法（需要使用Nginx反向代理站点）。   一、Cookie安全相关属性   HttpOnly ：     在Cookie中设置了“HttpOnly”属性，通过程序(JS脚本、Applet... <a href="https://www.chensj.net/?post=131">阅读全文</a>]]></description>
    <pubDate>Thu, 25 Mar 2021 14:02:46 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=131</guid>
</item>
<item>
    <title>docker 安装及启动错误的排除</title>
    <link>https://www.chensj.net/?post=130</link>
    <description><![CDATA[docker 安装 这边博文写的很ok:https://www.cnblogs.com/Peter2014/p/7704306.html  docker 启动遇到的错误 docker 启动报错，使用 systemctl 或 journalctl 查看错误如下： 其实 systemctl 或 journalctl 并不能很准确的看出问题所在，直接启动dockerd 能获取更为准确的错误信息  问题1：start request repeated too quickly for docker.service, Failed to start Docker Application ... <a href="https://www.chensj.net/?post=130">阅读全文</a>]]></description>
    <pubDate>Mon, 30 Nov 2020 13:26:55 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=130</guid>
</item>
<item>
    <title>pod处于MatchNodeSelector状态故障</title>
    <link>https://www.chensj.net/?post=128</link>
    <description><![CDATA[pod处于MatchNodeSelector状态故障 现象描述 节点下电重启后，部分pod处于MatchNodeSelector异常状态。 可能原因 节点重启后，kubelet还未连通kube-api-server。 处理方法 以paas用户登录平台paas-Core01节点。
... <a href="https://www.chensj.net/?post=128">阅读全文</a>]]></description>
    <pubDate>Sat, 01 Feb 2020 10:47:43 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=128</guid>
</item>
<item>
    <title>Docker常见命令</title>
    <link>https://www.chensj.net/?post=127</link>
    <description><![CDATA[Docker常见命令 容器相关操作 docker create # 创建一个容器但是不启动它 docker run # 创建并启动一个容器 docker stop # 停止容器运行，发送信号SIGTERM docker start # 启动一个停止状态的容器 docker restart # 重启一个容器 docker rm # 删除一个容器 docker kill # 发送信号给容器，默认SIGKILL doc... <a href="https://www.chensj.net/?post=127">阅读全文</a>]]></description>
    <pubDate>Tue, 17 Jul 2018 16:35:42 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=127</guid>
</item>
<item>
    <title>levelDB的安装-Linux</title>
    <link>https://www.chensj.net/?post=126</link>
    <description><![CDATA[levelDB是一个快速的key-value （String,String）存储库，由Google编写。 基本操作是：Put(key,value), Get(key), Delete(key).
用户可以创建一个暂时的快照来获得一致的数据视图。
数据支持前向和后向迭代。
数据自动使用Snappy 压缩库进行压缩。
外部活动（文件系统操作等）通过虚拟接口实现，所以用户可以自定义操作系统接口。 限制：
levelDB不是ＳＱＬ数据库，所以不支持ｓｑｌ查询；
一个时间段只能一个进程（可能是多线程）访问数据库；
在库里没有内置的客户－服务器，若应用需要支持ＣＳ就需要把用户自己的服务器包装到库中。 ... <a href="https://www.chensj.net/?post=126">阅读全文</a>]]></description>
    <pubDate>Fri, 06 Jul 2018 14:06:06 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=126</guid>
</item>
<item>
    <title>centos 6.5 gcc升级到5.3.0</title>
    <link>https://www.chensj.net/?post=125</link>
    <description><![CDATA[1、下载安装包 在这个地址进行下载 http://ftp.gnu.org/gnu/gcc/gcc-5.3.0/ 2、解压 tar -zxvf gcc-5.3.0.tar.gz 3、下载供编译需求的依赖项。据说下面这个神奇的脚本文件会帮我们下载、配置、安装好依赖库，可以节约我们大量的时间和精力。 cd gcc-5.3.0 ./contrib/download_prerequisites 4、建立一个目录供编译出的文件存放 mkdir gcc-build-5.3.0
... <a href="https://www.chensj.net/?post=125">阅读全文</a>]]></description>
    <pubDate>Fri, 06 Jul 2018 14:05:05 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=125</guid>
</item>
<item>
    <title>如何在Ubuntu 16.04上增加Swap分区</title>
    <link>https://www.chensj.net/?post=124</link>
    <description><![CDATA[如何在Ubuntu 16.04上增加Swap分区 2018年01月31日 16:43:16  阅读数：700 翻译自：How To Add Swap Space on Ubuntu 16.04 前言 提高服务器响应速度和防止应用程序内存不足错误的最简单方法之一是添加一些交换空间。 在本指南中，我们将介绍如何将交换文件添加到Ubuntu 16.04服务器。 ... <a href="https://www.chensj.net/?post=124">阅读全文</a>]]></description>
    <pubDate>Mon, 02 Jul 2018 17:55:36 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=124</guid>
</item>
<item>
    <title>rabbitmq——用户管理</title>
    <link>https://www.chensj.net/?post=123</link>
    <description><![CDATA[rabbitmq——用户管理 原文地址：http://my.oschina.net/hncscwc/blog/262246 安装最新版本的rabbitmq(3.3.1)，并启用management plugin后，使用默认的账号guest登陆管理控制台，却提示登陆失败。 翻看官方的release文档后，得知由于账号guest具有所有的操作权限，并且又是默认账号，出于安全因素的考虑，guest用户只能通过localhost登陆使用，并建议修改guest用户的密码以及新建其他账号管理使用rabbitmq(该功能是在3.3.0版本引入的)。 ... <a href="https://www.chensj.net/?post=123">阅读全文</a>]]></description>
    <pubDate>Fri, 29 Jun 2018 17:11:05 +0800</pubDate>
    <dc:creator>Chensj</dc:creator>
    <guid>https://www.chensj.net/?post=123</guid>
</item>
</channel>
</rss>