11 2020 档案

SpringBoot集成WebSocket 同步前端及填坑
摘要:原文 https://blog.csdn.net/moshowgame/article/details/80275084 追加 vue 集成 websocket ,打开连接时,403 (Forbidden) POST http://localhost:9999/api/im/endpoint/808 阅读全文

posted @ 2020-11-26 17:11 A欣

docker安装minio
摘要:注意的地方: echo 命令设置 ACCESS_KEY 和 SECRET_KEY echo "admin" | docker secret create access_key - echo "12345678" | docker secret create secret_key -此处secret_ 阅读全文

posted @ 2020-11-12 17:41 A欣

centos静态ip
摘要:查看 网关 配置文件 进入/etc/sysconfig/network-scripts目录下面(切换到root用户)#cd /etc/sysconfig/network-scripts查看该目录下的文件(ls): 需要配置的文件为 ifcfg-ens33(有些主机不同,自己根据自己情况来看,都是 i 阅读全文

posted @ 2020-11-12 15:55 A欣

harbor安装
摘要:Harbor 简介 Harbor 是由 VMware 公司中国团队为企业用户设计的 Registry server 开源项目,包括了权限管理(RBAC)、LDAP、审计、管理界面、自我注册、HA 等企业必需的功能,同时针对中国用户的特点,设计镜像复制和中文支持等功能。 作为一个企业级私有 Regis 阅读全文

posted @ 2020-11-07 22:15 A欣

错误集锦Error response from daemon: Get https://registry-1.docker.io/v2/library/hello-world/manifests/latest: net/http: TLS handshake timeout
摘要:第1步:通过dig @114.114.114.114 registry-1.docker.io找到可用IP地址 dig 未找到命令 解决: 通过yum方式安装 yum -y install bind-utils IP地址非固定可能会变动,所以需要多试几次(几个IP) 第二步:修改/etc/hosts 阅读全文

posted @ 2020-11-07 21:59 A欣

is not allowed to connect to this mysql server
摘要:阿里云上安装的mysql,发现用本地电脑的navicat链接不上。通过了解知道了原因,小二在此写了一篇,省的以后自己在碰到。 错误如图。 mysql -u root -p 登录到mysql中。 [root@izbp10fk8pd9zjv9y2g9ajz etc]# mysql -u root -p 阅读全文

posted @ 2020-11-06 15:42 A欣

安装mysql 5.7.19 rpm包报错
摘要:/usr/bin/perl is needed by mysql-community-server-5.7.19-1.el7.x86_64 一、问题描述 从mysql官网下载mysql-5.7.19-1.el7.x86_64.rpm-bundle.tar,然后解压安装。安装顺序如下 rpm -ivh 阅读全文

posted @ 2020-11-06 15:27 A欣

centos部署之mysql修改密码
摘要:1 skip-grant-tables 不启动验证 /etc/my.cnf 增加一行 use mysql 2 mysql> update user set password=PASSWORD('p12#456') -> where user='root' and host='root' or hos 阅读全文

posted @ 2020-11-06 15:24 A欣

导航