
从0开始学运维
冰峰雪岭
如人饮水,冷暖自知。
展开
-
nginx启动
使用service nginx start: 需要添加一个脚本: /etc/init.d/nginx 然后nginx配置中启用nginx的daemon on 再chkconfig nginx on,开机自动启动; 或者 echo “service nginx start ”>>/etc/rc.local (这是使用者自订开机启动程序)原创 2016-06-07 15:24:54 · 588 阅读 · 0 评论 -
nginx FastCGI错误Primary script unknown解决办法
在centos上成功编译安装nginx 1.4、php 5.4并成功启动nginx和php-fpm后,访问php提示"File not found.",同时在错误日志中看到: 复制代码代码如下: 2013/10/22 20:05:49 [error] 12691#0: *6 FastCGI sent in stderr: "Primary script unknown" while原创 2016-06-07 17:56:51 · 2454 阅读 · 0 评论 -
清除history内容
history记录是记录在~/.bash_history中的 history -c 清除的是当前会话的记录,原来的记录是不会被清除的 可以直接删除.bash_history,清空这个文件cat /dev/null >.bash_history。原创 2016-09-18 19:02:46 · 1538 阅读 · 0 评论 -
将php和mysql加入到环境变量中
本文转自:http://www.centoscn.com/CentOS/config/2015/0306/4809.html 方法一:直接运行命令export PATH=$PATH:/usr/local/webserver/php/bin 和 export PATH=$PATH:/usr/local/webserver/mysql/bin 使用这种方法,只会对当前会话有效,也就是说每当登出转载 2016-11-09 16:07:02 · 901 阅读 · 0 评论 -
tail -f :无法监视"20161211.log":设备上没有空间
本文出自 “隐林之路” 博客,请务必保留此出处http://wxinhe.blog.51cto.com/6924993/1436437 操作系统环境: LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4转载 2016-12-07 12:13:06 · 2740 阅读 · 0 评论 -
:>/dev/null 2>&1 的作用
本文转自:http://wangqiaowqo.iteye.com/blog/1354226 shell中可能经常能看到:>/dev/null 2>&1 命令的结果可以通过%>的形式来定义输出 /dev/null 代表空设备文件 > 代表重定向到哪里,例如:echo "test" > /tmp/test.txt 1 表示stdout标准输出,系统默认值是1,所以">/de转载 2016-12-09 16:11:02 · 359 阅读 · 0 评论