[ The imperialist Japanese military must officially acknowledge and apologize for the coercion of young women into sexual slaves. / êꪤҳàõªòàõªÎÒ¿Ö˪˪·ª¿ð¨ÏÐñ«ëùìíÜâÏÚªÎ?ð¤àõªòÍëãÒªËìãªá¡¢Þóñªª·ªÊª±ªìªÐªÊªéªÊª¤. ]

»ç¿ëÀÚ

ID:
PW:

INDEX
01.°Ô½ÃÆÇ
°Ô½ÃÆÇ [72]
02.File Book
File ÀÚ·á½Ç [96]
Site Link [14]
°³ÀÎÆú´õ [201]
03.Field Book
Altibase [19]
Tibero [31]
MS-SQL [32]
MySQL [47]
DB2 [79]
ORACLE [3209]
PSQL [143]
CUBRID [5]
±âŸÁ¤º¸ [194]
¿î¿µÃ¼Á¦ [634]
04.Q/A Book
Q/A [53]
05.¹æ¸í·Ï
¹æ¸í·Ï [54]
·¹º§¾÷ [37]
±¸ÀÎ/±¸Á÷ [2]

±â³äÀÏ
Search
LINK
+ °¡Á· Hompy
+ DNSEver
IOTN :: Field Book :: ORACLE

 È¸¿ø°¡ÀÔ

weblogic cluster session share [ ¼¼¼Ç °øÀ¯ login.jsp login chk, weblogic.management.ManagementException: [Deployer:149188] ]
ÃÖ±æÈ£ [LIST]   2018-03-03 09:25:44, Á¶È¸ : 124,710

http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/wls/12c/12-ManageSessions--4478/session.htm

weblogic session share test
managed server#1,#2 ·Î±×ÀÎ ¼¼¼Ç À¯Áö

cat > index.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <h1>Login Page</h1> <center> <h2>Signup Details</h2> <form action="LoginCheck.jsp" method="post"> <br/>Username:<input type="text" name="username"> <br/>Password:<input type="password" name="password"> <br/><input type="submit" value="Submit"> </form> </center> </body> </html>

cat > LoginCheck.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body>
<% String username=request.getParameter("username");
String password=request.getParameter("password");
if((username.equals("test") && password.equals("test")))
{ session.setAttribute("username",username);
  response.sendRedirect("Home.jsp"); }
else
  response.sendRedirect("Error.jsp"); %> </body> </html>

cat > Home.jsp
<%@page contentType="text/html" pageEncoding="UTF-8" errorPage="Error.jsp"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <br/><br/><br/><br/><br/> <center> <h2>
<% String a=session.getAttribute("username").toString(); out.println("Hello "+a); %> </h2> <br/> <br/> <br/><br/><br/><br/><br/> <a href="Logout.jsp">Logout</a> </center> </body> </html>

cat > Logout.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body>
<% session.removeAttribute("username");
session.removeAttribute("password");
session.invalidate(); %> <h1>Logout was done successfully.</h1> </body> </html>

cat > Error.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <h1>Some Error has occured,Please try again later...</h1> </body> </html>

. ./wls10301/wls10301/bin/setDomainEnv.sh
java weblogic.marathon.ddinit.WebInit login

vi login/WEB-INF/weblogic.xml
... ... ...
  <context-root>/login</context-root>
  <session-descriptor>
   <persistent-store-type>replicated_if_clustered</persistent-store-type>
  </session-descriptor>
</weblogic-web-app>


find login
login
login/index.jsp
login/LoginCheck.jsp
login/Home.jsp
login/Logout.jsp
login/Error.jsp
login/WEB-INF
login/WEB-INF/web.xml
login/WEB-INF/weblogic.xml


´Ù¸¥Á¡ nodemanager »ç¿ëÇØ¼­ ¼­ºñ½º ½ÃÀÛ
´ë»óÀ» AdminServer À¸·Î ÇØµµ °°Àº ¿¡·¯ È®ÀÎ
vi login/WEB-INF/weblogic.xml:  <context-root>/login</context-root>
<<<<<<<<< µ¿±âÈ­ ¾ÈµÇ¸é ¹ß»ý, console-¹èÄ¡-sv_name-±¸¼º-ÀϹÝ-ÄÁÅØ½ºÆ® ·çÆ®:/login È®ÀÎ ÇÊ¿ä
console log
------------
weblogic.management.ManagementException: [Deployer:149188]No application named 'login' exists for operation start. Operation can not be performed until server is restarted.
managed log
------------
<Mar 3, 2018 7:41:23 AM KST> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element web-app in the deployment descriptor in /wls/10.3/login/WEB-INF/web.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>

Á¶Ä¡: restart all server [ WLS admin,managed server ]

source
Ãâó: http://mrbool.com/how-to-create-a-login-form-with-jsp/25685
error
Ãâó: Deploying application gives error: 'Weblogic.management.ManagementException: [Deployer:149188]No Application Named 'otp-service-1.0' (¹®¼­ ID 2341643.1)
216.73.216.139


  LIST

Á¦¸ñ ÀÛ¼ºÀÚ ÀÛ¼ºÀÏ Á¶È¸
Troubleshoot  ORA-03137: TTC    ÃÖ±æÈ£ 2018/04/24 1007139
WebLogic  weblogic cache    ÃÖ±æÈ£ 2018/02/28 238133
WebLogic  weblogic cluster session share [ ¼¼¼Ç °øÀ¯ login.jsp login chk, weblogic.management.ManagementException: [Deployer:149188] ]    ÃÖ±æÈ£ 2018/03/03 124710
Troubleshoot  IMP-00003 ORA-32603: invalid FREEPOOLS LOB storage option value [ move lob table, lob index ]    ÃÖ±æÈ£ 2013/05/26 120332
Troubleshoot  proc, windows, vc 2003 , pcmake , Files\MicrosoftÀº(´Â) ¿¹»óµÇÁö ¾Ê¾Ò½À´Ï´Ù    ÃÖ±æÈ£ 2006/10/02 100362
Troubleshoot  ORA-00600: internal error code, arguments: [kcbzib_kcrsds_1]    ÃÖ±æÈ£ 2021/09/23 99203
Troubleshoot  dblink ORA-02068 ORA-03113 ORA-02080 [ ALTER SESSION CLOSE DATABASE LINK RDBNM; ]  [4]  ÃÖ±æÈ£ 2010/07/10 99191
WebLogic   WEB-INF/lib ¿ì¼± Àû¿ë, index-directory-enabled À妽º µð·ºÅ丮    ÃÖ±æÈ£ 2018/02/27 97404
WebLogic  java -jar fmw_12.2.1.3.0_wls.jar The OpenJDK JVM is not supported on this platform.    ÃÖ±æÈ£ 2018/02/06 86743
Troubleshoot  TRIGGER,Function ORA-02069 ORA-06512 ORA-04088 ORA-02070    ÃÖ±æÈ£ 2008/12/19 86646
Script  session monitor [ dbms_xplan sql binds ]  [2]  ÃÖ±æÈ£ 2010/06/30 85512
Troubleshoot  ORA-03297 Resizing Empty Datafile    ÃÖ±æÈ£ 2009/08/11 84606
Admin  dd copy datafile raw device , filesystem  [4]  ÃÖ±æÈ£ 2009/09/07 81944
SQL,PL*SQL  dbms_random »ç¿ë¿¹  [1]  ÃÖ±æÈ£ 2010/04/12 81402
Troubleshoot  ODBC {Microsoft ODBC for Oracle}, ORA-12154, ODBC NA000 IM006 01000  [1]  ÃÖ±æÈ£ 2008/01/04 77800
Troubleshoot  ORA-12537 , <unknown connect data> * 12537  [2]  ÃÖ±æÈ£ 2009/11/21 68155
Troubleshoot  ALTER SESSION CLOSE DATABASE LINK    ÃÖ±æÈ£ 2010/07/11 68026
Admin  ORACLE°ú MSSQL°£ÀÇ DBLINK ¹æ¹ý    ÃÖ±æÈ£ 2008/09/19 65460
Troubleshoot  ld: 0711-224 WARNING: Duplicate symbol: p_xargc    ÃÖ±æÈ£ 2010/06/08 65430
Tool  RAC jdbc connection test [ thin java test.java sample ]  [3]  ÃÖ±æÈ£ 2010/06/14 62021

    ¸ñ·Ïº¸±â   ´ÙÀ½ÆäÀÌÁö 1 [2][3][4][5][6][7][8][9][10]..[161]   [´ÙÀ½ 10°³]
       

Copyright 1999-2025 Zeroboard / skin by ÃÖ±æÈ£(gilho.kr@gmail.com)
ÃÖ±Ù ´ñ±Û
2021/06/30
À©µµ¿ì ¼­¹ö¿¡¼­ sqlplus .... ORA-...
by ÃÖ±æÈ£
2021/06/30
ORA-28500: connection from O...
by ÃÖ±æÈ£
2019/05/02
pkg È®ÀÎ SELECT * FROM AL...
by ÃÖ±æÈ£
ÃÖ±Ù °Ô½Ã¹°
07/04
[ORACLE]
impdp Slow While Creating View....
by ÃÖ±æÈ£
07/03
[ORACLE]
select username,last_login fro....
by ÃÖ±æÈ£
07/02
[¿î¿µÃ¼Á¦]
rsync -auv.
by ÃÖ±æÈ£