标签:init

linux下查看占用io的进程

蓝鹰 | CentOS | 2015-10-28
linux下查看占用io的进程 内核2.6.2以上的版本使用iotop 抓哪个进程干坏事前要先停掉rsyslog /etc/init.d/rsyslog stop echo 1 > /proc/sys/vm/block_dump dmesg | egrep "READ|WRITE|dirtied" | egrep -o '([a-zA-Z]*)' | sort | uniq -c | sort -rn | head 1423 kjournald 1075 pdflush 209 indexer 3 cronolog 1 rnald 1 mysqld 不要忘记在抓完之... [阅读全文]
ė0 浏览数 6linux下查看占用io的进程已关闭评论 0, , , , , , ,

CISCO VPN出现“Failed to initialize connection subsystem”错误

蓝鹰 | ANYCONNECT | 2015-10-22
最近把系统换成了windows 10 Technical Preview版本,可以正常安装Cisco VPN(Cisco VPN版本anyconnect-win-3.0.5080-pre-deploy-k9),启动后出现“Failed to initialize connection subsystem”错误。 解决方法: “右击”,打开VPN的“属性” — “兼容性”,“兼容模式”中勾上“以兼容模式运行这个程序”,下拉菜单选择“windows 7”,并勾上“以管理员身份... [阅读全文]
ė0 浏览数 6CISCO VPN出现“Failed to initialize connection subsystem”错误已关闭评论 0,

wdcp ftp 530 错误处理办法

蓝鹰 | WDCP | 2014-12-09
1, 先查看下PID文件是否存在   cat /var/run/pure-ftpd.pid cat: /var/run/pure-ftpd.pid: No such file or directory 如果提示没有文件按以下步骤进行: 查找PID ps -ef | grep pure 删除PID kill -9  PID 再启动服务 /etc/init.d/pureftpd start 再次查看,有PID了就恢复正常了 cat /var/run/pure-ftpd.pid 14883 [阅读全文]
ė5 浏览数 6wdcp ftp 530 错误处理办法已关闭评论 0, , , ,

解决在make xcache时出现的错误

蓝鹰 | CentOS | 2014-11-13
上午在给php安装xcache插件时碰到的错误: /usr/include/php/ext/date/lib/timelib_structs.h:24:28: error: timelib_config.h: No such file or directory /root/xcache-1.3.0/xcache.c:2959: warning: initialization discards qualifiers from pointer target type make: *** [xcache.lo] Error 1 从错误的表面上看,仿佛是找不到timelib_config.h... [阅读全文]
ė3 浏览数 6解决在make xcache时出现的错误已关闭评论 0, , , ,

centOS 开机自启动配置方法

蓝鹰 | CentOS | 2014-09-23
centOS 配置开机自启动两种方式: 1.vi /etc/rc.d/rc.local 在此文件中加入启动的脚本 2.chkconfig 增加自己的脚本 –add –list –del 步骤: 1.自己定义脚本格式如下: 必须添加的 #!/bin/sh #chkconfig: 2345 80 80 #description: auto start web server 第一句:必须的 声明sh 第二句:必须的 2345 表示linux 有 0-6种状态 在2345下... [阅读全文]
ė2 浏览数 6centOS 开机自启动配置方法已关闭评论 0, ,

linux下防止ssh暴力破解的方法

蓝鹰 | CentOS | 2014-06-07
今天在盛大云看到一个不错的防止ssh暴力破解的帖子,转过来和大家分享下,主要是依靠denyhost软件。稳重所讲的是下载安装包安装,实际上可以从直接使用yum或者apt安装,找到相应的源就可以。下边是帖子原文: DenyHosts官方网站为:http://denyhosts.sourceforge.net 1. 安装 # tar -zxvf DenyHosts-2.6.tar.gz # cd DenyHosts-2.6 # python setup.py i... [阅读全文]
ė126 浏览数 6linux下防止ssh暴力破解的方法已关闭评论 0, , , , , ,

php版爱站关键词采集器

蓝鹰 | 杂类其它 | 2014-06-05
<?php header("Content-type: text/html; charset=utf-8"); $word=$_GET['word']; $username = "****@163.com";//你的爱站账户 $passwd = "***";//你的爱站密码 $login_url = "http://www.aizhan.com/login.php"; $user_agent = "Mozilla/5.0 (Windows NT 6.2; rv:17.0) Gecko/20100101 Firefox/17.0"; //获取sessionid $session_header =... [阅读全文]
ė75 浏览数 6php版爱站关键词采集器已关闭评论 0, , , ,

php_screw加密安装教程

蓝鹰 | 杂类其它 | 2014-06-05
下载:http://pan.baidu.com/share/link?shareid=180128&uk=704879932 安装 1.用tar解压缩 tar -zxvf php_screw-1.5.tar.gz 2.进入php_screw-1.5目录开始安装 cd php_screw-1.5 phpize 关于phpize ,它在php5-dev扩展模块中 只要安装php5-dev模块就行了。 ./confiugre 3.设置自己用来加密的密码 vi my_screw.h – Please change the encryption... [阅读全文]
ė64 浏览数 6php_screw加密安装教程已关闭评论 0, , , , , , , , , , , ,

centos6 vnc到gnome桌面不显示桌面解决方案

蓝鹰 | CentOS | 2014-04-23
修改配置文件/root/.vnc/xstartup #!/bin/sh unset SESSION_MANAGER exec /etc/X11/xinit/xinitrc #[-x /etc/vnc/xstartup]]&& exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & xterm -gemetry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & #twm ... [阅读全文]
ė133 浏览数 6centos6 vnc到gnome桌面不显示桌面解决方案已关闭评论 0, , , , , ,

重装了系统,怎么恢复wdcp和网站数据?

蓝鹰 | WDCP | 2013-11-28
两个方法 1 不用重装 ln -s /www/wdlinux/init.d/mysqld /etc/rc.d/init.d/mysqld ln -s /www/wdlinux/init.d/nginxd /etc/rc.d/init.d/nginxd ln -s /www/wdlinux/init.d/httpd /etc/rc.d/init.d/httpd ln -s /www/wdlinux/init.d/pureftpd /etc/rc.d/init.d/pureftpd ln -s /www/wdlinux/init.d/wdapache /etc/rc.d/init.d/wdapache /www/wdlinux/wdp... [阅读全文]
ė197 浏览数 6重装了系统,怎么恢复wdcp和网站数据?已关闭评论 0, , , , ,
Ɣ回顶部