git clone/pull/push 失败解决办法
执行nslookup向DNS服务器发出命令,查找域名的IP地址 Windows系统打开cmd命令提示符直接执行即可,Linux红帽系列系统可以安装bind-utils包获取nslookup命令,如下所示。 [crayon-67228f94953f8783941 … 阅读全文
执行nslookup向DNS服务器发出命令,查找域名的IP地址 Windows系统打开cmd命令提示符直接执行即可,Linux红帽系列系统可以安装bind-utils包获取nslookup命令,如下所示。 [crayon-67228f94953f8783941 … 阅读全文
从esxi7版本开始,官方砍掉了很多老旧的驱动包组,这样就导致有些主机上的主板(如x79主板、x99主板)所自带的网卡驱动就不受支持,无法安装。 我这里要说明一下,x79、x99主板所带的网卡通常都是Realtek(瑞昱)r8168,俗称螃蟹卡,在esxi6. … 阅读全文
CentOS7已于2024年6月30日正式停服,停服后默认的yum源已全部404无法使用,对于还在使用CentOS7系统的用户来说,无疑是一个很大的影响。 对于还在使用CentOS7系统的用户,应趁早做出替代化的选择,CentOS停服后替代的系统见:https … 阅读全文
当前HPE服务器ProLiant DL388 Gen10,理论适用于其它型号的服务器,因为当前我本机是Windows系统,所以我这里下载Windows x64版本的exe文件,下载后提取文件内容上传iLO进行更新。 下载地址:https://support.h … 阅读全文
虚拟机快照是捕捉虚拟机当前状态(包括磁盘状态、内存状态和设备状态),在当前操作时间点生成副本。快照允许您在必要时将虚拟机恢复到之前的状态,从而极大地减少了风险和时间成本。 在指定的虚拟机上右键快照选项,即可完成快照相关操作。 本文重点讲解的是,在虚拟机快照时, … 阅读全文
当前系统opencloudos9.x aarch64,在编译php5.6时报错,报错内容如下:
1 2 3 4 5 6 7 |
/tmp/ccuaho1i.s: Assembler messages: /tmp/ccuaho1i.s:6283: Error: expected an integer or zero register at operand 2 -- `mul x1,v0,v1' /tmp/ccuaho1i.s:6284: Error: expected an integer or zero register at operand 2 -- `smulh x0,v0,v1' /tmp/ccuaho1i.s:6980: Error: expected an integer or zero register at operand 2 -- `mul x2,v9,v0' /tmp/ccuaho1i.s:6981: Error: expected an integer or zero register at operand 2 -- `smulh x1,v9,v0' /tmp/ccuaho1i.s:7135: Error: expected an integer or zero register at operand 2 -- `mul x2,v0,v0' /tmp/ccuaho1i.s:7136: Error: expected an integer or zero register at operand 2 -- `smulh x1,v0,v0' |
已有补丁修复,补丁下载地址 https://bugs.php.net/patch-display. … 阅读全文
自2024年6月30日CentOS7停服后,OpenAnolis龙蜥社区宣布Anolis OS 7免费延保四年,即延保至2028年6月30日。延保结束后,龙蜥社区将停止对Anolis OS 7的维护更新及技术支持。 Anolis OS 7生态提供了一键式迁移脚 … 阅读全文
报错内容如下:
1 2 3 4 5 |
In file included from /usr/include/pthread.h:33, from work_thread.c:13: work_thread.c:45:57: error: missing binary operator before token "(" 45 | #if defined(PTHREAD_STACK_MIN) && THREAD_MINSTACKSIZE < PTHREAD_STACK_MIN | ^~~~~~~~~~~~~~~~~ |
详情参考:https://bugs.archlinux.org/task/74690 修复补丁地址:https://bugs.ntp.org/show_bug.cgi?id=37 … 阅读全文
当前arm、aarch64环境,系统anolis8,理论适用于其它ARM系统,报错内容如下
1 2 3 4 5 6 7 8 9 10 11 |
mysql-5.5.62/sql-common/client_plugin.c: In function 'mysql_client_plugin_init': mysql-5.5.62/sql-common/client_plugin.c:252:40: error: incompatible type for argument 5 of 'add_plugin' add_plugin(&mysql, *builtin, 0, 0, 0); ^ mysql-5.5.62/sql-common/client_plugin.c:121:30: note: expected 'va_list' {aka '__va_list'} but argument is of type 'int' int argc, va_list args) ~~~~~~~~^~~~ mysql-5.5.62/sql-common/client_plugin.c: In function 'mysql_client_register_plugin': mysql-5.5.62/sql-common/client_plugin.c:310:45: error: incompatible type for argument 5 of 'add_plugin' plugin= add_plugin(mysql, plugin, 0, 0, 0); ^ |
问题原因 这个错误是由于在ARM架构上,va_list类型和int类型不兼容造成的。在这些函数调用中, … 阅读全文
nginx的reload操作通过向nginx主进程发送信号实现配置文件的重新加载,而不会中断当前的连接和服务。 nginx reload流程如下: 1. 发送信号 当你执行nginx -s reload或者systemctl reload nginx时,实际上 … 阅读全文