npm 淘宝镜像到期,error An unexpected error occurred: “https://registry.npm.taobao.org

起因:今天周一,下载新依赖的时候报错。error An unexpected error occurred: "https://registry.npm.taobao.org/naive-ui: certificate has expired".在 1 月 22 日,淘宝原镜像域
2024年12月16日 222次浏览

mvn 打包报错 Cannot run program "gpg.exe": CreateProcess error=2, 系统找不到指定的文件

报错详细内容:Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:1.6:sign (sign-artifacts) on project jim: Unable to execute gpg command: Error
2024年12月15日 310次浏览

Docker Desktop 安装 redis stack server

带密码docker run --name redis-stack -p 8001:8001 -p 6379:6379 -e REDIS_ARGS="--requirepass xxx" redis/redis-stackdocker update redis-stack --re
2024年12月13日 219次浏览

Ubuntu 界面崩溃修复

方法就是卸载旧的图形界面软件,然后再重新安装。输入以下命令以更新系统:sudo apt-get updatesudo apt-get upgrade卸载图形界面相关的软件sudo apt-get autoremove ubuntu-desktop卸载安装图形界面软件时出现的依赖,安装图形界面软件:s
2024年09月25日 304次浏览

解决ubuntu中非root权限程序禁用1024以下端口

在/etc/sysctl.conf文件中输入末尾追加net.ipv4.ip_unprivileged_port_start=0即可echo -e "#允许普通用户使用1024以下端口号\nnet.ipv4.ip_unprivileged_port_start=0" | sudo
2024年09月11日 317次浏览

Java读取linux本地字体 缺失 Fontconfig head is null

异常问题2023-11-30 02:46:36.395 [http-nio-13700-exec-3] ERROR o.a.c.c.C.[.[.[/xxx].[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet]
2024年09月09日 476次浏览

ORA-01950: no privileges on tablespace 'USERS'--解决办法

ERROR at line 1:ORA-01950: no privileges on tablespace 'USERS'原因: 在表空间“USERS”无权限解决办法:用户登录,查看当前用户所属表空间:select username,default_tablespace from dba_user
2024年03月13日 631次浏览

升级到ubuntu22重启后提示something has gone wrong

1.新建一个terminalCtrl-Alt-F32.调整terminal字符为英文export LANGUAGE="en_US:en"3.配置安装软件包dpkg --configure -a4.更新包apt upgrade5.reboot
2024年03月05日 585次浏览

linux 添加vmware开机自启动虚拟机的脚本

(一)、编写脚本vmrun.sh,脚本内容如下:[root@localhost ~]# vi vmrun.sh#!/bin/sh#chkconfig: 2345 80 90#description:开机自动启动的脚本程序#启动vm虚拟机服务/usr/bin/vmrun start "/va
2024年02月26日 698次浏览

后台运行—nohup及2>&1详解

一. 代码nohup python my.py >> /usr/local/python/xxf/my.log 2>&1 &nohup tomcat.sh > /dev/null 2>&1 &二.nohup命令nohup指不断地运行,是n
2024年01月08日 632次浏览