小p的成长历程


在遙遠的地方 一切虔誠終必相遇

web服务超时处理

事由 执行285675条mysql数据操作的时候,页面出现nginx异常An error occurred.报错。查看日志,详情如下: 2019/09/06 14:32:46 [error] 9#9: *7 upstream timed out (110: Connection timed ...

elasticsearch学习

安装 下载相应版本 https://www.elastic.co/cn/downloads/elasticsearch 配置 1、修改配置,其他主机可以访问,单节点部署 vim config/elasticsearch.yml 其他配置:https://www.cnblogs.com...

基于frp,gitlab的docker镜像实现本地gitlab外网访问(一)

基础 会git的基本操作 会docker和docker-compose的基本操作 基于gitlab的docker镜像安装内网git仓库 1、这里docker-compose管理安装 然后在当前目录运行docker-compose up,...

基于slim框架搭建Oauth2

官方文档和官方源 Oauth2源:https://github.com/thephpleague/oauth2-server Slim源:https://github.com/slimphp/Slim 待更新

搭建私有的Composer Packagist

官方文档和官方源 官方文档:https://getcomposer.org/doc/articles/handling-private-packages-with-satis.md github地址:https://github.com/composer/satis 下载源 方法一...

unix bash快捷键

Linux/Unix下Shell快捷键操作集合 快速搜索 1) ctrl + r 组合键来进入历史搜索模式在history表中查询某条过往指令,找到需要重复执行的命令后,按回车键即可。 2) !!:重复执行上一条指令 3) !a:重复执行上一条以a为首的指令 4) !num...

gitlab搭建和数据迁移

Ubuntu 搭建 gitlab 官网安装介绍: https://about.gitlab.com/install/ github: https://github.com/gitlabhq/gitlabhq 1.首先是安装一些依赖服务 sudo apt-get install curl op...

mysql联合索引

mysql联合索引中 1、select * from table where a=1, b=2 2、select * from table where b=1, a=2 3、select * from table where b=1 以上哪一句不会触发索引?为什么? 答曰:...