nginx 出现an upstream response is buffered to a temporary file

今天检查机器运行情况的时候在日志里看到这么一条:

2017/02/14 11:25:05 [warn] 32254#32254: *34 an upstream response is buffered to a temporary file /var/cache/nginx/fastcgi_temp/3/00/0000000003 while …
点击查看更多…

把exe做成windows服务

1. 修改注册表 在“开始→运行”中键入“regedit.exe”,打开“注册表编辑器”,展开分支“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services”
2. 在右侧窗格中显示的就是本机安装 …
点击查看更多…

Nginx 配置虚拟主机

  1. 当前nginx的版本
[root@localhost ~]# nginx -v
nginx version: nginx/1.10.3
2. 查看nginx 目录结构
[root@localhost ~]# cd /etc/nginx/
[root@localhost nginx]# tree ../nginx
../nginx
├── conf.d
│   ├── default.conf
│   └── default.conf.rpmsave
├── fastcgi_params
├── koi-utf
├── koi-win
├── mime.types
├── modules -> ../../usr/lib64/nginx/modules
├── nginx …
点击查看更多…

阿里云 ECS 升级内核

在更新系统的软件包时,发现如下错误:

[root@www]# yum -y update
Loaded plugins: fastestmirror
Setting up Update Process
Determining fastest mirrors
.
.
.
Error: Package: util-linux-ng-2.17.2-12.24.el6_8.1.x86_64 (updates)
           Requires: kernel >= 2.6.32-642
           Installed: kernel-2.6.32-279 …
点击查看更多…

ubuntu 命令行修改提示符

image1

修改.bashrc

# vim /root/.bashrc

找到

PS1='${debian_chroot:+($debian_chroot)}\A\u@\h:\W\#\$ '
export PS1='\[\e[30;0m\]\u@\h \w \$: '
代码的格式可以自定义,下面是网上找的:
转移符的意思:
/d :代表日 …
点击查看更多…