解决yarn install报错:error @achrinza/node-ipc@9.2.2: The engine “node“ is incompatible

解决yarn install报错:error @achrinza/node-ipc@9.2.2: The engine “node“ is incompatible

解决yarn install报错:error @achrinza/node-ipc@9.2.2: The engine “node“ is incompatible解决办法:yarn config set ignore-engines true

Vue 2024-03-16 AM 74℃ 0条
Ubuntu 20.04 下 部署 SoftEther vpnclient

Ubuntu 20.04 下 部署 SoftEther vpnclient

1、解压 tar -xvf vpnclient 2、安装 cd vpnclient make3、启动 sudo ./vpnclient start4、RemoteEnable/RemoteDisable:允许/禁止 远程管理5、输入以下命令来更改IP地址:ip addr add 192.168.8.99/24 dev vpnvpn6、在Linux中,可以使用以下命令添加永久路由: sudo route add -net 目标网络 netmask 子网掩码 gw 网关

技术分享 2024-01-28 PM 249℃ 0条
win 宝塔bt  composer

win 宝塔bt composer

7、关闭掉面板中php所禁止的几个函数putenv()proc_open()proc_get_status()

技术分享 2023-04-13 PM 677℃ 0条
xampp中MySQL启动失败解决方法

xampp中MySQL启动失败解决方法

解决方法参考https://stackoverflow.com/questions/56847804/xampp-mysql-service-crash-after-reboot1、点击xampp面板上的Shell按钮进入命令框,输入命令:mysqld –-console –-skip-grant-tables –-skip-external-locking2、第一个cmd命令行窗口不关闭,重新在面板上点开一个Shell,再次输入指令:mysqlcheck -r --databases mysql --use-frm等命令窗口不再变化,再关闭命令窗口,重新启动xampp,重启mysql,...

技术分享 2023-04-08 PM 766℃ 0条
宝塔面板安装composer后报错

宝塔面板安装composer后报错

PHP Fatal error: Uncaught Error: Call to undefined function Composer\XdebugHandler\putenv() in phar:///usr/bin/composer/vendor/composer/xdebug-handler/src/Process.php:149 ...其他更多,由于php版本禁用了函数导致删除禁用函数宝塔面板默认禁用一些安装 Composer 要用到的 3 个函数如下:putenv() 、 pcntl_signal() 、 proc_open(), “PHP管理”→“禁用函数”→“删除pute...

PHP 2023-03-16 AM 1028℃ 1条
CentOS下nohup命令

CentOS下nohup命令

后台运行 nohup ./duibi.sh >> ./duibi.log 2>&1 &ps -aux | grep "duibi.sh" #a:显示所有程序 u:以用户为主的格式来显示 x:显示所有程序,不以终端机来区分kill 或 kill -9 终止进程;一般情况下,-9可以马上杀死进程,没有任何阻塞

技术分享 2023-03-02 PM 746℃ 0条
centos8  softether 虚拟网卡配置(配置固定IP)

centos8 softether 虚拟网卡配置(配置固定IP)

ifconfig vpn_vpn 192.168.130.88/24

技术分享 2023-02-08 PM 697℃ 0条
CentOS8防火墙相关命令

CentOS8防火墙相关命令

一、下面是red hat/CentOS8防火墙相关命令1.启动firewalld服务systemctl start firewalld.serviceservice iptables status2.暂时关闭firewalld服务systemctl stop firewalld.serviceservice iptables stop3:永久关闭防火墙systemctl disable firewalldchkconfig iptables off4.重启firewalld服务systemctl restart firewalld.serviceservice iptables re...

技术分享 2023-02-08 PM 701℃ 0条
centos8下安装gcc11

centos8下安装gcc11

最近的云服务器使用的centos8,c以前编译器对c++20的新特性支持的较少,当前最新版的gcc对c++20的支持还是可以的,于是准备体验一下,首要就是升级gccgcc官网:https://gcc.gnu.org/各编译器对C++20特性的支持可以参考:https://www.apiref.com/cpp-zh/cpp/compiler_support/20.html1.更新yum源为阿里云的源wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo2.centos8下,...

技术分享 2023-02-08 PM 792℃ 0条
ORA-12545:连接失败,因为Mac - SQLPLUS中不存在目标主机或对象(ORA-12545: Connect failed because target host or object does not exist in Mac - SQLPLUS)

ORA-12545:连接失败,因为Mac - SQLPLUS中不存在目标主机或对象(ORA-12545: Connect failed because target host or object does not exist in Mac - SQLPLUS)

我在下面设置了环境变量并创建了tnsnames.ora。export ORACLE_HOME=/opt/oracle/instantclient export DYLD_LIBRARY_PATH=$ORACLE_HOME export LD_LIBRARY_PATH=$ORACLE_HOME export NLS_LANG=AMERICAN_AMERICA.UTF8 export TNS_ADMIN=~/etc export PATH=$PATH:$ORACLE_HOME export ORACLE_SID=myDB 我不知道为什么我会收到这个错误。 下面是〜/ etc位置下的...

技术分享 2023-01-14 AM 1017℃ 0条