linux常用命令ps aux|grep xxx (比如 ps aux|grep tomcat ps aux|grep tomcat-portalvip ps aux|grep nginx 等)rpm -qa|grep xxx (查找系统有没有安装 比如 rpm -qa|grep mysql rpm...
分类:
Web程序 时间:
2014-07-16 23:20:56
阅读次数:
258
(一)网络相关1、 查看某一个端口: netstat -lnp|grep 802、查看占用端口: netstat -lnp 或者 netstat -tnlup(二)软件相关1、安装了多少个软件包: rpm-qa|wc-l yum list installed | wc -l2、安装了哪些: r...
分类:
其他好文 时间:
2014-07-16 23:19:40
阅读次数:
175
1.检查系统包安装情况rpm -qa|grep binutilsrpm -ivh sysstat-7.0.2.rpmbinutils-2.17.50.0.6compat-libstdc++-33-3.2.3compat-libstdc++-33-3.2.3 (32 bit)elfutils-libe...
分类:
数据库 时间:
2014-07-07 23:17:32
阅读次数:
371
[root@Hammer home]# rpm -qa |grep rsync #检查系统是否安装了rsync软件包rsync-2.6.8-3.1[root@Hammer CentOS]# rpm -ivh rsync-2.6.8-3.1.i386.rpm # 如果没有安装则手动安装[root@te...
分类:
其他好文 时间:
2014-07-07 14:54:58
阅读次数:
284
之前接触一个往Console里输入参数的项目,资深QA教我怎么run,灰常脸红。 今日无事,baidu之。Step1 写简单Console Code. 1 class Program 2 { 3 static void Main(string[] args) 4...
分类:
其他好文 时间:
2014-07-03 10:37:07
阅读次数:
219
在QA TechWeek 2014期间,QA公司首席技术专家David Walker在使用Foundation进行响应式设计的会议上,提出了响应式网站设计的原则。Walker提到从现有桌面网站创建移动应用网站的多种方式:原生应用,为每种移动操作系统开发一个应用;嵌入式HTML 5,使用PhoneGa...
分类:
Web程序 时间:
2014-07-02 19:02:13
阅读次数:
211
检查系统是否安装snmp服务
# rpm -qa|grep snmp
net-snmp-5.3.2.2-17.el5
net-snmp-perl-5.3.2.2-17.el5
net-snmp-devel-5.3.2.2-17.el5
net-snmp-libs-5.3.2.2-17.el5
net-snmp-utils-5.3.2.2-17.el5
net-snmp-libs-5....
分类:
系统相关 时间:
2014-07-01 16:01:00
阅读次数:
386
环境: REDHAT 5
1. 检查是否安装了VNC:
rpm -qa vnc-server
没安装的话,安装一下:
yum install vnc-server
2. 配置vncserver登录密码:
[root@Redhat ~]# vncserver
You will require a password to access your deskt...
分类:
系统相关 时间:
2014-06-30 19:20:13
阅读次数:
392
一、卸载原来的mysql: 卸载一: 输入: #rpm -qa | grep -i mysql 显示: mysql-libs-5.1.52-1.el6_0.1.i686 卸载方法: yum -y remove mysql-libs-5.1.52-1.el6_0....
分类:
数据库 时间:
2014-06-27 15:54:30
阅读次数:
253
查看已安装的java 1 [root@s0 Soft]# rpm -qa | grep java 2 tzdata-java-2013c-1.el6.noarch 3 java-1.6.0-openjdk-1.6.0.0-1.61.1.11.11.el6_4.x86_64 4 java-1.7.0-...
分类:
编程语言 时间:
2014-06-25 12:37:09
阅读次数:
652