Cannot find module (IP-MIB): At line 0 in (none),snmp

错误:
执行SNMP探测命令出错
C:\Documents and Settings\Administrator>snmpstatus
Cannot find module (IP-MIB): At line 0 in (none)Cannot find module (IF-MIB): At line 0 in (none)Cannot find module (TCP-MIB): At line 0 in (none)Cannot find module (UDP-MIB): At line 0 in (none)Cannot find module (HOST-RESOURCES-MIB): At line 0 in (none)Cannot find module (SNMPv2-MIB): At line 0 in (none)Cannot find module (SNMPv2-SMI): At […]

...

windows2000 终端服务(3389,远程服务)安装包

本人提取的WINDOWS2000光盘中的文件。
 下载地址:
http://xok.la/file/2010/11/TerminalServices.rar

...

Oracle自动增长字段

Oracle自动增长字段
一 建立表
create table xok.mytable
(
id number(2) primary key,
name char(14),
sex char(2) check (sex=’男’ or sex=’女’),
mark varchar2(1000)
)
二 建立sequence
create sequence XOK_AUTOINC 
minvalue 1 
start with 1 
increment by 1 
nocache;
三 建立触发器
create or replace trigger INSERT_FOR_AUTOINC
   before insert on xok.mytable  
   for each row 
declare 
...

linux下tomcat安装与apache基于虚拟主机整合

上篇文章:http://xok.la/2008/09/linux_jdk15_tomcat55_eclipse.html
以下操作,经过xok.la站长于2009-1-1测试有效.部分文件下载地址失效
官方资源下载:
http://tomcat.apache.org
http://developers.sun.com/downloads/
1.安装JDK
cd /root/install/wget http://xok.la/linux/software/install/tomcat/java_ee_sdk-5_01-linux.binchmod +x java_ee_sdk-5_01-linux.bin./java_ee_sdk-5_01-linux.bin#选择安装目录
2.安装tomcat
创建运行tomcat用户
groupadd -g 5500 tomcatuseradd -u 5500 -g 5500 -s /sbin/nologin tomcatcd /root/install/wget http://xok.la/linux/software/install...

|