摘要:
1、增加镜像源 brew tap shivammathur/php 2、查看php brew search php 3、安装指定版本php brew install shivammathur/php/php@7.4 4、安装php切换版本 brew install brew-php-switcher 阅读全文
摘要:
用如下命令下载安装msf时,提示curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused curl https://raw.githubusercontent.com/rapid7/me 阅读全文
摘要:
一、创建网络 docker network create -d bridge my_network 二、拉取zookeeper镜像 docker pull bitnami/zookeeper:3.8 三、运行zookeeper容器 docker run -d --name zookeeper-ser 阅读全文
摘要:
一、创建网络 docker network create -d bridge my_network 二、拉取镜像 docker pull openresty/openresty 三、运行临时容器 docker run -itd --name openresty -p 80:80 --restart= 阅读全文
摘要:
前置条件:mysql需要开启主从同步 一、docker安装canal # 拉取镜像docker pull canal/canal-server:latest # 运行容器 docker run -p 11111:11111 --name=canal-server \ --net=my_network 阅读全文
摘要:
计算机专业毕业,有多年开发经验,现已工作7年,计算机程序设计,java程序,Java代做,微服务SSM,Springboot,vue,jsp等Java管理系统定制开发等。 python开发,django开发,flask开发,php开发,thinkphp、laravel等,前后端都可以做,纯人工手写, 阅读全文
摘要:
一、配置本机和服务器通过ssh连接 ssh-keygen -t rsa 会在 ~/.ssh/id_rsa.pub文件中生成公钥,把改文件的内容复制到服务器的 ~/.ssh/authorized_keys文件中,然后在本机使用 ssh root@<服务器IP> 进行连接 二、配置idea通过ssh远程 阅读全文
摘要:
docker run -d --name portainer --restart=always -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer 阅读全文
摘要:
统一返回结果拦截处理类 import com.itcoder.test.utils.JsonUtils; import com.sun.istack.internal.NotNull; import lombok.extern.slf4j.Slf4j; import org.springframew 阅读全文