<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>运维部署 - 分类 - cfanzp学习笔记</title>
    <link>https://cfanzp008.github.io/categories/deploy/</link>
    <description>运维部署 - 分类 - cfanzp学习笔记</description>
    <generator>Hugo -- gohugo.io</generator><language>zh-CN</language><managingEditor>cfan.zp@qq.com (cfanzp)</managingEditor>
      <webMaster>cfan.zp@qq.com (cfanzp)</webMaster><lastBuildDate>Fri, 05 May 2023 18:39:35 &#43;0800</lastBuildDate><atom:link href="https://cfanzp008.github.io/categories/deploy/" rel="self" type="application/rss+xml" /><item>
  <title>使用nginx搭建一个简单的下载服务</title>
  <link>https://cfanzp008.github.io/nginx-download-server/</link>
  <pubDate>Fri, 05 May 2023 18:39:35 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/nginx-download-server/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>Windows如何写一个脚本定时删除日志？</title>
  <link>https://cfanzp008.github.io/windows-del-log/</link>
  <pubDate>Wed, 07 Dec 2022 14:27:50 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/windows-del-log/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>解决Oss跨域问题</title>
  <link>https://cfanzp008.github.io/oss-core-error/</link>
  <pubDate>Mon, 28 Nov 2022 12:31:58 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/oss-core-error/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>linux中使用脚本关闭进程</title>
  <link>https://cfanzp008.github.io/linux-stop-process/</link>
  <pubDate>Thu, 01 Sep 2022 11:15:18 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/linux-stop-process/</guid>
  <description><![CDATA[linux中使用脚本关闭进程 关闭进程脚本 通过ps命令，grep命令以及awk命令找到进程的pid 使用kill命令关闭进程 脚本demo: 1 2 3 4 5 6 7 8 9 10 11 12 13 rootot@dev doc]# cat stop_mdbook_doc.sh #!/bin/bash kill_pid=`ps -ef | grep mdbook | grep 4001 | grep -v grep | awk &#39;{print $2}&#39;` echo &#34;pid = &#34;${kill_pid} if [ -n &#34;${kill_pid}&#34; ] then kill -9 ${kill_pid} echo &#34;mdbook 4001 pid:&#34;${kill_pid}&#34;进程已kill成功&#34; else echo &#34;mdbook 4001 进程已不存在&#34; fi [root@dev doc]# ]]></description>
</item>
</channel>
</rss>
