
problem
一只猫-
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nfs挂载错误wrong fs type, bad option, bad superblock
错误: [root@localhost sbin]# mount -o credentials=/root/smbpass,sec=ntlmssp,multiuser //172.25.254.223/smbshare /mnt/multiuser mount: wrong fs type, bad option, bad superblock on //172.25.254.223/smbsh...转载 2018-08-22 21:39:28 · 810 阅读 · 0 评论 -
编译安装PHP,解决问题 Don't know how to define struct flock on this system, set --enable-opcache=no
configure: error: Don't know how to define struct flock on this system, set --enable-opcache=no 虽然提示了 关闭这个选项,但要搞清楚这个能不能关闭。 查看--enble-opchahe的作用 [root@lnmp php-5.6.10]# ./configure --help|grep opc...转载 2018-10-16 20:10:55 · 3491 阅读 · 0 评论 -
Redis 安装报错 error: jemalloc/jemalloc.h: No such file or directory解决方法
Redis 安装报错 error: jemalloc/jemalloc.h: No such file or directory解决方法 错误描述 安装Redis 2.8.18时报错: zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory zmalloc.h:55:2: error: #error "...转载 2018-10-30 20:18:13 · 189 阅读 · 0 评论 -
统计nginx日志里访问次数最多的前十个IP,根据cdn原理,如何判断cdn供应商好坏,用户反映网站速度太慢,检查可能出现的原因
1.统计nginx日志里访问次数最多的前十个IP [root@foundation61 ~]# awk '{print $1}' access.log | sort | uniq -c | sort -nr -k1 | head -n 10 3 125 2 126 1 145 1 124 1 123 1 122 ...原创 2019-03-09 12:31:53 · 1256 阅读 · 0 评论