运维监控
iteye_1291
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
查看系统端口
[quote] netstat -nutlp [/quote]原创 2012-07-11 13:46:21 · 146 阅读 · 0 评论 -
ubuntu+nginx+nagios搭建
1,软件环境 [code="java"] Ubuntu 12.04 LTS nginx/1.1.19 Nagios Core 3.2.3 PHP 5.3.10-1ubuntu3.2 with Suhosin-Patch PHP 5.3.10-1ubuntu3.2 (fpm-fcgi) [/code] 2,安装软件 [code="java"] apt-get install ...原创 2012-07-11 14:06:09 · 131 阅读 · 0 评论 -
ubuntu系统文件打开数调到65535
1,查看系统默认文件打开数 [code="java"] root@ubuntu:/# ulimit -n 1024 [/code] 2,命令修改文件打开数,达到65535 [code="java"] root@ubuntu:/# ulimit -HSn 65535 root@ubuntu:/# ulimit -n 65535 [/code] 退出session,再连接...原创 2012-03-14 17:01:02 · 556 阅读 · 0 评论 -
通过ssh协议连接linux系统的android应用
推荐给辛苦的运维人员一个Android的应用 Irssi Connect 使用效果如下 [img]http://dl.iteye.com/upload/attachment/0064/8316/7caef4c8-1e32-38d2-8889-2d9fbfc0a8b9.png[/img] 这样,运维人员不管何时,在哪儿都可以上服务器进行操作 解决了那些经常半夜爬起来,修...原创 2012-03-14 17:12:53 · 190 阅读 · 0 评论 -
关于nginx做为文件下载服务的一套配置
直接贴配置,希望大家多给建议 nginx 基本信息 [code="java"] root@ubuntu:/# nginx -V nginx: nginx version: nginx/1.0.5 nginx: TLS SNI support enabled nginx: configure arguments: --prefix=/etc/nginx --conf-path=/...原创 2012-03-14 17:26:36 · 158 阅读 · 0 评论 -
关于top使用
语 法:top [bciqsS][d ][n ] 补充说明:执行top指令可显示目前正在系统中执行的程序,并通过它所提供的互动式界面,用热键加以管理。 参 数: b 使用批处理模式。 c 列出程序时,显示每个程序的完整指令,包括指令名称,路径和参数等相关信息。 d 设置top监控程序执行状况的间隔时间,单位以秒计算。 i 执行top指令时,忽略闲置或是已成为Zombie的程...原创 2012-03-14 17:32:52 · 221 阅读 · 0 评论 -
iostat,vmstat,netstat使用心得
1,iostat 反映了磁盘I/O、CPU自系统启动至现在的活动状态 全称 Input Output statistics 语法: iostat interval count option - 让你指定所需信息的设备,像磁盘、cpu或者终端(-d , -c , -t or -tdc ) 。x 选项给出了完整的统计结果(gives the extended statistic)...原创 2012-03-14 18:37:13 · 371 阅读 · 0 评论 -
nginx 的 echo 模块 —— echo-nginx-module
在代理内容前后追加内容 [code="java"] location /echo { echo_before_body hello; echo_before_body world; proxy_pass http://www.baidu.com; echo_after_body hiya; echo_after_body igor; } [/code] 包...原创 2012-03-30 19:17:04 · 166 阅读 · 0 评论
分享