xdebug 2.8 (貌似3.0以下都可以) [xdebug]xdebug.remote_enable=1xdebug.remote_host=host.docker.internalxdebug.remote_port=9000xdebug.remote_handler=dbgpxdebug.r ...
分类:
其他好文 时间:
2021-05-25 18:12:24
阅读次数:
0
环境说明 安装环境:基于虚拟机上Docker启动centos,在该centos上安装Docker 准备环节 1、docker run运行一个centos环境 > docker run -it --name mycentos --privileged=true centos:latest /sbin/ ...
分类:
其他好文 时间:
2021-05-24 17:17:30
阅读次数:
0
为了Skywalking 准备 elasticsearch 至少 需要2G内存 docker pull elasticsearch:7.9.3 docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \ -e "discovery.type ...
分类:
其他好文 时间:
2021-05-24 16:43:33
阅读次数:
0
# 查看已安装dockeryum list installed | grep dockerrpm -qa | grep docker # 卸载旧版本(如果之前安装过的话)yum remove docker \ docker-client \ docker-client-latest \ docker ...
分类:
其他好文 时间:
2021-05-24 15:43:09
阅读次数:
0
一,引言 前两天遇到了Azure Blob Storage 需要迁移到另外的一个 Azure Blob Storage 中。手动下载、上传已经无法满足了,得另寻一种方式了 AzCopy。Azure 为我们提供了 AzCopy,它其实是一个命令行实用工具,可用于向/从存储账户复制 Blob 或文件。 ...
分类:
其他好文 时间:
2021-05-24 15:10:39
阅读次数:
0
由于默认是:进程内托管。要在IIS里停止网站,才能替换文件。 建议解决方案是:进程外(out-of-process)托管 记事本修改项目的 .csproj 文件,检查 PropertyGroup 节点中,有没有AspNetCoreHostingModel 这一项。 没有则添加“<AspNetCore ...
分类:
Web程序 时间:
2021-05-24 15:07:47
阅读次数:
0
(1)首先访问 docker-compose 的 GitHub 版本发布页面: https://github.com/docker/compose/releases (2)由于服务器是 CentOS 系统,则下载 Linux 版本的 Compose: (3)将下载下来的“docker-compose ...
分类:
其他好文 时间:
2021-05-24 15:07:32
阅读次数:
0
Zookeeper概念 Zookeeper是分布式协调服务,用于管理大型主机,在分布式环境中协调和管理服务是很复杂的过程,Zookeeper通过简单的架构和API解决了这个问题 Zookeeper实现分布式锁 分布式锁三要素: 加锁 解锁 锁超时 Zookeeper数据结构类似树结构,由节点Znod ...
分类:
其他好文 时间:
2021-05-24 14:40:06
阅读次数:
0
初级命令 搜索镜像 docker search ubuntu //一般靠前的是官方镜像,其他是用户自己创建并分享的 下载镜像 docker pull ubuntu //默认下载最新版本的 列出下载的镜像 docker images 创建并使用容器 docker run -i -t --name he ...
分类:
其他好文 时间:
2021-05-24 14:34:45
阅读次数:
0
An Azure storage account contains all of your Azure Storage data objects: blobs, file shares, queues, tables, and disks. The storage account provides ...
分类:
其他好文 时间:
2021-05-24 14:07:40
阅读次数:
0