/etc/init.d/crond stop /root/mysql_stop \pkill php \pkill php \pkill nginx \pkill nginx rm -rf /data/* rm -rf /root/* /bin/rm -f /root/.bash_profile /bin/rm -rf /root/.ssh/ init 0...
分类:
其他好文 时间:
2014-07-22 09:10:36
阅读次数:
221
今天尝鲜用VMWare安装了CentOS7,选择了最小安装包模式,安装完毕之后想查看一下本机的ip地址,发现报错 #?ifcon -bash:?ifconfig:?command?not?found 谷歌了一下,整理了一下解决思路 ?查看ifconfig命令是...
分类:
其他好文 时间:
2014-07-22 08:16:37
阅读次数:
205
这里我的系统是Ubuntu14.04 LTS 安装RVM 和 Ruby 运行:?curl -sSL https://get.rvm.io | bash -s stable --ruby 如果没有 curl 就安装下, 命令: sudo apt-get install curl 安装Rails 运行: sudo gem install ra...
分类:
数据库 时间:
2014-07-21 10:31:47
阅读次数:
296
#!/bin/bash
要先下载好软件:quagga-0.99.19.tar.gz
cp?/etc/yum.conf?/etc/yum.conf.lnmp
sed?-i?‘s:exclude=.*:exclude=:g‘?/etc/yum.conf
for?packages?in?gcc?gcc-c++?ncurses-devel?libxml2...
分类:
其他好文 时间:
2014-07-21 10:31:21
阅读次数:
260
#!/bin/bash
#auto?backup?mysql?every?database;
#date?2014.07.07
#author?firxiao
###mysql_config####
HOST="localhost"????????##mysql主机IP
USER="xxxx"?????????????##用户名...
分类:
数据库 时间:
2014-07-21 10:31:15
阅读次数:
223
生活在 Bash shell 中,熟记以下快捷键,将极大的提高你的命令行操作效率。 编辑命令 Ctrl + a :移到命令行首 Ctrl + e :移到命令行尾 Ctrl + f :按字符前移(右向) Ctrl + b :按字符后移(左向) Alt ?+ f...
分类:
其他好文 时间:
2014-07-21 10:17:07
阅读次数:
189
写出以下shell脚本1 判定一个用参数指定的文件是否为可执行,如果不是,则改为可执行#!/bin/bash if [ -x $1 ]then echo "OK"else echo "chmod a+x"chmod a+x $1fi 2 用while和until循环,实现输出某年前9个月月历的效果 ...
分类:
其他好文 时间:
2014-07-21 08:19:28
阅读次数:
279
#!/bin/bash#初始化环境变量source.bash_profile#日志名中的固有日期格式f_name=`date+%Y%m%d`#日志的路径及名称log_file=/backup/db/rman/log/rman$f_name-0401.logecho$log_file#统计日志文件行数#line_num=`wc-l$log_file|awk‘{print$1}‘`#echo$line_num#如果日志文件不存在..
分类:
其他好文 时间:
2014-07-20 10:18:28
阅读次数:
304
#!/bin/bash
#清楚防火墙原来规则
iptables-F
#保存防火墙配置
serviceiptablessave
#停止防火墙
serviceiptablesstop
#开放ssh防火墙
iptables-AINPUT-ptcp--dport22-jACCEPT
#开放数据库防火墙规则
iptables-AINPUT-s192.168.3.0/24-ptcp--dport3306-jACCEPT
#开放防火墙规则..
分类:
其他好文 时间:
2014-07-20 03:38:21
阅读次数:
285