服务器管理
文章平均质量分 69
李荣强
qunar 工程师
展开
-
关于tomcat服务器getParameter对ge…
之前在帮忙做一个项目的时候,用的是Eclipse+Tomcat,统一用的是UTF-8编码格式,发现从前台传入的中文参数到后台老是出现乱码(只有我才出现了错误,其他成员没有)。出现问题后检查Eclipse的编码设置后均没有问题,于是怀疑可能是Tomcat导致的问题。后来发现我的Tomcat和他们的不一样,换成他们用的Tomcat后乱码问题就没有了!我很纳闷,为什么会这样呢,我明明是从Apache官网原创 2015-12-24 10:27:57 · 473 阅读 · 0 评论 -
那些可以提高开发效率的工具
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Axure:可以快速完成界面原型的设计;在原型设计时非常有用; astah;思维导图工具,以后可能用得到 myeclipse的WS原创 2015-12-24 10:29:13 · 533 阅读 · 0 评论 -
Apache负载均衡配置文件
# # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see #原创 2015-12-24 10:29:59 · 551 阅读 · 0 评论 -
tomcat 7 配置内存大小
set JAVA_OPTS=-Xms1024m -Xmx1024m -Xss1024K -XX:PermSize=256m -XX:MaxPermSize=512m @echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements.原创 2015-12-24 10:30:01 · 279 阅读 · 0 评论 -
tomcat 管理平台配置文件
<role rolename="admin-gui"/> <role rolename="admin-script"/> <role rolename="manager-gui"/> <role rolename="manager-script"/> <role rolename="manager-jmx"/> <role rolename="manager-status"/> <user use原创 2015-12-24 10:30:04 · 232 阅读 · 0 评论 -
Linux系统启动自动启动tomcat服务…
1 首先将所有linux启动的命令写到一个shell文件中.比如我将这个文件放到/root/cmd/startAll.sh. /app/tomcat-fm-business-app1/bin/startup.sh & /app/tomcat-red-top-app1/bin/startup.sh & /app/tomcat-red-top-app2/bin/startup.sh & 2原创 2015-12-24 10:30:08 · 466 阅读 · 0 评论 -
Linux下使用Tomcat7搭建高性能Java…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <p style= "margin-top: 0px; margin-bottom: 0px; font-size: 14px; font原创 2015-12-24 10:30:10 · 261 阅读 · 0 评论 -
tomcat 启动脚本
#!/bin/bash #purpose: fm tomcat startup or shutdown shell #date:2015-02-04 #author:lirongqiang #example sh fmtomcat.sh start redtop1 # to start redtop1 echo "example1: sh fmtomcat.sh start redtop1 "原创 2015-12-24 10:30:25 · 263 阅读 · 0 评论 -
tomcat-开启远程调试脚本配置
#!/bin/sh export TOMCAT_USER="tomcat" export JAVA_OPTS="-Xms2048m -Xmx2048m -XX:NewSize=256m -XX:PermSize=256m -server -XX:+DisableExplicitGC -Dqunar.logs=$CATALINA_BASE/logs -Dqunar.cache=$CATALINA_原创 2015-12-24 16:20:57 · 398 阅读 · 0 评论