码迷,mamicode.com
首页 >  
搜索关键字:nginx 启动出错 error while loading shared libraries: libpcre.so.1    ( 89357个结果
PPT写作技巧
...
分类:其他好文   时间:2021-07-29 16:19:35    阅读次数:0
centos7 修改时间
2021-07-28 查看日志时发现系统时间不正确,故修改时间 # 查看当前系统时间 date # 修改当前系统时间 date -s "2021-7-28 17:03:00" # 查看硬件时间 hwclock --show # 修改硬件时间 hwclock --set --date "2021-7- ...
分类:其他好文   时间:2021-07-28 21:37:03    阅读次数:0
hbase-16-写入流程
Hbase 写入流程大致分为三个步骤: 1.客户端请求 首先在meta cache 根据rowKey查找该rowKey对应的Region Server,如果有则直接发送请求到RegionServer。 如果客户端缓存中没有查到对应的rowkey信息,需要首先到ZooKeeper上/hbase-roo ...
分类:其他好文   时间:2021-07-28 21:35:55    阅读次数:0
TypeError: ('Keyword argument not understood:', 'input')
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:其他好文   时间:2021-07-28 21:23:54    阅读次数:0
C语言常用函数-isspace()判断字符是否为空白字符函数
演示版本 VS2013 isspace()函数 isspace()函数用于判断字符是否为空白字符。 语法 int isspace(int ch); isspace()函数的语法参数说明如下: 参数ch为一个待检查的字符。 isspace()函数的返回值:不是空白字符返回0,是则返回非0。 示例 本示 ...
分类:编程语言   时间:2021-07-28 21:23:23    阅读次数:0
Archlinux爬坑指南
本文会在日常的使用中,不断更新,汇总问题。 前文链接ArchLinux安装步骤(一) 前文链接ArcnLinux安装基础配置(二) 前文链接ArchLinux安装常用软件QQ、TIM、微信等常用软件(三) 本文问题描述中提到的时间,都是指出现bug的时间。现象是复现bug的操作。 安装jetbrai ...
分类:系统相关   时间:2021-07-27 17:37:31    阅读次数:0
基于Docker搭建 Php-fpm + Nginx 环境
1、拉取nginx镜像,以及php-fpm镜像 docker pull nginx:1.16.0 docker pull php:5.6.40-fpm 2、分别创建nginx 容器php-fpm 容器 # 这里最后吧 /etc/nginx/conf.d 目录和存放静态资源文件的目录挂载到宿主机上来 ...
分类:Web程序   时间:2021-07-27 17:31:51    阅读次数:0
nginx + http + svn
安装certbot 安装 certbot 为免费证书做准备 yum install certbot python2-certbot-nginx 安装 svn 安装svn yum install svn 创建svn库 # 创建库 svnadmin create /var/svn/data # 授权ap ...
分类:Web程序   时间:2021-07-27 17:31:33    阅读次数:0
统一返回数据格式
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:其他好文   时间:2021-07-27 17:30:58    阅读次数:0
ClickHouse的JDBC连接
1、增加依赖 <dependency> <groupId>ru.yandex.clickhouse</groupId> <artifactId>clickhouse-jdbc</artifactId> <version>0.1.54</version> </dependency> 2、代码实现 pu ...
分类:数据库   时间:2021-07-26 16:47:51    阅读次数:0
89357条   1 2 3 4 ... 8936 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!