加载中
Linux下docker-compose 安装与常用命令

1. 安装docker yum update yum upgrade yum install -y yum-utils yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce docker...

01/09 15:17
8
Windows查看端口对应进程

1. 查看所有端口占用情况 netstat -ano 2. 查看指定端口占用情况 netstat -ano | findstr "端口号" 3. 使用tasklist查看 PID 对应的进程名 tasklist|findstr "PID号" 4. 结束进程 taskkill /...

2022/12/02 09:57
785
UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> <exclusions> <exclusion> <groupId>io.undertow</groupId> <......

2022/11/29 13:33
38
验证码异常at java.desktop/sun.awt.FontConfiguration.getVersion(FontConfiguration.java

Caused by: java.lang.reflect.InvocationTargetException: null at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.interna...

2022/04/27 17:59
2.9K
本地docker安装MongoDB副本集

1. 创建网络与容器 docker pull mongo docker network create mongo-rs docker run --name mongo1 -p 27027:27027 --net mongo-rs -d mongo mongod --replSet "rs0" --port 27027 docker ru...

2020/08/21 13:27
1.1K
Docker+Gogs搭建个人Git服务

自助搭建git服务器, 采用gogs + docker 的方式是非常方便的。 但是在实际操作过程中可能还是遇到一些小问题, 这里记录下来方便其他人查阅。 前提条件: mysql也是docker方式运行的:docke...

2019/04/03 14:03
317
阿里云centos mysql数据库远程连接

1. 阿里云安全组端口开通 mysql port 2. 数据库用户默认host是localhost, 修改% mysql> select user, host from mysql.user; +------------------+-----------+ | user | host | +---------...

2019/03/30 10:10
108

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部