cmake openeuler cmake-gui centos

Centos7 安装 mysql8

1、mysql官网(https://downloads.mysql.com/),下载rpm包 wget https://downloads.mysql.com/archives/get/p/23/file/mysql-8.0.31-1.el7.x86_64.rpm-bundle.tar 2、解压 m ......
Centos7 Centos mysql8 mysql

Macos 如何安装 cmake

方法一:brew brew install cmake 用 brew 安装是一个万能方法,但是 cmake 版本迭代太快。目前 CLion 最高支持 cmake24.x 版本,而 cmake 目前是 26.x。每次用 brew 更新 cmake 后都要在 CLion 中重新指定 cmake 位置,比 ......
Macos cmake

Centos 7 pip3安装 supervisor

1、安装supervisor pip3installsupervisor 2、新建文件夹 mkdir/etc/supervisord.d 3、生成supervisor.conf配置 echo_supervisord_conf>/etc/supervisord.conf 4、启动supervisor ......
supervisor Centos pip3 pip

Centos 7 安装 Python3.9.16

1、下载Python官网(https://www.python.org/downloads/)对应的安装包,选择3.9.16的linux版本 wgethttps://www.python.org/ftp/python/3.9.16/Python-3.9.16.tgz 2、解压tgz包 tarzxvf ......
Python3 Centos Python 9.16 16

centos里如何查看网络使用情况,列出所有端口的 网络使用情况

sudo yum install iftop 这将显示网络流量的实时视图,包括源和目标IP地址、传输的数据量和当前传输速率。您可以使用箭头键滚动连接列表,并按 q 退出。 sudo iftop sudo iftop -P ......
情况 网络 端口 centos

CentOS7防火墙操作

查看防火墙状态 systemctl status firewalld 开启防火墙 systemctl start firewalld 关闭防火墙 systemctl stop firewalld 查看防火墙是否开机自启 systemctl is-enabled firewalld 开启开机自启 sy ......
防火墙 CentOS7 CentOS

CentOS7静态IP配置

1 编辑网卡配置文件 vim /etc/sysconfig/network-scripts/ifcfg-ens33 修改/添加如下选项,根据自己的情况 BOOTPROTO=static #修改ip为静态,这是已有的配置,修改就好 IPADDR=你想设置的ip #静态ip地址 NETMASK=你的子网 ......
静态 CentOS7 CentOS

CentOS7-实现全网备份脚本

一、应用场景 备份公司的重要的文件或者日志文件,系统配置文件等 二、脚本思路 1、本地打包备份 2、同步服务推送至备份服务器 3、同步成功发送邮件提醒管理员 4、编写计划任务 5、本地备份文件保留时间,服务器备份文件保留时间 三、项目实施 1、服端配置rsync服务 步骤一:安装rsync服务 [r ......
全网 脚本 备份 CentOS7 CentOS

Centos 7 yum源安装nginx

1.设置nginx仓库 vim/etc/yum.repos.d/nginx.repo [nginx-stable]name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/gpgchec ......
Centos nginx yum

CentOS 7 关闭IPv6

一、编辑/etc/default/grub编辑/etc/default/grub,在GRUB_CMDLINE_LINUX加上的后面句首加上ipv6.disable=1。 修改之前: [root@localhost ~]# cat /etc/default/grub GRUB_TIMEOUT=5 GR ......
CentOS IPv6 IPv

ES搜索框架--ES部署到Centos8服务器

参考:https://blog.csdn.net/Me_xuan/article/details/114608076https://www.cnblogs.com/chenxitag/p/12320868.html一、下载安装1.下载ES使用elasticsearch7.10.2,到官网下载对应的l ......
框架 Centos8 服务器 Centos ES

Centos7 时间显示不对

修改系统时区 timedatectl set-timezone Asia/Shanghai 安装NTP yum -y install ntp 使用 ntpdate 更新系统时间 ntpdate pool.ntp.org 使用 date 查看时区是否正确 date 启动ntpd daemon,持续校准 ......
Centos7 时间 Centos

windows 下使用CMake 配置 googletest测试库

这个项目实际包含的知识细节,可以在微软的网站找到支持: 1 . 安装googletest. 下载,解压, googletest 进入开发者模式 cmd 界面: Developer Command Prompt for VS 2022 编译,安装googletest # 在解压后的目录下 mkdir ......
googletest windows CMake

Centos 7 安装部署 xxl-job

1.xxl-job部署前需要的环境 - Maven3+ - Jdk1.8+ - Mysql5.7+ 2.xxl-job下载地址 官网地址 https://www.xuxueli.com/xxl-job/ 源码地址 https://github.com/xuxueli/xxl-job/ 3.在源码地址 ......
xxl-job Centos xxl job

第三库FindXXX.cmake

1、CURL include (../cmake/ExternalProjectHelper) if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") find_external_project_add(NAME curl DEPENDS "openssl" CONFIGU ......
FindXXX cmake

cmake 函数编译第三方库

function(find_external_project_add) set(options BUILD_SHARED_LIBRARY) set(oneValueArgs NAME) set(multiValueArgs DEPENDS EXPORT_LIBRARIES CONFIGURE_COM ......
第三方 函数 cmake

centos7 mongodb4.4分片集群部署

#创建mongo相应的目录 mkdir -pv /data/app/mongodb/conf mkdir -pv /data/app/mongodb/{configset,shared1,shared2,shared3}/log mkdir -pv /data/mongodb/{configset, ......
集群 mongodb4 centos7 mongodb centos

centos 7.9搭建安装confluence-7

centos 7.9搭建安装confluence-7 ##1、安装Java环境 ###1.1 解压tar包 [root@wiki ~]# tar xf jdk-8u171-linux-x64.tar.gz -C /usr/local/ [root@wiki ~]# mv /usr/local/jdk ......
confluence centos 7.9

Centos7 安装 maven3.6.3

1.下载 maven 3.6.3 安装包 wget https://mirrors.ocf.berkeley.edu/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz --no-check-certificate 2. ......
Centos7 Centos maven3 maven 6.3

Centos7 yum安装mqtt

1.mqtt的官网是https://www.emqx.io/zh/downloads?os=CentOS 2.配置 EMQX Yum 源 curl -s https://assets.emqx.com/scripts/install-emqx-rpm.sh | sudo bash 3.安装 EMQX ......
Centos7 Centos mqtt yum

Centos8防火墙设置

Centos8防火墙设置 Centos8防风墙设置 1、centos中firewalld与iptables centos7以前的版本默认使用iptables服务进行管理防火墙规则。centos7以及其以上版本默认使用firewalld服务管理防火墙。所以在centos8中,就使用其默认的firewa ......
防火墙 Centos8 Centos

Centos 7 安装 rabbitmq

1.配置yum下载源: yum install epel-release -y 2.下载rabbitmq: yum install rabbitmq-server -y 3.配置web ui网页插件(网页登陆端口号:15672) rabbitmq-plugins enable rabbitmq_ma ......
rabbitmq Centos

Centos 7 yum 安装redis

一、安装redis 1、检查是否有redis yum 源 yum list | grep redis 2、下载fedora的epel仓库 yum install epel-release -y 3、安装redis数据库 yum install redis -y 4.防火墙开放相应端口 iptable ......
Centos redis yum

Centos8 配置本地yum源

Centos8 配置本地yum源centos8发行版通过 BaseOS 和应用流 (AppStream) 仓库发布,这篇文章主要介绍了CentOS8 配置本地yum源的详细教程,需要的朋友可以参考下centos8发行版通过 BaseOS 和应用流 (AppStream) 仓库发布,AppStream ......
Centos8 Centos yum

centos6更换源

#备份原有文件[root@zk1 /]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup#跳过检查证书,从https://www.xmpan.com/Centos-6-Vault-Aliyun ......
centos6 centos

CentOS7安装zabbix-agent

一:系统要求 1.centos 7 2.zabbix服务器端5.0版本 二:安转和配置zabbix 1.安装zabbix存储库 # rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.n ......
zabbix-agent CentOS7 CentOS zabbix agent

centos7安装k8s

部署计划 a机1核1G,192.168.180.128,用来安装 b机1核2G,192.168.180.129,用来k8s Master节点 a机动作 安装docker --安装需要的软件包, yum-util 提供yum-config-manager功能,另两个是devicemapper驱动依赖 ......
centos7 centos k8s 8s k8

Centos7 安装配置FTP服务

1、FTP简介 ftp(File Transfer Protocol文件传输协议)是基于TCP/IP 协议的应用层协议,用于文件的传输,包括ftp服务器(或服务端)和ftp客户端 2、关闭防火墙设置selinux systemclt stop firewalld.service && systemc ......
Centos7 Centos FTP

Centos8搭建sftp服务器

#安装sftp服务器 #创建用户组 [root@192 ~]# groupadd sftpgroup #创建完成之后使用cat /etc/group命令组的信息 [root@192 ~]# cat /etc/group #创建用户并且加入到这个用户组,并修改mysftp用户的密码 [root@192 ......
Centos8 服务器 Centos sftp

Centos7使用systemctl管理mysql8服务开机启动

centos7下开机默认不执行原来配置启动命令的/etc/rc.local文件,建议使用systemctl管理自启动服务,如果要使用/etc/rc.local进行自启动,需要给文件/etc/rc.d/rc.local添加可执行权限。 systemctl常用命令如下: 1.列出所有启动项命令syste ......
systemctl Centos7 Centos mysql8 mysql