作者归档:salmonl

关于salmonl

成长,长成自己的样子。微博@动机在北京,欢迎来玩~

Linux系统用户管理之禁止用户登录

一、问题描述

今天在CentOS上切换用户的时候提示This account is currently not available

su elasticsearch
This account is currently not available.

开始并没有理解这句话,想当然的认为是用户不存在。

注:用户不存在的提示是user does not exist

su elasticsearch2
su: user elasticsearch2 does not exist

继续阅读

Docker常见问题整理笔记(一)

一、容器启动后一直处于restarting状态

0、问题常见

docker ps
CONTAINER ID        IMAGE                                                              COMMAND                CREATED             STATUS                          PORTS               NAMES
af3e886c69ea        registry.api.weibo.com/weibo/weibo_tech_pop.filebeat.image:5.6.1   "/usr/share/filebeat   18 minutes ago      Restarting (-1) 5 minutes ago                       voteshield_filebeat_container
79d06f50192c        registry.api.weibo.com/weibo/weibo_tech_pop.php71.image:1.8        "/usr/local/sinasrv2   9 months ago        Up 3 weeks                                          php_container

继续阅读

Python中协程实现学习笔记

最近在看协程这个话题,完全处于好奇,简单了解了下Python中的表示形式,这里仅仅是对Python中的协程很浅很浅的了解。

一、Python中的协程背景

0、Python3.4之前官方不支持协程(第三方的库支持gevent、Tornado)。

1、3.4版本内置了异步I/O库asyncio, 通过装饰器@asyncio.coroutine和yield from表达式实现协程。
继续阅读

PHP中协程实现学习笔记

第一部分 什么是协程(Coroutine)

一、概念
0、先来看看Wikipedia Coroutine上的定义(Wikipedia协程中文定义):
Coroutines are computer program components that generalize subroutines for non-preemptive multitasking, by allowing execution to be suspended and resumed。

1、再来看看Wikipedia Routine定义中Coroutine的描述
Coroutine, generalized reentrant computer subroutine having multiple entry points(协程,具有多个入口点的广义可重入计算机子例程
)
继续阅读

PHP中生成器学习笔记

之前的一篇文章我们记录了PHP的迭代器(《PHP迭代器学习笔记》),今天进一步了解下PHP的生成器。

一、什么是生成器
先来看看wikipedia关于generator的定义:
In computer science, a generator is a routine that can be used to control the iteration behaviour of a loop. All generators are also iterators.[1] A generator is very similar to a function that returns an array, in that a generator has parameters, can be called, and generates a sequence of values. However, instead of building an array containing all the values and returning them all at once, a generator yields the values one at a time, which requires less memory and allows the caller to get started processing the first few values immediately. In short, a generator looks like a function but behaves like an iterator.

是不是感觉很抽象,我们先看看他在PHP中的具象呈现,然后再回头反复看看上面的定义,你可能就不会那么困惑了。

0、直观概念
生成器在PHP中直观表现是一个自定义的函数,这个函数的功能是遍历对象,往往也叫生成器函数(generator function)。
继续阅读

PHP操作MySQL设置读写超时实践笔记

前一段时间遇到了一个线上慢查询故障,导致应用返回504, 最终通过优化索引彻底解决了问题。后来就想,可不可以设置一个功能自动降级机制,如果查询时间过长,就自动断开,隐藏相关功能模块。做了一下调查,通过设置MySQL查询超时就可以满足这个自动降级机制。

PDO扩展可以设置读超时,MySQLi可以设置读写超时。

继续阅读

Git常用命令整理六(创建分支的子分支)

在实际开发中遇到了这样一个问题:

团队的成员在一个fetaure branch上做一期开发,目前开发中,还需要一段时间上线。现在需要在fetaure branch功能的基础上做二期开发,二期会晚于一期上线,同时fetaure branch还在提交。

解决思路大概就是创建分支的子分支,网上很多资料都是如何创建,其实比较重要的是如何合并回去,合并会不会有风险。

这也是这篇文章讨论的重点,基于实际的测试。
继续阅读