练手项目 停车场系统 安装centos7 解压安装python3 tar -xf Python-3.5.6.tar.xz 解压缩xz压缩包 源码编译安装 yum groupinstall 'Development Tools' yum install -y ncurses-libs zlib-dev ...
分类:
其他好文 时间:
2020-11-21 12:45:49
阅读次数:
32
系统: [root@weianvrgv /]# cat /etc/redhat-release CentOS Linux release 8.2.2004 (Core) 安装中文字符集 [root@weianvrgv /]#yum install -y langpacks-zh_CN 设置中文字符 ...
分类:
数据库 时间:
2020-11-21 12:44:24
阅读次数:
27
编译安装python3.6的步骤 1.下载python3源码包 wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz 2.下载python3编译的依赖包 yum install -y gcc patch libffi-devel ...
分类:
编程语言 时间:
2020-11-21 12:44:09
阅读次数:
29
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.s ...
分类:
其他好文 时间:
2020-11-21 12:42:43
阅读次数:
29
一、Erlang的安装 下载地址:http://www.erlang.org/downloads 二、RabbitMQ安装程序 下载地址:http://www.rabbitmq.com/install-windows.html 三、配置Erlang与RabbitMQ的环境变量 将其添加倒path中 ...
分类:
其他好文 时间:
2020-11-20 12:08:45
阅读次数:
10
一、安装apache 1)安装apache yum install -y httpd 2)启动apache服务 systemctl start httpd 3)查看服务状态(验证服务是否启动) systemctl status httpd (状态为active runging是启动)netstat ...
分类:
Web程序 时间:
2020-11-20 12:04:08
阅读次数:
21
Docker的安装 移除旧版本(视情况而定): $ sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ do ...
分类:
其他好文 时间:
2020-11-19 12:13:56
阅读次数:
5
RabbitMQ : 1.优先级队列 交换机exchange揭秘 direct交换机 (直接交换器) fanout交换机 (广播是式交换器) topic交换机 (主题交换器) headers交换机 (消息体的header匹配) 消息持久化,消息扩容 1. Direct(直接交换器) Exchange ...
分类:
其他好文 时间:
2020-11-19 12:02:00
阅读次数:
4
查看端口 lsof -i:9999 # 如果没有losf命令 则:yum install lsof -y 通过进程号,杀掉进程 kill -9 12468 ...
分类:
系统相关 时间:
2020-11-18 13:07:23
阅读次数:
15
主要有2种方式: 指定一条消息的过期时间。 给队列设置消息过期时间,队列中的所有消息都有同样的过期时间。 1、指定消息的过期时间 @RestController public class TTLController { @Autowired private RabbitTemplate rabbit ...
分类:
编程语言 时间:
2020-11-18 12:39:01
阅读次数:
6