development configure centos7 centos

【Centos】Centos 7.6 Skywalking 9.2.0,网关服务的监控数据都是空

1 前言 续上节我发现,网关服务的数据一直都是 0 ,发现问题,解决问题。 参考文档:https://article.juejin.cn/post/7105529534610407431 我寻思是网关的agent不一样,后来看了大佬的文章,原来是插件里少了网关的插件哈。 2 解决办法 plugins ......
Centos 网关 Skywalking 数据 7.6

【Centos】Centos 7.6 Skywalking 9.2.0,监控微服务

1 前言 安装完Skywalking,我们来试试怎么把微服务给监控上。 agent文档:https://skywalking.apache.org/docs/skywalking-java/v9.0.0/en/setup/service-agent/java-agent/readme/ 2 安装步骤 ......
Centos Skywalking 7.6

安装centOS和Synopsys工具链

安装centos过程如下: 先将centos安装在u盘里,然后在电脑bios里设置u盘为第一启动项,然后安装centos,安好后还是在centos里,会看到centos系统(也会有windows),直接选择lcentos进入即可。 这个是centos安装包下载: https://mirrors.al ......
Synopsys 工具 centOS

Centos 7查看内存、CPU核数、磁盘、文件夹大小

查看内存大小 cat /proc/meminfo | grep MemTotal查看cpu物理核数 cat /proc/cpuinfo | grep "cpu cores" | uniq查看cpu逻辑核数 cat /proc/cpuinfo | grep "processor" | wc -l查看系 ......
核数 磁盘 文件夹 大小 内存

linux安装redis。ununtu和centos等类似的发行版,完全离线安装,自定义版本

redis各个版本源码包下载:Index of /releases/ (redis.io) 下载与解压 从Index of /releases/ (redis.io)选择自己需要的版本并下载(此处以redis-6.2.14.tar.gz为例,其他版本可能会不同)。 将文件上传到linux服务器,使用 ......
版本 centos ununtu linux redis

【Centos】Centos 7.6 安装 Skywalking 9.2.0,存储为 MySQL

1 前言 我要再来装一个 Skywalking,服务没有监控你慌不慌,来一个,MySQL之前装过了哈,看前边的文章。 https://skywalking.apache.org/downloads/ https://skywalking.apache.org/docs/main/v9.2.0/en/ ......
Centos Skywalking MySQL 7.6

centos.repo

[root@localhost ~]# vi centos.repo #输入以下内容并保存 [AppStream] name=AppStream baseurl=file:///media/AppStream gpgcheck=0 enabled=1 [BaseOS] name=BaseOS bas ......
centos repo

Centos 7 部署人大金仓数据库

一、从金仓官网下载镜像文件并上传到服务器 人大金仓数据库下载地址 二、安装人大金仓数据库 root用户下准备工作 在安装金仓数据库管理系统 KingbaseES 时,安装用户对于安装路径需有“读”、“写”、“执行”的权限。在linux 系统中,需要以非 root 用户执行安装程序,且该用户要有标准的 ......
数据库 数据 Centos

System Center Configuration Manager (SCCM) 是一款由微软开发的综合性系统管理工具,旨在简化企业级 IT 管理和部署任务

System Center Configuration Manager (SCCM) 是一款由微软开发的综合性系统管理工具,旨在简化企业级 IT 管理和部署任务。它提供了一个集中管理的平台,可以帮助管理员有效地管理和控制大规模的计算机和设备。 通过 SCCM,管理员可以执行各种管理任务,包括软件和操 ......

centos使用经验

一、Cron是一个用于在特定时间间隔内定期执行任务的工具。下面是使用cron的详细步骤: 打开终端或命令行界面。 输入以下命令来编辑cron表: crontab -e 如果是第一次编辑cron表,系统会要求选择一个文本编辑器。选择你喜欢的编辑器后,会打开一个空的cron表文件。 在cron表中,每一 ......
经验 centos

centos7 修改mysql文件存储位置

一、查看存储位置 mysql>select @@datadir; 二、关闭mysqld服务 mysql + centos 7/8 :systemctl stop mysqld 三、创建新目录位置 mkdir /data/mysql chown -R mysql:mysql /data/mysql 四 ......
位置 centos7 文件 centos mysql

centos添加删除swap

1. 添加 在/data/目录下创建一个swap文件,大小为4G。使用 bs 块大小和 count 块数的组合来指定文件大小。块越大,速度越快。 dd if=/dev/zero of=/data/swapfile bs=1M count=4096 修改swap文件权限。 chmod 600 /dat ......
centos swap

腾讯云centos7.6安装mysql

# 禁用原生mysql yum module disable mysql # 删除mariadb rpm -qa | grep mariadb rpm -e mariadb-libs --nodeps # 下载mysql压缩包 mkdir /opt/mysql cd /opt/mysql/ wget ......
centos7 centos mysql

深入@component注解与@Configuration

1、@Configuration 从Spring3.0,@Configuration用于定义配置类,可替换xml配置文件,被注解的类内部包含有一个或多个被@Bean注解的方法,这些方法将会被AnnotationConfigApplicationContext或AnnotationConfigWebA ......
注解 Configuration component

CentOS7去除"您在 /var/spool/mail/root 中有新邮件"的提示

1.删除邮件 cat /dev/null > /var/spool/mail/root 2.关闭系统检查邮件 echo "unset MAILCHECK" >> /etc/profile 3.刷新配置 source /etc/profile 注意:使用root用户执行上面的命令。 ......
quot 邮件 CentOS7 CentOS spool

Centos安装python3详细教程

如果要用的3.0以上的版本需要手动安装,下载地址:https://www.python.org/ftp/python/ 1、先查看系统python的位置在哪儿 whereis python python2.7默认安装是在 /usr/bin目录中,切换到/usr/bin/ cd /usr/bin/ l ......
python3 教程 Centos python

kepware运行时报错: no suitable 32-bit JRE was configured or found.

报错原因: 缺少JAVA环境(安装: ......
configured suitable 时报 kepware found

4、nginx configure执行流程

1、configure源码 configure由Shel1脚本编写,执行过程中间会调用<nginx-source>/auto/目录下的脚本。 #!/bin/sh # Copyright (C) Igor Sysoev # Copyright (C) Nginx, Inc. # auto/option ......
configure 流程 nginx

在centos上docker及docker-compose 的快速简单办法

1、docker安装参考下面两个链接: https://zhuanlan.zhihu.com/p/625244906?utm_id=0 Install Docker Engine on CentOS | Docker Docs 2、docker-compose的安装参考下面这个链接: https:/ ......
docker docker-compose compose 办法 centos

Linux系统-centos7.6 防火墙firewalld详解

1.firewalld了解 CentOS 7.6默认的防火墙管理工具是firewalld,它取代了之前的iptables防火墙。firewalld属于典型的包过滤防火墙或称之为网络层防火墙,与iptables一样,都是用来管理防火墙的工具(属于用户态)来定义防火墙的各种规则功能,内部结构都指向net ......
防火墙 firewalld centos7 centos 系统

CentOS7下离线编译ZLMediaKit

系统环境 CentOS版本号 CentOS Linux release 7.9.2009 (Core) 内核版本 Linux localhost.localdomain 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 ......
ZLMediaKit CentOS7 CentOS

【Centos】Centos 7.6 安装 Nginx 1.24.0

1 前言 前端包一般都是打包好后,放置在Nginx里,这节我们就来安装下。 http://nginx.org/en/download.html 2 安装步骤 2.1 下载压缩包 下载地址:http://nginx.org/en/download.html 2.2 解压 tar -zxvf nginx ......
Centos Nginx 7.6 24

Jenkins 系列:Jenkins 安装(Windows、Mac、Centos)和简介

目录简介发展历史应用场景Jenkins 安装部署先决条件硬件要求软件包下载war 包部署linux 系统部署mac 系统部署windows 系统部署安装后基本配置解锁自定义 jenkins 插件创建用户配置更新站点配置文件null 简介 Jenkins前身是 Hudson,使用 java 语言开发的 ......
Jenkins Windows 简介 Centos Mac

centos中使用yum报错

1、执行yum repolist具体报错内容 Loaded plugins: product-id, search-disabled-repos,subscription-managerThis system is not registered with an entitlement server. ......
centos yum

centos 7 安装 vbox的增强功能

1. 加载光驱 mount /dev/cdrom /media 2. 安装附属套件 yum install libXt yum install libXmu 3. 升级内核 yum install "kernel-devel-uname-r == $(uname -r)" -yyum install ......
功能 centos vbox

CENTOS docker拉取私服镜像

概述 docker的应用越来越多,安装部署越来越方便,批量自动化的镜像生成和发布都需要docker镜像的拉取。 centos6版本太老,docker的使用过程中问题较多,centos7相对简单容易。 本文档主要介绍centos系统安装docker和拉取docker私服镜像的步骤和问题解决。 环境 d ......
私服 镜像 CENTOS docker

Vite + ESBuild error: No loader is configured for ".node" files: node_modules/fsevents/fsevents.node

Vite + ESBuild error: No loader is configured for ".node" files: node_modules/fsevents/fsevents.node Add fsevents to your optimizeDeps exclude in your ......
fsevents node quot node_modules configured

CentOS 宝塔 安装 onlyoffice

1.宝塔默认软件安装 1.1Nginx需要编译安装 默认版本没有http_secure_link_module 所以需要重新编译安装一遍 cd /www/server/nginx/src ./configure \ --user=www \ --group=www \ --prefix=/www/s ......
宝塔 onlyoffice CentOS

centos7 升级curl-8.2.1 支持http2 (yum update)

转载于:https://www.cnblogs.com/huangweimin/articles/15882913.html CentOS 7 默认的 curl 版本最新就到 7.29 ,它是不支持http2的 # curl --version curl 7.29.0 (x86_64-redhat- ......
centos7 centos update http2 curl

Error running ‘Application’: Command line is too long. Shorten command line for Application or also for Spring Boot default configuration?

【Error running ‘Application‘: Command line is too long. Shorten command line for Application or also】https://minipro.baidu.com/ma/qrcode/parser?app_ke ......
Application line configuration for Command
共3000篇  :3/100页 首页上一页3下一页尾页