搜索内容

前段技术
  • Linux安装Redis6.2.6版本
    中间件

    Linux安装Redis6.2.6版本

    1、创建存放的文件夹 mkdir /usr/local/redis 2、进入创建的文件夹,然后使用wget进行下载 cd /usr/local/redis wget https://down……
    诺米 2022年12月26日
  • navicat连接mysql8报错1251
    前段技术

    navicat连接mysql8报错1251

    前提: 使用docker-compose安装的mysql8.0,进入mysql仓库输入mysql -uroot -p123456 可以正常连接; 解决问题,直接看最底部解决方案即可!!! d……
    诺米 2022年10月31日
  • 虚拟机查看IP-bash: ifconfig: command not found
    前段技术

    虚拟机查看IP-bash: ifconfig: command not found

    -bash: ifconfig: command not found #ifconfig -bash: ifconfig: command not found # ip addr 发现,ens33 没有inet属性 ,需要配置一下,……
    诺米 2022年9月19日
  • WIN10家庭版 找不到Hyper-V的解决办法
    服务器

    WIN10家庭版 找不到Hyper-V的解决办法

    window10 家庭版发现无法找到hyper-v功能选项,其实这是window自动隐藏该功能,我想之所以认为是家庭版,那默认情况不需要该功能,但是往往我们买的电脑时系……
    诺米 2022年9月7日
  • npm install 时报错   Cannot read properties of null (reading ‘pickAlgorithm‘)
    vue

    npm install 时报错 Cannot read properties of null (reading ‘pickAlgorithm‘)

    问题背景nodejs 执行 npm install 时报错 “Cannot read properties of null (reading ‘pickAlgorithm‘)” 解决方法第一种执行npm cache clear --force清除……
    诺米 2022年9月2日
  • RocketMQ 4.7.1安装
    中间件

    RocketMQ 4.7.1安装

    一、在RocketMQ官网上找到下载RocketMQ 4.7.1的链接,下载和解压RocketMQ: # 下载 wget http://ftp.cuhk.edu.hk/pub/packages/apache.org/rocketmq……
    诺米 2022年8月10日
  • Fastjson低版本漏洞
    服务安全

    Fastjson低版本漏洞

    引言: 2022年5月23日,fastjson 官方发布安全通报,fastjson <= 1.2.80 存在反序列化任意代码执行漏洞,在特定条件下可绕过默认autoType关闭限制……
    诺米 2022年8月5日
  • vue适配自动跳转移动端页面
    vue

    vue适配自动跳转移动端页面

    update router.js import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/components/pc/HelloWorld' Vue.use(Router)……
    诺米 2022年8月4日
  • 生产环境上传文件大小限制与配置
    服务器

    生产环境上传文件大小限制与配置

    前提: 生产环境中,针对上传文件服务器时提示超时,或者控制台报上传图片大小超出限制,一系列问题,由于多年工作积累,建议在部署项目环境之前,需要提……
    诺米 2022年7月24日
  • docker容器迁移
    docker

    docker容器迁移

    把容器从一台服务器迁移到另一台服务器,分以下五个步骤1、容器打包成镜像 # docker commit -m “” -a “” [CONTAINER ID] [新的镜像名] ,其中-m和-a是可选参……
    诺米 2022年7月21日