일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 줄바꿈 문자
- netsh
- Windows
- IntelliJ
- xargs
- ssh
- Source
- grep
- lsof
- find
- port
- JavaScript
- context
- bash
- GIT
- vscode
- import
- plugin
- 단축키
- Eclipse
- web.xml
- tomcat
- profile
- 네트워크
- maVen
- resource
- Mac
- VirtualBox
- Quartz
- Windows 10
- Today
- Total
목록Web & WAS/Tomcat (23)
develog
● 에러메시지2013. 7. 16 오후 2:03:35 org.apache.tomcat.util.http.Parameters processParameters정보: More than the maximum number of request parameters (GET plus POST) for a single request ([10000]) were detected.Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector. ● 수정, server.xml (maxParameterCount 값 수정, default 10000) ● 참고http://..
http://commons.apache.org/proper/commons-dbcp/configuration.html
Server version: Apache/2.2.17 (Unix)Apache Tomcat/6.0.35java version "1.6.0_31"
Tomcat ROOT/lib/tomcat-dbcp.jar /WebContent/META-INF/context.xml 수정 server project - context.xml 수정 JNDI 리소스 가져오기 Context initCtx = new InitialContext(); Context envCtx = (Context)initCtx.lookup("java:/comp/env"); DataSource ds = (DataSource)envCtx.lookup("jdbc/testdb"); Connection conn = ds.getConnection(); System.out.println("conn : " + conn);
-----------------------------------------------------httpd-vhost.conf 수정-----------------------------------------------------vi /server/apache/conf/extra/httpd-vhosts.conf DocumentRoot /home/dev/www ServerName test1.mydomain.com ServerAlias *.test1.mydomain.com ErrorLog logs/test1.mydomain.com-error_log CustomLog logs/test1.mydomain.com-access_log common JkMount /* worker1 DocumentRoot /home/dev..