본문 바로가기

2014년/WEB/WAS4

[JEUS] solraris의 JEUS jboot, jdown, ja setting 우선은 암호 는 JEUS_HOME/config/hostid/security/SYSTEM_DOMAIN/accounts.xml 을 변경하면됨 jboot 명령어 jeus -Uadministrator -Pjeusadmin & jdown 명령어 jeusadmin `hostname` =Uadministrator -Pjeusadmin jeusexit ja 명령어 jeusadmin `hostname` -Uadministrator -Pjeusadmin 이렇게 설정해놓고 사용하는걸로~! 2013. 2. 6.
tomcat 반영 암됨 ( can't load context.xml ) tomcat 를 재기동시켜도 소스가 반영이 안되었다면 context환경설정부분에 reloadable=true등을 해봤을것이다 하지만 그래도 안될것이다 그건 web.xml부분의 해당 서블릿을 로딩하는부분의 오타이다 오타를 입력했어도 tomcat가동시에 error메시지를 안뿌려주니 web.xml 파일을 꼼꼼히 보면된다~! 괜히 tomcat만 몇십번 restart하지 말자 ㅠㅠ 2012. 11. 21.
how to login tomcat manager You can't login tomcat manager after installing tomcat7 in soloris.(http://localhost:8080/manager) Maybe you can see "403 Access Denied". so, you open tomcat-user.xml file and add the role as following (/conf/tomcat-user.xml) ....... ........ you need to add a manager role and make sure that your user is in that role. if you are "tomcat" user, you are not a problem.! 2012. 10. 23.
UNIX tomcat 2 instances echo -- startup-instance1.sh ----------------------------------------------- #!/bin/sh export JAVA_HOME=/app/jdk1.6.0_22 export CATALINA_BASE=/app/instance1 export JAVA_OPTS="-Djava.awt.headless=true -server -Xms512m -Xmx1024m -XX:NewSize=256m -XX:MaxNewSize=2 56m -XX:PermSize=256m -XX:MaxPermSize=512m -XX:+DisableExplicitGC" export CATALINA_OPTS="-Denv=product -Denv.servername=instance1" cd $CA.. 2012. 8. 13.