因为Ubuntu18.04默认的openssl版本就是1.1.0, 而PHP5.6无法在openssl 1.1下编译 "PHP 5.6 is receiving only security fixes and OpenSSL 1.1 is not supported. Please use PHP ...
分类:
Web程序 时间:
2018-11-12 14:49:59
阅读次数:
436
Error:git@github.com: Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct access rightsan ...
分类:
其他好文 时间:
2018-11-10 23:48:47
阅读次数:
244
不多说,直接上干货! 解决办法1: 地址:http://stackoverflow.com/questions/38423925/ambari-confirm-hosts-step-fails-registration-with-the-server-failed 说明:中文和英文操作系统版本问题, ...
分类:
其他好文 时间:
2018-11-10 22:38:52
阅读次数:
1468
1 #include 2 int main(void) 3 { 4 int i, j, t, a[11]; 5 6 printf("please input 10 numbers:\n"); 7 8 for(i = 1;i a[j+1]) 14 { 15 t = a[j]; 16 ... ...
分类:
编程语言 时间:
2018-11-10 10:46:26
阅读次数:
147
#脚本编辑 #!/bin/bash #定义变量 num1=$1num2=$2 #判断是否输入两个参数,若是,将两个参数传递给下一个指令动作,若非两个参数,则打印输出内容输出并且退出exit脚本不执行下一个指令if [ $# -ne 2 ] ;then echo 'please input num1 ...
分类:
系统相关 时间:
2018-11-10 00:58:14
阅读次数:
210
直接用valgrind检测使用dpdk库的程序可能会报错 如: ERROR: This system does not support "RDRAND". Please check that RTE_MACHINE is set correctly. 解决办法: 禁用CPUd RDRAND 修改mk ...
分类:
其他好文 时间:
2018-11-09 00:48:38
阅读次数:
501
#include int main() { int n; int *a, *b,*t; int i,k; int sa=0; int result=1000000; printf("please input the number of tasks:\n"); scanf("%d",&n); ... ...
分类:
其他好文 时间:
2018-11-04 23:00:24
阅读次数:
218
什么是触发器 触发器是一种由事件自动触发执行的特殊存储过程,这些事件可以是对一个表进行 INSERT、UPDATE、DELETE 等操作。 触发器经常用于加强数据的完整性约束和业务规则上的约束等。 创建触发器 创建触发器的语法如下: 创建触发器的步骤: 先为触发器建一个执行函数,此函数的返回类型为触 ...
分类:
数据库 时间:
2018-11-04 11:17:11
阅读次数:
222
交通灯汇编代码: C语言版: / 交通灯实验 实现现象:下载程序后,按照视频操作正确接线,呈现交通灯现象 注意事项: / include "reg52.h" //此文件中定义了单片机的一些特殊功能寄存器 typedef unsigned int u16; //对数据类型进行声明定义 typedef ...
分类:
其他好文 时间:
2018-11-03 17:29:56
阅读次数:
211