rabbitmq centos7 centos server

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

[Web Server]Tomcat调优之监控连接池/线程池

1 Tomcat 概述 1.1 引言: Tomcat - HTTP Connector 在使用tomcat时,经常会遇到连接数、线程数之类的配置问题,要真正理解这些概念,必须先了解Tomcat的连接器(Connector)。 Tomcat配置文件server.xml中: Connector的主要功能 ......
线程 Server Tomcat Web

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

SQL SERVER查询每组最后一条数据

现有表如下: 需要查询每一个item对应的最后一条数据,SQL SERVER 如下: SELECT * FROM (SELECT ROW_NUMBER() OVER(PARTITION BY ItemCode ORDER BY RecordID desc) as RowNum, * from (SE ......
数据 SERVER SQL

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

Server Error `defineOptions()` in <script setup> cannot reference locally declared variables (COMPONENT_NAME) because it will be hoisted outside of the setup() function.

这个错误提示是因为在<script setup>标签中使用了defineOptions()函数,并且该函数中引用了一个本地声明的变量(比如COMPONENT_NAME)。由于<script setup>中的代码会被自动包装在setup()函数内部执行,而defineOptions()函数会被提升到s ......

sql server 回收日志空间

-- sql server 2012 1、查询数据库名SELECT DB_NAME(database_id) AS [Database Name],[Name] AS [Logical Name],[Physical_Name] AS [Physical Name],((size * 8) / 10 ......
server 日志 空间 sql

Centos7 安装配置FTP服务

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

json-server

一、简介 Node模块,运行Express 服务器,可以指定一个json文件作为API的数据源。类似小型后台接口,在一个json文件中操作数据源,是基于node.js的一个模块。 二、安装 npm i json-server -g 注: 1、i 表示install,即安装;-g 表示global,即 ......
json-server server json

Centos8搭建sftp服务器

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

mock 接口工具 json-server

背景 由于某个原因公司的内部的内网不给访问,只有一台远程主机 只能在远程主机上调好接口 然后拿到数据格式在本地 mock/fake 数据格式 调试代码 就想到使用假的服务 返回同样的格式的数据 json-server 安装json-server npm install -g npm@9.6.4 np ......
json-server 接口 工具 server mock

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

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

FastCFS:FastDir-server、FastStore-server等服务器组件中的【[server-$id]】的多网卡多ip、单网卡不同port的精细配置

如题! 之所以专门记录在此,是因为,作者官方的相关文档语焉不详、或无法轻易查找的到资料,让无经验的人不知如何配置(注:yuqing莫怪!) 其实,这些配置项,可以通过仔细研读程序启动的日志信息或提示获取到。 当然,如果你有功底,完全可以通过阅读源码获取到。 此处以FastDir-server的相关c ......

在centOS中实时查看tomcat日志内容及tomcat 是否运行

1、CentOS查看Tomcat是否正在运行,执行以下命令: [root@iZ2zeglnetdyhxr3xjquwpZ logs]# ps -ef|grep comcatroot 10409 10190 0 11:16 pts/0 00:00:00 grep --color=auto comcat ......
tomcat 内容 centOS 日志

K8S Metrics Server安装

kubectl apply -f metrics-server-components.yaml apiVersion: v1 kind: ServiceAccount metadata: labels: k8s-app: metrics-server name: metrics-server nam ......
Metrics Server K8S K8 8S

kubernetes metrics-server安装

k8s版本 [root@master v60]# kubectl versionWARNING: This version information is deprecated and will be replaced with the output from kubectl version --sh ......
metrics-server kubernetes metrics server

Linux(CentOS7) c语言编程, 多线程入栈出栈,错误:expected ‘while’ before ‘int’

在Centos7里,编写多线程的入栈出栈时,出现这样错误提示: 图片版: 文字版: [root@CentOs7 05-xitongbiancheng]# gcc 05-24-01.pthread-cancel-pop-push.c -pthread 05-24-01.pthread-cancel-p ......
语言编程 线程 expected 错误 CentOS7

宝塔Error: Unable to access jarfile /www/wwwroot/defalut/classmanagement.jar--server.port=8083

1.Error: Unable to access jarfile /www/wwwroot/defalut/classmanagement.jar--server.port=8083 2.解决方法 ......

【SQL Server】DateAdd

定义和用法 DATEADD() 函数在日期中添加或减去指定的时间间隔。 语法 DATEADD(datepart,number,date) date 参数是合法的日期表达式。number 是您希望添加的间隔数;对于未来的时间,此数是正数,对于过去的时间,此数是负数。 datepart 参数可以是下列的 ......
DateAdd Server SQL

AWS+vCenter Server

1、AWS基础存储架构Dynamo的主要数据类型和架构的主要技术是什么? AWS基础存储架构Dynamo是一种NoSQL数据库,它支持键值对存储。Dynamo的主要数据类型包括字符串、数字、二进制、布尔、集合和空值。Dynamo的架构主要技术包括分区、复制和存储。Dynamo使用分区来分割数据并将其 ......
vCenter Server AWS

解决centos7网卡启动失败解决(亲测有效!!)

https://blog.csdn.net/HR18770171448/article/details/99707170 这两天在学Linux,很多人应该用的也是CentOS,昨天在安装图形化接口的时候,发现安装不了。查了下原因是无法连外网,于是 systemctl start Network.se ......
网卡 centos7 centos

Centos搭建和配置SFTP服务器

1.linux操作系统SSH和SFTP共用端口和服务,所以只要服务器开启了SSH即可以使用SFTP,检查当前SFTP版本信息 [root@localhost ~]# rpm -qa|grep ssh libssh2-1.4.3-10.el7_2.1.x86_64 openssh-7.4p1-13.e ......
服务器 Centos SFTP

centos 用docker 部署wizard

1、部署 这里采用的是docker部署的方式,因为手动部署的方式。需要安装好多依赖以及配置环境等等。太麻烦和维护不简单,所以用docker来部署 需要先部署MySQL数据库(这里采用的是5.7版本),端口映射可以自己定义,这里映射的是8789 docker run -d --name mysql - ......
centos docker wizard

sql server 分区存储

数据库数据太大影响查询速度,可以将数据库进行横向按时间切割存储。 分区步骤: 1;建立分区几个分区建立几个 --第一步:创建四个文件组,你想分几个区 参数:数据库名,关键字,分组名 alter database phpDB add filegroup ByIdGroup1 alter databas ......
server sql

获取微信公众号授权失败, 请稍后重试!错误详情: Could not resolve: api.weixin.qq.com (Could not contact DNS servers)

获取微信公众号授权失败, 请稍后重试!错误详情: Could not resolve: api.weixin.qq.com (Could not contact DNS servers) ......
Could 稍后 not 公众 错误

CentOS下载安装

0 准备工作 下载安装好VMware Workstation Pro VMware Workstation Pro下载安装 - 来个煎饼 - 博客园 (cnblogs.com) 1 下载centos7 下载地址:centos安装包下载_开源镜像站-阿里云 (aliyun.com) 1.1 可以自行选 ......
CentOS

centos连不上网解决办法

有时候主机1会突然没有网络,在网上找了个帖子,通过 sudo vim /var/lib/NetworkManager/NetworkManager.state修改NetworkingEnabled=false 步骤为: 关闭网络服务:sudo service network-manager stop ......
办法 centos

Centos7 yum源 安装mysql5.7

一、安装YUM Repo 1、由于CentOS 的yum源中没有mysql,需要到mysql的官网下载yum repo配置文件。 下载命令: cd /rootwget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.r ......
Centos7 Centos mysql5 mysql yum