当前位置:  建站>运营/SEO
本页文章导读:
    ▪tomcat installation and configuration guide      Tomcat installation guide 1. download tomcat from http://tomcat.apache.org/download-70.cgi , please download stable version. 2. uncompress the downloaded installation file to /usr. 3. go to the conf directory and modify the connector port in web.xml .........
    ▪根据 子网掩码 算出 最大主机数目      问:子网掩码为255.255.224,求所能容纳的最大主机数目。分别是什么? 1.首先,255.255.255.224转换成二进制为11111111,11111111,11111111,11100000(5个可用位0) 那么它的网内最大主机数目就是2^5 = 32,但.........
    ▪g++编译时总是出现倒计时问题      make编译时,总是提示: make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future make: Warning: File `mtrpcServer/real_pro.cp.........

[1]tomcat installation and configuration guide
    来源: 互联网  发布时间: 2013-10-27
Tomcat installation guide


1. download tomcat from http://tomcat.apache.org/download-70.cgi , please download stable version.
2. uncompress the downloaded installation file to /usr.
3. go to the conf directory and modify the connector port in web.xml if necessary.
4. change tomcat-users.xml if want to access by browser
example:
<tomcat-users>
<user username="both" password="tomcat" roles="tomcat,role1,manager-gui"/>
</tomcat-users>

5. config the Environment Variable as follows:
a. vi /etc/profile
b. CATALINA_BASE = /usr/apache-tomcat-*.*.*
  CATALINA_HOME = /usr/apache-tomcat-*.*.*
c. export  CATALINA_BASE
  export  CATALINA_HOME
d. source /etc/profile

6. use ./startup.sh to run.






configure more than one tomcat on one server by following steps:


1. uncompress the installation file to a new directory, for example, /usr/tomcatServer2
2. add two new environment variables :
a. vi /etc/profile
b. CATALINA_BASE2 = /usr/tomcatServer2
  CATALINA_HOME2 = /usr/tomcatServer2
c. export  CATALINA_BASE2
  export  CATALINA_HOME2
d. source /etc/profile
3. edit tomcatServer2/bin/catalina.sh, change all CATALINA_BASE and CATALINA_HOME into CATALINA_BASE2 and CATALINA_HOME2 respectively 
4. edit tomcatServer2/conf/server.xml, change all the port number from 8*** to 9***


example:
<Connector port="9080" protocol="HTTP/1.1" 
               connectionTimeout="20000" 
               redirectPort="9443" URIEncoding='UTF-8'/>
    =====================        
    <Connector port="9009" protocol="AJP/1.3" protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler" redirectPort="9443" URIEncoding='UTF-8'/>
5. cd to /usr/tomcatServer2/bin, then use command "sh startup.sh" to run tomcat.


reference:
http://www.cnblogs.com/itolssy/archive/2008/08/27/1278041.html
 
作者:jshayzf 发表于2013-5-10 12:52:25 原文链接
阅读:100 评论:0 查看评论

    
[2]根据 子网掩码 算出 最大主机数目
    来源: 互联网  发布时间: 2013-10-27

问:子网掩码为255.255.224,求所能容纳的最大主机数目。分别是什么?


1.首先,255.255.255.224转换成二进制为11111111,11111111,11111111,11100000(5个可用位0)

那么它的网内最大主机数目就是2^5 = 32,但是,别忘了,网络地址可广播地址不可用故32-2=30(个)



那么他们的主机ip地址分别是什么呢?

首先,0~255可以分成几个网络段?255/30≈8


则8段分别为

126.65.13.0 126.65.13.1~     126.65.13.30

126.65.13.32  126.65.13.33~ 126.65.13.62

126.65.13.64 126.65.13.65~ 126.65.13.94

126.65.13.96 126.65.13.97~ 126.65.13.126

126.65.13.128 126.65.13.129~ 126.65.13.158

126.65.13.160 126.65.13.161~ 126.65.13.190

126.65.13.192 126.65.13.193~ 126.65.13.222

126.65.13.224 126.65.13.225~ 126.65.13.254

各网段的广播地址:

126.65.13.31

126.65.13.63

126.65.13.95

126.65.13.127

126.65.13.159

126.65.13.191

126.65.13.223

126.65.13.255


如果得知其中一个ip为126.65.13.45

由此可知,主机地址分别为126.65.13.33~ 126.65.13.62






作者:skyshowshow 发表于2013-5-10 16:16:17 原文链接
阅读:32 评论:0 查看评论

    
[3]g++编译时总是出现倒计时问题
    来源: 互联网  发布时间: 2013-10-27

make编译时,总是提示:

make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future
make: Warning: File `mtrpcServer/real_pro.cpp' has modification time 41 s in the future

原因:系统时间和当前时间有差距

解决办法:更改系统时间为当前时间

[root@QAServer autoQAServer]# date -s 10:36
Fri May 10 10:36:00 HKT 2013

作者:dream2009gd 发表于2013-5-10 16:13:02 原文链接
阅读:25 评论:0 查看评论

    
最新技术文章:
▪SQVI和SAP查询QUERY的区别和使用注意事项    ▪彻底理解Cisco/Linux/Windows的IP路由    ▪Exchange 2010 处于禁止发送用户自动收到来自IT...
▪MB_CHANGE_DOCUMENT使用方法    ▪ALV的html表头    ▪【译】如何精确判断最终用户响应时间过长的...
▪apache2.4.4启用deflate压缩    ▪使用vmware 配置centos 6.0+ 网络出现的各种问题...    ▪十句话教你学会Linux数据流重定向
▪centos6.x已经安装的系统添加图形界面    ▪Linux查看CPU和内存使用情况    ▪win7问题解决,凭据管理器和无法访问,不允...
▪Dynamics CRM 2013 初体验(4):不再被支持的功...    ▪win7下制作ubuntu系统安装启动盘和U盘安装ubuntu...    ▪Linux cp -a用法
▪Windows Server时间服务器配置方法    ▪Tomcat+memcached实现Session共享    ▪Linux修改系统环境变量PATH路径的方法
▪Citrix 服务器虚拟化之二十七 XenApp6.5发布服务...    ▪搭建本地Ubuntu 镜像服务器    ▪Create local metadata resource of yum
▪tsm ANS0326E问题处理    ▪Windows SVN变化邮件通知(Python2.7实现)    ▪linux下的内核测试工具——perf使用简介
▪Nginx TCP Proxy模块的编译安装    ▪OSX: SSH密钥使用日记(2)    ▪OSX: SSH密钥使用日记(1)
▪Manually start and stop Oracle XE in Ubuntu    ▪Disable autostart of Oracle-xe in Ubuntu    ▪tar命令-linux
▪xtrabackup-2.1.2-611安装    ▪无废话ubuntu 13.4文件共享配置    ▪Unix文本处理工具之sed
▪hpux 操作系统 磁带备份与恢复    ▪HP DL360 G7通过iLO部署系统    ▪Redhat 6.0中VNC Server的配置方法
▪hpux 操作系统磁带备份与恢复    ▪用C++编程调用libvirt的API来创建KVM虚拟机    ▪hpux- hp小型机日常硬件故障处理case(一)
▪web集群时session同步的几种方法(统计)    ▪inux常用命令大全    ▪BAT 批处理实现循环备份N天文件夹
▪BIND9私有DNS服务器小环境搭建实验    ▪Exchange2013增量备份    ▪OSSEC Monitor your App log file
▪《深入理解Nginx》阅读与实践(三):使用upstre...    ▪如何给Fedora 15创建磁盘分区    ▪Packet Sniffer Code in C using sockets
▪Error, some other host already uses address    ▪修改uCOS_II以实现“优先级+时间片”联合调度    ▪weblogic开发模式与生产模式介绍
▪Wireshark 高级特性    ▪ubuntu13.04版本下安装RabbitVCS,类似windows的Tortoi...    ▪Apache 一台主机绑定多个域名及虚拟主机
▪linux安全设置    ▪RHEL双网卡绑定    ▪Linux shell if参数
▪Windows配置路由时可以指定源地址啦    ▪centos安装vim7.4    ▪S3C2410 实验三——块拷贝、字拷贝(寄存器的...
▪系统运维——日志处理    ▪ip_conntrack缓存neighbour    ▪关键在封装并发出了帧-IP冲突也无所谓
▪weblogic11g 安装——linux 无图形界面    ▪《数据通信与网络》笔记--SCTP    ▪《数据通信与网络》笔记--TCP中的拥塞控制
▪weblogic11g 安装集群 —— win2003 系统、单台主...    ▪weblogic11g 节点管理器 nodemanager    ▪Citrix 服务器虚拟化之二十六 应用程序虚拟化...
▪如何将windows下的文件夹挂载到linux虚拟机下    ▪在64位AIX6.1下安装SAP JCo    ▪Outlook启动时提示“找不到文件Outlook.pst文件”...
▪weblogic8.1 登陆5 ip 限制    ▪weblogic 内存 及 内存溢出    ▪手把手教你在Windows端搭建Redmine项目管理软件
▪启动及重新启动nginx,重启nginx后丢失nginx.pid问...    ▪Win7实现快速启动栏并实现靠左边的终极操作...    ▪《深入理解Nginx》阅读与实践(二):配置项...
▪显示grub引导菜单    ▪nagios监控主机    ▪linux各种数据流重定向
▪centOS安装chrome浏览器    ▪Slackware 14 安装完全指南    ▪SharePoint 2013的100个新功能之内容管理(三)
▪Citrix 服务器虚拟化之二十一 桌面虚拟化之部...    ▪[问,ask]ubuntu13.04安装vncserver后只显示桌面,不显...    ▪Win7中IIS出现“HTTP 错误 404.17 - Not Found 请求的...
▪CentOS快速安装最新版本的SaltStack    ▪CentOS 6.4 快速安装Nginx笔记    ▪磁盘管理——RAID 0
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3