Only to find a successful way, not to find excuses for failure!
发布时间:2013-04-27 23:45:42
批量管理Linux系统服务#!/bin/sh#关闭所有系统服务for i in `chkconfig --list |awk '{print $1}'`;do chkconfig $i off;echo chkconfig $i off;done#开启指定的服务for i in crond network iptables messagebus udev-post ntpd sshd rsyslog sysstat;do chkconfig $i --level 3 on;echo chkconfig $i --l.........【阅读全文】
发布时间:2013-04-11 00:07:23
OS:centos 5.6 x321.添加源wget -q -O - http://www.atomicorp.com/installers/atomic | sh2.排除php5.3的包,我们只需要php5.2.17vim /etc/yum.conf exclude=*5.3.* 3.安装yum install php php-cli php-gd php-mysql php-eaccelerator \ php-zend-optimizer php-pear php-snmp php-bcma.........【阅读全文】
发布时间:2013-04-09 14:24:59
1. 注册服务: path\instsrv 服务名 path\srvany.exe -------- 将srvany.exe 注册成系统服务 2. .........【阅读全文】
发布时间:2013-04-01 14:28:54
/usr/local/mysql/bin/mysql -u root -p (进入mysql) use mysql; SELECT `Host`,`User` FROM user; UPDATE user SET `Host` = '%' WHERE `User` = 'root' LIMIT 1; flush privi.........【阅读全文】