实战案例——应用系统基础服务安装 1. 规划节点 IP地址 主机名 节点 172.16.51.29 mall 单节点服务器 2. 基础准备 使用VMWare Workstation软件安装CentOS 7.2操作系统,镜像使用提供的CentOS-7-x86_64-DVD-1511.iso,最小化安装 ...
分类:
数据库 时间:
2021-04-29 12:00:35
阅读次数:
0
1.盘符切换 盘符 + 英文冒号 D:C:\Users\zff>D: 2.查看当前目录下的所有 文件夹 dir命令 比如 D:\>dir 3.切换目录 cd (change directory) 比如 D:\>cd /d c: 可以在D盘直接切换到C盘 cd .. 表示返回上一级 4.清理屏幕 D: ...
分类:
其他好文 时间:
2021-04-29 11:47:14
阅读次数:
0
from django.http import JsonResponse from django.contrib.auth import authenticate,login,logout # 登录处理 def signin(request): # 从 HTTP POST 请求中获取用户名、密码参数 ...
分类:
其他好文 时间:
2021-04-29 11:45:13
阅读次数:
0
有时候我们有多个环境,开发环境、测试环境、生产环境,每个环境都有不同的配置信息 如何用一套代码,在不同环境上都能运行,spring的profile就是用来解决这个问题 比如想着测试环境加载一个配置类,那么这个类可以加上这个注解 @Component @Profile(value="test") pu ...
分类:
编程语言 时间:
2021-04-29 11:40:00
阅读次数:
0
防火墙由netfilter组成,iptables是控制netfilter的软件 iptables(重点)- 用户空间的工具 环境准备 systemctl stop firewalld.service systemctl disable firewalld.service 或systemctl dis ...
分类:
系统相关 时间:
2021-04-28 12:11:32
阅读次数:
0
保持技术的好奇心,是一件不错的事情。 pytorch可以在终端导入,但是就是不能再jupyter notebook中导入,网上很多人遇到这个问题, 但是都解决不了我的问题。 无意间看得到安装nb-conda,于是跟着安装了,但是不起作用。 临了准备放弃的时候,想知道nb-conda是什么东西,于是找 ...
分类:
其他好文 时间:
2021-04-28 11:54:03
阅读次数:
0
本文主要讲解如何通过RabbitMQ实现定时任务(延时队列) 环境准备 需要在MQ中进行安装插件 地址链接 插件介绍地址:https://www.rabbitmq.com/blog/2015/04/16/scheduling-messages-with-rabbitmq/ 使用场景 作为一个新的预支 ...
Maven资源导出问题 maven由于他的约定大于配置,我们之后可以能遇到我们写的配置文件,无法被导出或者生效的问题,解决方案: <!--在build中配置resources,来防止我们资源导出失败的问题--> <build> <resources> <resource> <directory>sr ...
分类:
其他好文 时间:
2021-04-27 14:16:29
阅读次数:
0
一种是网上常见的一种 var builder1 = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("appsettings.json"); var configuration = ...
分类:
Web程序 时间:
2021-04-26 14:01:34
阅读次数:
0
<template> <div class="box"> <div class="swipers"> <template v-for="(item, index) in lists" > <div class="item" v-if="index==active" :key="'0'+index" ...
分类:
其他好文 时间:
2021-04-26 13:50:48
阅读次数:
0