智能运维

  • linux重置密码

    方法一: 进入grub菜单界面按e键 在linux开头的行按ctrl+e 或者end跳到行尾,输入rd.break按ctrl+xmount -o remount,rw /sysrootchroot /sysrootpasswd root输入两次密码touch /.autorelabel #selinux开启需要打标…

    智能运维 2022年8月8日
  • Windows Server搭建SAN存储服务(iSCSI)

    一、Windows Server 安装 这里在VMware虚拟机中安装windows server2016,具体步骤参考链接:https://www.cnblogs.com/hjq111/p/13791443.html 二、存储服务配置 参考链接如: https://www.jianshu.com/p/cc75ef97efc…

    智能运维 2022年8月8日
  • Docker/Linux 底层网络基础

    Docker 底层网络基础 一. 网络命名空间 为了支持网络协议栈的多个实例,Linux 在网络栈中引入了网络命名空间,这些独立的协议栈被隔离到不同的命名空间中。 处于不同命名空间中的网络栈是完全隔离的,彼此之间无法…

    智能运维 2022年8月8日
  • Linux exit nano editor All In One

    Linux exit nano editor All In One macOS $ nano ./env.js # exit $ Control + X # not save $ n n 不保存修改 y 保存修改,Enter 退出 修改文件名,会自动创建一个新的文件副本,保存修改的内容,原文件不会被修…

    智能运维 2022年8月8日
  • Linux bash pbcopy command All In One

    Linux bash pbcopy command All In One pbcopy 妙用 # 复制 ps 命令文档 $ man ps | pbcopy # 复制 ls 命令文档 $ man ls | pbcopy ps PS(1) General Commands Manual PS(1) NNAAMMEE ppss – process status …

    智能运维 2022年8月8日
  • ubuntu 中设置root账户登录

      001、 root@ubuntu01pc1:~# vim /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf ## 打开配置文件 [Seat:*]user-session=ubuntugreeter-show-manual-login=true        ## 增加一行,保存退出     002、 root@…

    智能运维 2022年8月8日
  • Linux Cgroups介绍

    Linux Cgroups介绍 Linux Cgroups 提供了对一组进程及将来子进程的资源控制、控制和统计能力,这些资源包括CPU、内存、存储、网络等。通过Cgroups 可以方便的限制某个进程的资源占用,并可以实时监控进程的监控和统…

    智能运维 2022年8月8日
  • ubuntu 中设置 root登录filezilla

      001、问题     002、修改配置文件 root@ubuntu01pc1:~# vim /etc/ssh/sshd_config ## 打开该配置文件,将PermitRootLogin 改为yes ………… ………… # Logging #SyslogFacility AUTH #LogLevel INFO # Authentication: #…

    智能运维 2022年8月8日
  • ubuntu 中如何创建root用户

      001、 liujiaxin01@ubuntu01pc1:~/Desktop$ whoami liujiaxin01 liujiaxin01@ubuntu01pc1:~/Desktop$ sudo passwd root ## 创建root账户 [sudo] password for liujiaxin01: New password: Retype new password: p…

    智能运维 2022年8月8日
  • Windows server 2012故障转移群集的安装、建立(含图解

    目录 介绍 :         一、安装故障转移群集   二、验证故障转移配置  三、建立故障转移群集    四、配置故障转移群集角色    五、测试故障转移群集      在本章节中主要讲解windows server 2012故障转移群集: …

    智能运维 2022年8月8日