标签 systemctl 下的文章

  • 📂Centos8搭建web服务器教程

    1.su root 进入最高权限2.Yum install httpd* -y 安装httpd服务3.vim /etc/httpd/conf/httpd.conf 配置Apache1.2.这之间为一组配置3.4.#Listen 12.34.56.78:80Listen 127.0.0.1 更改Listen项(此项决定了Apache的监听地址和监听端口,第45行)5.配置网页的HTML文件位置...

  • 📂Linux学习笔记--运行级别教程

    Linux运行级别说明:0:关机 1:单用户 2:多用户状态没有网络服务 3:多用户状态有网络服务 4:系统未使用保留给用户 5:图形界面 6:系统重启 常用的运行级别是3和5,也可以是指定默认运行级别实操 指定运行级别查看当前默认的运行级别指定默认的运行级别 需要reboot之后才能看到效果 再次查看当前的默认运行级别 总结init 数字 ...

  • 📂Linux 防火墙开启/关闭命令教程

    Linux 防火墙相关操作命令CentOS环境查看防火墙状态systemctl status firewalld 关闭防火墙systemctl stop firewalld 关闭开机启动systemctl disable firewalld 设置开机自启systemctl enable firewalld

  • 📂linux 创建 service教程

    #!/bin/bash # 安装 node_exporter 服务 # 在 centos 上测试通过 mkdir -p /usr/local/devops/exporter cd /usr/local/devops/exporter # wget https://netdisk-1253388903.cos.ap-beijing.myqcloud.com/node_exporter wget...

  • 📂Centos安装和卸载docker教程

    自己随便yum 安装了docker 安装了发现一直启动不了,一直报Failed to start docker.service: Unit not found. 这个错误,于是卸载重装,记录一下这个坑爹的过程一、查看自己已经安装的dockeryum list installed |grep docker 输入后可以清楚的看到控制台会输出[root@xxwlog docker]# yum li...

  • 📂ubuntu配置gunicorn开机启动教程

    需求 =======================需要开机运行项目,使用systemctl来控制gunicorn开机启动systemctl配置文件在/usr/lib/systemd/system/下增加文件project.service,文件名根据需要命名,以.service结尾,文件内容:[Unit] # 描述 Description=gunicorn for n20 # 在网络服务启...

  • 📂CentOS Linux Cockpit 管理工具使用教程

    1.安装\# yum install cockpit2.启动服务\# systemctl start cockpit.socket3.设置开机启动\# systemctl enable cockpit.socket4.web终端访问打开浏览器输入https://IP:9090或https://主机名:9090点击advanced或高级继续,输入用户名,密码。

  • 📂Linux:离线搭建vsftpd服务教程

    1. 检查本机是否安装过vsftpd#检查是否存在vsftpd rpm -qa | grep vsftpd2. 下载离线安装包下载地址:http://rpmfind.net/linux/rpm2html/search.php?query=vsftpd(x86-64)3. 开始安装vsftpd#安装vsftpd rpm -ivh vsftpd-3.0.2-21.el7.x86_64.rpm4....

  • 📂关于Centos7.3防火墙教程

    基本使用查看firewall服务状态**   systemctl status firewalld查看 firewall的状态  firewall-cmd --state开启、重启、关闭、firewalld.service服务   # 开启     service firewalld start   # 重启     service firewalld restart   # 关闭     ...

  • 📂linux防火墙操作教程

    CentOS7 防火墙操作1, 查看防火墙状态:firewall-cmd --statesystemctl status firewalld.service2, 开启防火墙:systemctl start firewalld.service3,设置开机自启:systemctl enable firewalld.service4, 重启防火墙:systemctl restart firewal...

  • 📂Centos7搭建Gitlab服务器教程

    1.以下所有操作都是在root用户下配置在4G以上一:系统相关依赖 SSH,防火墙,postfix,wget1.安装ssh sudo yum install -y curl policycoreutils-python openssh-server2.将ssh服务设置成开机自启动 sudo systemctl enable sshd 3.启动ssh服务 sudo systemctl sta...

  • 📂centos7防火墙相关教程

    前言:在服务器启用时,可能会遇到一些攻击,为了防止攻击,可以开启防火墙增加服务器的安全指数。centos7操作系统之下,防火墙是firewall,常见操作如下:一.开启服务1.1、查看firewalld状态,即防火墙未开启。systemctl status firewalld或者:firewall-cmd --state1.2 开启防火墙,没有任何提示即开启成功。1.2.1 临时开启:此时开...

  • 📂CentOS后台服务管理类教程

    目录一、service 后台服务管理(临时,只对当前有效)二、chkconfig 设置后台服务的自启配置(永久)三、CentOS7 后添加的命令:systemctl-一、service 后台服务管理(临时,只对当前有效) ================================================基本语法service 服务名 status/stop/start/res...

  • 📂CentOS7搭建GitLab教程

    开始之前,准备一台全新的centos7系统虚拟机备用在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。注意: su root1. 安装sshsudo yum install -y curl policycoreutils-python openssh-server2. 启动ssh和设置为...

  • 📂CentOS7部署Prometheus教程

    部署Prometheus监控报警系统一、Prometheus介绍========================================================================================Prometheus是由SoundCloud开发的开源监控报警系统和时序列数据库(TSDB);Prometheus使用Go语言开发,是Google Bor...

  • 📂【Centos8】安装之——Nginx教程

    yum默认方式安装Nginx比较简单,但不见得是最新稳定版 新建nginx.repo文件放/etc/yum.repos.d/目录下即可1、/etc/yum.repos.d目录下新建nginx.repo文件,内容如下[nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasev...

  • 📂centos 端口及防火墙教程

    CentOS7查看开放端口命令及开放端口号 查看已开放的端口 firewall-cmd --list-ports开放端口(开放后需要要重启防火墙才生效)firewall-cmd --zone=public --add-port=3338/tcp --permanent重启防火墙firewall-cmd --reload关闭端口(关闭后需要要重启防火墙才生效)firewall-cmd --...

  • 📂linux的系统服务教程

    1、编辑一个sevice文件<pre class="brush:csharp;gutter:true;">vim /usr/lib/systemd/system/elasticsearch.service2、设置相关的用户和路径<pre class="brush:csharp;gutter:true;"># StandardO...

  • 📂DAY 158 CentOs7关闭防火墙的命令!教程

    CentOs7关闭防火墙的命令!1:查看防火状态systemctl status firewalldservice iptables status2:暂时关闭防火墙systemctl stop firewalldservice iptables stop3:永久关闭防火墙systemctl disable firewalldchkconfig iptables off4:重启防火墙syste...

  • 📂Systemd 进程管理教程

    systemd 介绍 ===============================systemd是目前Linux系统上主要的系统守护进程管理工具,由于init一方面对于进程的管理是串行化的,容易出现阻塞情况,另一方面init也仅仅是执行启动脚本,并不能对服务本身进行更多的管理。所以从CentOS 7开始也由systemd取代了init作为默认的系统进程管理工具。systemd所管理的所有...

  • 📂linux学习总结-01教程

    root密码破解1、重启linux,在启动选择系统的界面,按“E”键。1-1 按“e”键<br></br>1-2 找到linux这一行,结尾是quit,在quit后边空格,添加console=tty0 rd.break<br></br>1-3 ctrl + x 进入switch_root<br></br>1-4 moun...

  • 📂Linux的NFS教程

    要求: 1.我们首先看题先创建一个/nfs/shared的目录,然后提供所有用户查询 用的是ro 在服务端: #mkdir -p /nfs/shared #systemctl start nfs-server #systemctl stop firewalld 关闭防火墙 #setenforce 0 关闭selinux #vim /etc/exports /n...

  • 📂31——2学习RHEL linux 8 笔记教程

    今天学习并且测试以下的命令 注意 命令区分大小写1 echo lin...probe , /将lin..prebe输出到屏幕上2 echo $SHELL /公屏显示当前所用的bash3 date 查看日期时间date “+%Y-%m-%d” /设置时间年月日datetimectl set-time 20:10 /设置时间为20:104 reboot /poweroff /halt /shut...

  • 📂【Linux】CENOTS7启动时报"welcome to emergency mode!"【转载】教程

    1 问题描述 ===========================由于通过VMwaer快速克隆了一台CENTOS7.9的虚拟机。 但启动时报如下错误信息welcome to emergency mode!after logging in ,type “journalctl -xb” to view system logs,“systemctl reboot” to reboot ,“s...

  • 📂linux 文件系统介绍教程

    一、1、文件系统目录结构2、root下文件目录的功能3、特殊的光盘 cd /misc/cd,访问的时候会挂载光盘yum -y install autofs //安装systemctl status autofs //查看信息75 systemctl enable autofs 76 systemctl status autofs //永久启动syytemctl enable --now...

  • 📂centos7安装、卸载docker (yum方式)教程

    一、安装docker1.查看仓库中所有docker版本yum list docker-ce --showduplicates | sort -r 2.yum安装默认安装最新版本:yum install docker-ce安装指定版本:yum install docker-ce-17.12.0.ce 3.验证是否安装成功docker version 4.启动、设置开启开机启动system...

  • 📂linux-10条命令完成在centos安装GitLab教程

    10条命令完成在centos安装GitLab1.yum -y install policycoreutils-cycoreutils openssh-server openssh-clients postfix 2.systemctl enable sshd && sudo systemctl start sshd 3.systemctl enable postfix && syst...

  • 📂nginx一点认识教程

    一、yum安装和配置nginx1、查看环境cat /etc/redhat-release2、添加yum源sudo rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm3、安装sudo yum install nginx4、配置nginx服务#开机启...

  • 📂centos7.6安装Jenkins教程

    1、安装git yum install git2、安装Jenkins (1)sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo (2)sudo rpm --import https://pkg.jenkins.io/redhat-stable/je...

  • 📂解决远程连不到CentOS7虚拟机或ifconfig中没有ens33教程

    在使用Xshell连接虚拟机连接不上,可能之前虚拟机关闭不当登到虚拟机的中断使用ifconfig发现没有ens33 猜测是CentOS图形管理中的NetworkManager接管了网络配置, 执行以下命令关闭、重启网络服务:ifconfig ens33 upsystemctl stop NetworkManagersystemctl disable NetworkManagerifup e...