智能运维

  • 进程管理工具

    '''安装进程管理工具pip install scrapyd 服务器pip install sctapyd-clinet 客户端启动服务器在命令行启动scrapyd启动爬虫curl http://localhost:6800/schedule.json -d project=zh -d spider=zongheng{'node_name…

    智能运维 2022年9月7日
  • How to Fix CVE-2022-3075- A New 0-day in Google Chrome Browser

    Google has published a security advisory against a new, critical 0-day vulnerability in the Google Chrome browser. The vulnerability, tracked as CVE-2022-3075, is a high-severity vulnerability that i…

    智能运维 2022年9月6日
  • centos报错Error: Package: containerd.io-1.6.8-3.1.el7.x86_64 (base)

    远程帮客户电脑装东西,发现客户那边的机子都不出网。。。。全新的centos 执行yum install docker报错了 --> Finished Dependency Resolution Error: Package: slirp4netns-0.4.3-4.el7_8.x86_64 (base) Require…

    智能运维 2022年9月6日
  • 【运维】Linux内存占用分析的几个方法,你知道几个?

    【参考链接】 Linux内存占用分析的几个方法,你知道几个?

    智能运维 2022年9月6日
  • 【转】windows远程桌面(mstsc)不能复制粘贴的解决办法

    转自:https://www.cnblogs.com/cegh/p/15933199.html   原来通过mstsc远程连接Windows能够直接在本地和服务器之间复制、粘贴一些文字和文件,最近突然无法直接复制粘贴了,只能通过远程映射的本地磁盘方式交换文件…

    智能运维 2022年9月6日
  • Iptables - 基础应用

      iptables命令是Linux上常用的防火墙软件,是netfilter项目的一部分。 -t<表>:指定要操纵的表; -A:向规则链中添加条目; -D:从规则链中删除条目; -I:向规则链中插入条目; -R:替换规则链中的条目; -…

    智能运维 2022年9月6日
  • Linux - 常用命令

     # 查看系统版本 uname -a cat /proc/version cat /etc/redhat-release   # 查看当前目录文件大小 du --max-depth=1 -h du -sh   # 更新时区 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime   # 查看端口信…

    智能运维 2022年9月6日
  • (non-)interactive (non-)login shell

    1 login shell 当bash以login shell形式登录的时候,bash会依次执行下列脚本,进行关键全局变量的初始化,如PATH。 /etc/profile ~/.bash_profile ~/.bash_login ~/.profile 使用-,-l,--login选项可指定以login s…

    智能运维 2022年9月6日
  • 执行shell脚本文件提示: bad substitution

    问题描述 由于业务需要早上修改了一个固定需求加工逻辑的一个子查询,把修改后的 hivesql 封装成 shell 脚本后执行报错了,运行脚本最后一行提示如下: t1.service_type;: bad substitution 问题分析 经过查询了解…

    智能运维 2022年9月6日
  • linux线程同步简单示例

    #include<stdio.h>#include<pthread.h>#include<stdlib.h>//int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg);//int pthread_jo…

    智能运维 2022年9月6日