Sample Header Ad - 728x90

Unix & Linux Stack Exchange

Q&A for users of Linux, FreeBSD and other Unix-like operating systems

Latest Questions

0 votes
1 answers
2579 views
weblogic 12c node manager inactive
I am trying to start the node manager on Weblogic12c, but it is throwing me this error: java.io.IOException: The server is unable to create a server socket for listening. The address omcsebsorc might be incorrect or another process is using port 5,556: java.net.BindException: Address already in use...
I am trying to start the node manager on Weblogic12c, but it is throwing me this error: java.io.IOException: The server is unable to create a server socket for listening. The address omcsebsorc might be incorrect or another process is using port 5,556: java.net.BindException: Address already in use How should I troubleshoot it?
Surbhi Lal (13 rep)
Feb 23, 2017, 09:04 AM • Last activity: Jul 7, 2025, 02:06 AM
0 votes
0 answers
169 views
Weblogic redirection error
I am currently facing a problem in Weblogic with respect to DNS. Scenario: The user accesses the portal by DNS "www.xxxx.com.br" and when he logs in he is redirected to the IP "10.18.x.70:7010/Portal", where the application is being deployed on the Weblogic server. It is noteworthy that there is no...
I am currently facing a problem in Weblogic with respect to DNS. Scenario: The user accesses the portal by DNS "www.xxxx.com.br" and when he logs in he is redirected to the IP "10.18.x.70:7010/Portal", where the application is being deployed on the Weblogic server. It is noteworthy that there is no forced redirection or failed redirection in the application code. I would like help to understand this behavior.
Lucas Assis (1 rep)
May 6, 2022, 04:20 AM • Last activity: May 6, 2022, 05:10 AM
0 votes
0 answers
260 views
Exception in thread "main" java.lang.UnsatisfiedLinkError
**Context:** Trying to install Oracle WebLogic Infrastructure 12.2.1.4.0 on Oracle Linux 8.5. JDK 7 & JDK 8 are installed. **Issue:** [![Error in the console when trying to run the .jar][1]][1] [1]: https://i.sstatic.net/bFuFD.png
**Context:** Trying to install Oracle WebLogic Infrastructure 12.2.1.4.0 on Oracle Linux 8.5. JDK 7 & JDK 8 are installed. **Issue:** Error in the console when trying to run the .jar
Axel (1 rep)
Apr 27, 2022, 01:14 PM
0 votes
0 answers
393 views
Weblogic slows down with exception
I'm using weblogic 12.2.1.4 as queue manager and my Java application is connected to it. After weeks the Java applications slows down and reponds very slowly which I have to restart the weblogic service to go back to normal. Its been a while that I see the following exception in my weblogic log. I h...
I'm using weblogic 12.2.1.4 as queue manager and my Java application is connected to it. After weeks the Java applications slows down and reponds very slowly which I have to restart the weblogic service to go back to normal. Its been a while that I see the following exception in my weblogic log. I have searched for this exception in several forums and I found nothing.
Ali Golestan (317 rep)
May 16, 2021, 11:05 AM • Last activity: May 17, 2021, 05:44 AM
0 votes
0 answers
32 views
Unknow Zip file of ~60gb created in Weblogic folder and now HDD partition is full
We are currently deploying applications in Weblogic 12.2.1.3.0 and while deployment, the deployment failed with the error that no space is available for copying stage files. OS = Redhat Enterprise Linux 8.3 Java = 1.8.251 On analysis, we found that a zip file has been created in the Weblogic directo...
We are currently deploying applications in Weblogic 12.2.1.3.0 and while deployment, the deployment failed with the error that no space is available for copying stage files. OS = Redhat Enterprise Linux 8.3 Java = 1.8.251 On analysis, we found that a zip file has been created in the Weblogic directory of ~60GB, which was the size of the total available space in that partition. We had faced a same issue last week when all the adjacent folders were also deleted and only the zip file was left there. Back then the admin guys just reinstalled a fresh Weblogic after not finding any RCA. But this time the folders have not been deleted, just the HDD space is full. Can anyone help understand why this issue is occurring or if anyone else has faced something like this? Highlighted below the zip file that was created in Weblogic folder. enter image description here
neoBelieves (1 rep)
Jan 29, 2021, 12:38 PM
1 votes
0 answers
112 views
Unable to install WebLogic image docker
I want to create an empty domain with an Admin Server: nunyet@lw202050777:~/weblogic/backoffice$ sudo docker run -d -p 7002:7001 -p 9004:9002 -v $PWD:/u01/oracle/properties store/oracle/weblogic:12.2.1.4 Unable to find image 'store/oracle/weblogic:12.2.1.4' locally 12.2.1.4: Pulling from store/oracl...
I want to create an empty domain with an Admin Server: nunyet@lw202050777:~/weblogic/backoffice$ sudo docker run -d -p 7002:7001 -p 9004:9002 -v $PWD:/u01/oracle/properties store/oracle/weblogic:12.2.1.4 Unable to find image 'store/oracle/weblogic:12.2.1.4' locally 12.2.1.4: Pulling from store/oracle/weblogic 822ace0353cb: Already exists 19841f86e7b5: Pull complete b3c7d6d987c6: Pull complete cc5da308016d: Pull complete 91c19f73b26d: Pull complete afca886f8980: Pull complete Digest: sha256:7f0cb6f693cc15c18ae279c30df8dbdda8073598cc09caab8f5f67ce150823d8 Status: Downloaded newer image for store/oracle/weblogic:12.2.1.4 a739318959cbbb3e544dfd09ebaf7bd2c051fa0c4c30330b5c6f04d65f1425de but I can't access the AdminServer Web Console at: https://localhost:9004/console, https://localhost:9002/console, https://localhost:7001/console, https://localhost:7002/console This site can’t be reached
Nuñito Calzada (71 rep)
Oct 13, 2020, 05:04 PM • Last activity: Oct 18, 2020, 09:08 AM
-1 votes
1 answers
1023 views
WLST Python script unable to accept the variable from Shell Script
I created a WLST Script that checks if a user belongs to a particular group. The shell script reads input for the user and group name & sends to it to the python script. This is the python script: ```python d_user=sys.argv[1] print 'User is ' +d_user d_group=sys.argv[2] print 'Group is ' +d_group co...
I created a WLST Script that checks if a user belongs to a particular group. The shell script reads input for the user and group name & sends to it to the python script. This is the python script:
d_user=sys.argv
print 'User is ' +d_user
d_group=sys.argv
print 'Group is ' +d_group

connect(userConfigFile='WebLogicConfig.properties',userKeyFile='WebLogicKey.properties',url='t3://wl-test.com:80')
    
realmName=cmo.getSecurityConfiguration().getDefaultRealm()
authProvider = realmName.getAuthenticationProviders()

from weblogic.management.security.authentication import GroupEditorMBean
print "Checking if 'd_user' is a member of the group 'd_group' ... "
atnr=cmo.getSecurityConfiguration().getDefaultRealm().lookupAuthenticationProvider("DefaultAuthenticator")
if atnr.isMember('d_group','d_user',true) == 0:
  print "+d_user is not member of +d_group"
else:
  print "+d_user is a member of +d_group"
This is the output: ./UserGroupCheck.sh Enter the user name you want to check : weblogic Enter the group name you want to check for weblogic : Administrators CLASSPATH=... PATH=... Your environment has been set. Initializing WebLogic Scripting Tool (WLST) ... Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands User is weblogic Group is Administrators Connecting to t3://wl-test.com:80 with userid weblogic ... Successfully connected to Admin Server.. ... Checking if 'd_user' is a member of the group 'd_group' ... Problem invoking WLST - Traceback (innermost last): File "UserGroupCheck.py", line 20, in ? weblogic.management.utils.NotFoundException: [Security:090259]Group d_group can not be found. at weblogic.utils.StackTraceDisabled.unknownMethod() weblogic.management.utils.NotFoundException: weblogic.management.utils.NotFoundException: [Security:090259]Group d_group can not be found. It fails complaining that the **group is not found**. The python script is able to accept the variables for d_user and d_group initially, however once it is connected to the Weblogic domain, it is unable to recognize the values given for d_user & d_group and instead takes the variable names as the actual input.
Checking if 'd_user' is a member of the group 'd_group'
The script works fine, if I replace the d_user & d_group with actual user & groups. I am unable to figure out what I overlooked.
Tony Jose (7 rep)
Apr 18, 2020, 06:38 PM • Last activity: Apr 23, 2020, 08:01 AM
1 votes
0 answers
57 views
weblogic cluster between two different server
I have two server (for example 1.1.1.1 , 1.1.1.2). I want to have one administrator tools and two managed servers (one on 1.1.1.1 and another on 1.1.1.2) and cluster these two nodes. Is the base of this architecture true and implemented before? I read oracle documentation but can't find the way to a...
I have two server (for example 1.1.1.1 , 1.1.1.2). I want to have one administrator tools and two managed servers (one on 1.1.1.1 and another on 1.1.1.2) and cluster these two nodes. Is the base of this architecture true and implemented before? I read oracle documentation but can't find the way to achieve this architecture. all the documents are about cluster between two nodes on one server.
Elham_Jahani (111 rep)
Jul 9, 2019, 05:51 AM • Last activity: Jul 9, 2019, 06:48 AM
0 votes
2 answers
1412 views
How to start weblogic service using sudo with another user?
On Centos 6.8 server, I need to start weblogic-service from test user, and I need the process owner to be weblogic, not the test user. I also have to start weblogic with nohup, and put it in backbground like this : `#nohup ./startweblogic &` Things I have done are as follow: I have added test user t...
On Centos 6.8 server, I need to start weblogic-service from test user, and I need the process owner to be weblogic, not the test user. I also have to start weblogic with nohup, and put it in backbground like this : #nohup ./startweblogic & Things I have done are as follow: I have added test user to sudoers so it can run the start script I run the following command, but still the process owner is not weblogic. #su -p -s /bin/sh weblogic "nohup /u01/Oracle/Middleware/user_projects/domains/base_domain/startWebLogic.sh &"
Ali Golestan (317 rep)
Jan 29, 2019, 10:21 AM • Last activity: Feb 6, 2019, 10:00 AM
0 votes
1 answers
1736 views
How to start weblogic service with another user?
First I need to start weblogic service with test user but I need the process owner to be weblogic not the test user. Second thing is I have to start weblogic with `nohup` and put it in backbground like this `#nohup ./startweblogic &` Things I've done are as follow: I've added test user to sudoers so...
First I need to start weblogic service with test user but I need the process owner to be weblogic not the test user. Second thing is I have to start weblogic with nohup and put it in backbground like this #nohup ./startweblogic & Things I've done are as follow: I've added test user to sudoers so it can run the start script I run the following command but still the process owner is not weblogic. #su -p -s /bin/sh weblogic "nohup /u01/Oracle/Middleware/user_projects/domains/base_domain/startWebLogic.sh &"
Ali Golestan (317 rep)
Oct 16, 2018, 09:51 AM • Last activity: Oct 17, 2018, 05:15 AM
0 votes
1 answers
257 views
Error message "jrcmd: not found" when I execute a script
I am getting the error below when I execute a script: > Ksh: line 1: jrcmd: not found When I execute the same command in weblogic server, I get the output, but executing the same command inside a script it gives me the error message. This is the script: #!/bin/ksh process_id=`ssh -q account@serverna...
I am getting the error below when I execute a script: > Ksh: line 1: jrcmd: not found When I execute the same command in weblogic server, I get the output, but executing the same command inside a script it gives me the error message. This is the script: #!/bin/ksh process_id=`ssh -q account@servername -n "pa -ef |grep weblogic|great -v "grep""|awk '{print $2}' ssh -q account@servername -n "jrcmd $process_id print_threads > /tmp/thread.txt" Can I expect any answer?
Mallikarjun Malage (3 rep)
Sep 17, 2018, 04:51 PM • Last activity: Sep 18, 2018, 09:45 PM
0 votes
3 answers
8352 views
How to set up the DOMAIN_HOME environment variable in SUSE Linux
I am running Java NetBeans 6.9 jdk 6 on SUSE Linux and I currently need to get the path of the weblogic domain of my Java application. I have read that I can directly access the environment variable by using this : System.getenv("DOMAIN_HOME") The problem is I couldn't find the `DOMAIN_HOME` environ...
I am running Java NetBeans 6.9 jdk 6 on SUSE Linux and I currently need to get the path of the weblogic domain of my Java application. I have read that I can directly access the environment variable by using this : System.getenv("DOMAIN_HOME") The problem is I couldn't find the DOMAIN_HOME environment variable (actually I have no idea on setting up the env. variable in linux). I found instructions on the internet telling me that I could set this up by setting : Export DOMAIN_HOME = /desired_path_to_domain Following several instructions found on the internet, I have already tried the following resolutions : 1. I wrote this on my home's .profile : **export DOMAIN_HOME=$DOMAIN_HOME:/path_to_domain** 2. I also wrote that on my home's .bashrc and on /etc/bash.bashrc 3. I executed this on the konsole printenv ... and as expected I saw the list of all the environment variables. At first, I thought it was pointed to .profile but it wasn't. It was displaying an entirely different value from what was defined on .profile when I executed the line echo #PATH ... so I concluded that my environment variables weren't defined on .profile The question is, where exactly is that printenv (environment variables) defined and how can I modify it to include my DOMAIN_HOME variable. Guys, I really need this. I came up posting on forums because none of the solutions above or anywhere else could solve my problem. DOMAIN_HOME remains null (even after restarting my linux server).
kazeopeia
Sep 12, 2011, 03:33 PM • Last activity: Aug 21, 2018, 02:28 AM
1 votes
1 answers
5742 views
Weblogic process just killed suddenly on redhat linux
One of the process on my WAS killed at dawn. 6 process run on this server. But only one process just killed. I don't know how to fix it. This is Weblogic last log that before process killed. /app/orarecp/bea/domains/HRRECP/bin/startWeblogic.sh: line 180: 27066 killed ${JAVA_HOME}/bin/java ${JAVA_VM}...
One of the process on my WAS killed at dawn. 6 process run on this server. But only one process just killed. I don't know how to fix it. This is Weblogic last log that before process killed. /app/orarecp/bea/domains/HRRECP/bin/startWeblogic.sh: line 180: 27066 killed ${JAVA_HOME}/bin/java ${JAVA_VM} {MEM_ARGS} -Dweblogic.Name=${SERVER_NAME} -Djava-security.policy=${WL_HOME}/server/lib/weblogic.policy ${JAVA_OPTION} ${PROXY_SETTINGS} ${SERVER_CLASS} And This is startWeblogic shell script. startWeblogic Shell Script: 180 line
And This is start process shell script parts. USER_MEM_ARGS="-Xms3072m -Xmx3072m -Xverbose:gc -Xverboselog:${LOG_HOME}/gclogs/gc.${SERVER_NAME}_date + '%Y%m%d_%H%M%S'.out" JAVA_OPTION="${JAVA_OPTIONS} -Xbootclasspath/p:/app/orarecp/jennifer/agent/lwst.jdk.jar:/app/orarecp/jennifer/agent/lwst.boot.jar:/app/orarecp/jennifer/agent/jennifer.boot.jar -Djennifer.config=/app/orarecp/jennifer/agent/R11.conf -javaagent:/app/orarecp/jennifer/agent/lwst.javaagent.jar -Dframeone.webapps=/svcroot/runtime/webapps -Dfile.encoding=UTF-8 -Djava.security.egd=file:///dev/urandom"

server specification is... - CPU: 8 core, 2.4GHz // The time that CPUs utilization was under 15% - Memory: 32Gb + Mem: 32922024k total, 32817492k used, 104580k free, 147464k buffers + Swap: 33551744k total, 148k used, 33551596k free, 15231864k cached
server stack is... - weblogic 11g - jrockit 1.6 - redhat linux 5.8 (64bit)

I wonder why the process is killed. What am I suppose to do? Please answer if you need additional information. All the answers are going to be helpful to me.
Thanks. ---------- Additinal Information. 1. before that Last log But this log is occurs frequently. > java.lang.NullPointerException at cj.recruit.syscommon.filter.SessionLocaleFilter.doFilter(SessionLocaleFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at frameone.core.common.web.filter.EnvironmentSetupFilter.doFilter(EnvironmentSetupFilter.java:88) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at cj.recruit.syscommon.filter.CrossScriptingFilter.doFilter(CrossScriptingFilter.java:22) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) > at cj.recruit.syscommon.filter.SessionLocaleFilter.doFilter(SessionLocaleFilter.java:41) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at frameone.core.common.web.filter.EnvironmentSetupFilter.doFilter(EnvironmentSetupFilter.java:88) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at cj.recruit.syscommon.filter.CrossScriptingFilter.doFilter(CrossScriptingFilter.java:22) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) 2. another JAVA process (ps -ef | grep java) ps -ef | grep java 3. another Server Java Process >ps -ef | grep java > oraehrp 818 786 0 19:34 pts/1 00:00:00 grep java > root 9689 1 1 2015 ? 1-01:05:58 /usr/java/jdk1.6.0_23/bin/java -Djava.awt.headless=true -jar /app/CJ_agent//cjagent.jar /app/CJ_agent//conf/cjagent.conf > oraehrp 10128 10074 2 2015 ? 1-10:06:08 /usr/java/jrockit1.6/bin/java -jrockit -Xms1024m -Xmx1024m -Dweblogic.Name=EHRREP1 -Djava.security.policy=/app/oraehrp/bea/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -Dweblogic.security.SSL.trustedCAKeyStore=/app/oraehrp/bea/wlserver_10.3/server/lib/cacerts -Dframeone.webapps=/svcroot/runtime/webapps -Dfile.encoding=UTF-8 -Djava.security.egd=file:///dev/urandom -da -Dplatform.home=/app/oraehrp/bea/wlserver_10.3 -Dwls.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=t3://52.2.205.138:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/app/oraehrp/bea/patch_wls1036/profiles/default/sysext_manifest_classpath:/app/oraehrp/bea/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server > oraehrp 14795 14740 2 2015 ? 1-10:31:48 /usr/java/jrockit1.6/bin/java -jrockit -DAdminServer -Xms1024m -Xmx1024m -verbosegc -Dweblogic.Name=AdminServer -Djava.security.policy=/app/oraehrp/bea/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -da -Dplatform.home=/app/oraehrp/bea/wlserver_10.3 -Dwls.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/app/oraehrp/bea/patch_wls1036/profiles/default/sysext_manifest_classpath:/app/oraehrp/bea/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server > oraehrp 23456 23395 67 18:25 ? 00:46:23 /usr/java/jrockit1.6/bin/java -jrockit -Xms2048m -Xmx2048m -Xns:256m -Xverbose:gc -Xverboselog:/svcroot/logs/was/domains/HREHRP/EHRPRD11/gclogs/gc.EHRPRD11_20160201_182544.out -Dweblogic.Name=EHRPRD11 -Djava.security.policy=/app/oraehrp/bea/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -Dweblogic.security.SSL.trustedCAKeyStore=/app/oraehrp/bea/wlserver_10.3/server/lib/cacerts -Dweblogic.threadpool.MinPoolSize=100 -Xbootclasspath/p:/app/oraehrp/jennifer/agent/lwst.jdk.jar:/app/oraehrp/jennifer/agent/lwst.boot.jar:/app/oraehrp/jennifer/agent/jennifer.boot.jar -Djennifer.config=/app/oraehrp/jennifer/agent/E11.conf -javaagent:/app/oraehrp/jennifer/agent/lwst.javaagent.jar -Dframeone.webapps=/svcroot/runtime/webapps -Dfile.encoding=UTF-8 -Djava.security.egd=file:///dev/urandom -da -Dplatform.home=/app/oraehrp/bea/wlserver_10.3 -Dwls.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=t3://52.2.205.138:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/app/oraehrp/bea/patch_wls1036/profiles/default/sysext_manifest_classpath:/app/oraehrp/bea/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server > oraehrp 24233 24179 49 18:27 ? 00:33:03 /usr/java/jrockit1.6/bin/java -jrockit -Xms2048m -Xmx2048m -Xns:256m -Xverbose:gc -Xverboselog:/svcroot/logs/was/domains/HREHRP/EHRPRD12/gclogs/gc.EHRPRD12_20160201_182747.out -Dweblogic.Name=EHRPRD12 -Djava.security.policy=/app/oraehrp/bea/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -Dweblogic.security.SSL.trustedCAKeyStore=/app/oraehrp/bea/wlserver_10.3/server/lib/cacerts -Dweblogic.threadpool.MinPoolSize=100 -Xbootclasspath/p:/app/oraehrp/jennifer/agent/lwst.jdk.jar:/app/oraehrp/jennifer/agent/lwst.boot.jar:/app/oraehrp/jennifer/agent/jennifer.boot.jar -Djennifer.config=/app/oraehrp/jennifer/agent/E12.conf -javaagent:/app/oraehrp/jennifer/agent/lwst.javaagent.jar -Dframeone.webapps=/svcroot/runtime/webapps -Dfile.encoding=UTF-8 -Djava.security.egd=file:///dev/urandom -da -Dplatform.home=/app/oraehrp/bea/wlserver_10.3 -Dwls.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=t3://52.2.205.138:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/app/oraehrp/bea/patch_wls1036/profiles/default/sysext_manifest_classpath:/app/oraehrp/bea/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server > oraehrp 25006 24944 53 18:29 ? 00:34:35 /usr/java/jrockit1.6/bin/java -jrockit -Xms2048m -Xmx2048m -Xns:256m -Xverbose:gc -Xverboselog:/svcroot/logs/was/domains/HREHRP/EHRPRD13/gclogs/gc.EHRPRD13_20160201_182933.out -Dweblogic.Name=EHRPRD13 -Djava.security.policy=/app/oraehrp/bea/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -Dweblogic.security.SSL.trustedCAKeyStore=/app/oraehrp/bea/wlserver_10.3/server/lib/cacerts -Dweblogic.threadpool.MinPoolSize=100 -Xbootclasspath/p:/app/oraehRP/jennifer/agent/lwst.jdk.jar:/app/oraehrp/jennifer/agent/lwst.boot.jar:/app/oraehrp/jennifer/agent/jennifer.boot.jar -Djennifer.config=/app/oraehrp/jennifer/agent/E13.conf -javaagent:/app/oraehrp/jennifer/agent/lwst.javaagent.jar -Dframeone.webapps=/svcroot/runtime/webapps -Dfile.encoding=UTF-8 -Djava.security.egd=file:///dev/urandom -da -Dplatform.home=/app/oraehrp/bea/wlserver_10.3 -Dwls.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.home=/app/oraehrp/bea/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=t3://52.2.205.138:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/app/oraehrp/bea/patch_wls1036/profiles/default/sysext_manifest_classpath:/app/oraehrp/bea/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server
Chanho Jung (13 rep)
Feb 1, 2016, 07:14 AM • Last activity: Mar 17, 2018, 09:27 AM
0 votes
1 answers
569 views
WebLogic silent install JAR throws illegal argument error
I am trying to install WebLogic 10.3.6 on Oracle Linux using silent mode. When I run the below command it throws illegal argument. It does not even read the response file. Does anyone know the reason? #java -jar wls1036_generic.jar -silent -responseFile /scratch/u01/wl.rsp Illegal argument: -silent...
I am trying to install WebLogic 10.3.6 on Oracle Linux using silent mode. When I run the below command it throws illegal argument. It does not even read the response file. Does anyone know the reason? #java -jar wls1036_generic.jar -silent -responseFile /scratch/u01/wl.rsp Illegal argument: -silent Illegal argument: -responseFile Illegal argument: /scratch/u01/wl.rsp Unable to instantiate GUI, defaulting to console mode. Extracting 0%.....................................^C Both JAVA_HOME and PATH variable are set. Here is the Java version- # java -version openjdk version "1.8.0_151" OpenJDK Runtime Environment (build 1.8.0_151-b12) OpenJDK 64-Bit Server VM (build 25.151-b12, mixed mode)
anAmaka (103 rep)
Dec 19, 2017, 11:12 AM • Last activity: Dec 19, 2017, 11:53 AM
0 votes
1 answers
925 views
executing startWeblogic.sh and startNodemanager.sh in the same script
I need to write a single shell script in which I need to execute both `startWebLogic.sh` and `startNodeManager.sh`. `startWebLogic.sh` is getting executed but `startnodeMananger.sh` is not when put into the same script. This is my script: #!/bin/bash cd /u01/middleware/user_projects/domains/base_dom...
I need to write a single shell script in which I need to execute both startWebLogic.sh and startNodeManager.sh. startWebLogic.sh is getting executed but startnodeMananger.sh is not when put into the same script. This is my script: #!/bin/bash cd /u01/middleware/user_projects/domains/base_domain/bin startWebLogic.sh startNodeManager.sh What change should I bring in my script?
Surbhi Lal (13 rep)
Mar 6, 2017, 02:53 PM • Last activity: Mar 6, 2017, 04:15 PM
0 votes
1 answers
602 views
using cd command and few other commands after ssh
I am trying to run 3 to 4 commands after doing ssh in a script. can you please help me out with this. Since, it says, it cannot access the directory. tfptools@tfpwltst01:TEF_PERU:tfptools> vi temporary.ksh tfptools@tfpwltst01:TEF_PERU:tfptools> ./temporary.ksh **ls: cannot access weblogic.*.log: No...
I am trying to run 3 to 4 commands after doing ssh in a script. can you please help me out with this. Since, it says, it cannot access the directory. tfptools@tfpwltst01:TEF_PERU:tfptools> vi temporary.ksh tfptools@tfpwltst01:TEF_PERU:tfptools> ./temporary.ksh **ls: cannot access weblogic.*.log: No such file or directory Connection to tfpwltst06 closed.** This is the below command, I am trying to use to login to a server and do cd and then print all exception present there: #ssh -t tfpabp12@tfpwltst06 /bin/sh -c '"cd ~/JEE/ABPProduct/logs/ABP-FULL/ABPServer && var=$(ls weblogic.*.log | tail -1) && cat $var | grep xception | sort | uniq -c | sort -n"' ssh -t tfpabp12@tfpwltst06 /bin/sh -c '"cd ~/JEE/ABPProduct/logs/ABP-FULL/ABPServer && cat $(ls weblogic.*.log | tail -1)"'
Roushan Jha (102 rep)
Jan 5, 2017, 06:14 AM • Last activity: Jan 5, 2017, 09:11 AM
9 votes
1 answers
5560 views
Clean way to bring back background process to foreground in shell script
As an example: I have working shell script which starts up weblogic (which will continue to run) and then do deployment At the end I bring background process back to foreground, so that shell script does not exit (Exited with code 0) #!/bin/bash set -m startWebLogic.sh & # create resources in weblog...
As an example: I have working shell script which starts up weblogic (which will continue to run) and then do deployment At the end I bring background process back to foreground, so that shell script does not exit (Exited with code 0) #!/bin/bash set -m startWebLogic.sh & # create resources in weblogic # deploy war # ... jobs -l fg %1 I had to use set -m, to allow job control, but I also found it is not cleaniest way to use it in non-interactive shells. Is there a better way to handle it?
Patrik Mihalčin (245 rep)
Nov 25, 2016, 01:11 PM • Last activity: Nov 25, 2016, 02:24 PM
1 votes
1 answers
1294 views
Oracle Weblogic IPv6 with Oracle database on IPv4
I have one `weblogic` application currently working on IPv4 and `jdbc` connection to database is on IPv4. Since my machine has an additional Ethernet port that supports IPv6, I am thinking to add an additional entry in `DNS AAAA` and try to clear my doubt. If an HTTP hit comes via IPv6 internally, `...
I have one weblogic application currently working on IPv4 and jdbc connection to database is on IPv4. Since my machine has an additional Ethernet port that supports IPv6, I am thinking to add an additional entry in DNS AAAA and try to clear my doubt. If an HTTP hit comes via IPv6 internally, weblogic will bind database on IPv4 and take the required results and give these results back to client browser on IPv6. - Will the above method work? - What are the other factors I should consider? - Is a dual stack mandatory other than IPv6 only?
Ashish (190 rep)
Jun 24, 2014, 08:07 AM • Last activity: Sep 28, 2016, 11:14 PM
0 votes
1 answers
787 views
URL rewriting and internal links on Apache
I have a 2.2 Apache with the weblogic plugin enabled, which it simply redirects all the requests to the application server. Basically, when I call the page http://myip/blabla/home.page, it is a page resident on the application server. What I need to do is to understand how to perform a couple of thi...
I have a 2.2 Apache with the weblogic plugin enabled, which it simply redirects all the requests to the application server. Basically, when I call the page http://myip/blabla/home.page , it is a page resident on the application server. What I need to do is to understand how to perform a couple of things: 1. When I ask for http://myip/home.page the Apache should give me the http://myip/blabla/home.page . 2. The internal links of the home.page should be with the "blabla" removed. 3. When I click on the modified link, the page served should be the http://myip/blabla/linked.page but with the URL rewritten like this: http://myip/linked.page
ludiegu (1677 rep)
Sep 9, 2015, 01:21 PM • Last activity: Jul 20, 2016, 11:07 AM
1 votes
1 answers
1458 views
Translate Windows batch script into a bash script for Linux
I'm new to Linux and am trying to find the equivalent of this from Windows @echo off if ".%1" == "." goto TellSyntax set PRE_CLASSPATH=%MW_HOME%\oracle_common\modules\javax.persistence_2.1.jar;%MW_HOME%\wlserver\modules\com.oracle.weblogic.jpa21support_1.0.0.0_2-1.jar goto End :TellSyntax echo setJP...
I'm new to Linux and am trying to find the equivalent of this from Windows
@echo off
if ".%1" == "." goto TellSyntax
set
PRE_CLASSPATH=%MW_HOME%\oracle_common\modules\javax.persistence_2.1.jar;%MW_HOME%\wlserver\modules\com.oracle.weblogic.jpa21support_1.0.0.0_2-1.jar
goto End
:TellSyntax
echo setJPA21SupportPatch %MW_HOME%\wlserver\modules
:End
echo PRE_CLASSPATH=%PRE_CLASSPATH%
Richard (11 rep)
Mar 13, 2015, 11:44 PM • Last activity: Mar 14, 2015, 12:09 PM
Showing page 1 of 20 total questions