Tagged Questions
0
votes
0answers
45 views
Can't load IA 32-bit .so on a IA 32-bit platform
I'm trying to install an 32_bit_application on CentOS (64-bit), while running the setup.bin
file it return the following error
Invocation of this Java Application has caused an ...
1
vote
3answers
59 views
Linux / JVM - OutOfMemoryError: unable to create new native thread
I have a memory problem with a Linux server (CentOS). It is a VM. Below is the context.
It has 70Gb of RAM. There are 2 tomcat running on it.
One tomcat is given a heap of 13Gb and the other one a ...
3
votes
1answer
182 views
Cannot kill a java process
I have a java process that cannot be killed. I have tried every method I know, or that I have found on the internet to no avail. I have tried:
killall java
kill -9 <pid>
kill -11 <pid>
...
0
votes
0answers
37 views
How to execute a command as a service in Linux [duplicate]
Possible Duplicate:
how to make system service out of .jar file? (linux)
I am executing a command from Linux to establish a connection between Linux and a cloudbees machine. How could I run ...
2
votes
1answer
170 views
How to trace a java-program?
As a sysadmin I sometimes face situations, where a program behaves abnormally, while not creating errors at all or creating nonsense error-messages.
In the past - before java came in - there were two ...
3
votes
0answers
82 views
Implement Java/JavaFX on ARM
I am working on ARM Linux.
I have found this link that says that JavaFX could work on ARM.
I am confused about Embedded Java SE and JavaFx ARM. Do I need to setup a JVM for those or not?
I have ...
0
votes
1answer
224 views
How do I install drjava in linux from terminal?
I've downloaded drjava-stable-20100816-r5366.jar file which is the drjava version for Linux. How do I install it on my machine?
I'm running Ubuntu 11.10.
I have OpenJDK Java 6 runtime and Sun Java 6 ...
1
vote
1answer
281 views
How to force a particular version of Java?
I am on a RHEL 5.5 64 bit box. The systems engineer installed the 64-bit Java VM under /usr/bin ; however, I needed a 32 bit VM which he installed in /opt/jdk1.6.0_35. But now, everytime I do java ...
4
votes
2answers
490 views
Linux running slow with 0 swap left
Our Linux server is responding very slowly. top doesn't show any excessive CPU usage. I noticed that even though there's about 5GB of free memory, the system is using all of swap with no free swap ...
3
votes
2answers
223 views
Capturing new output after deleting the output file
I'm runnig a java server on Debian with this command:
java -jar myapp.jar [args] >> log.txt
Once I gzipped the log file to send it and then I realized the original file was gone, leaving me ...
2
votes
0answers
117 views
Any way for Unix to ignore lpoptions and let Java do it's job?
I'm using the javax.print API to print a Jasper Report on Debian Linux. For some reason the saved lpoptions (CUPS settings) always override settings chosen on the Java Print dialog. At this point the ...
0
votes
3answers
524 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 (a newbie on 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 ...
4
votes
3answers
9k views
Problem to launch java at Debian: “error while loading shared libraries: libjli.so”
I'm trying to launch java:
$ java -version
java: error while loading shared libraries: libjli.so: cannot open shared object file: No such file or directory
$ ldd ...
1
vote
1answer
255 views
Issues compiling Tanuki Java Service wrapper version 3.1.2 under armv5tel architecture
Basically I need this specific version of the Tanuki Java Service Wrapper to run a specific Java application. I downloaded the source from the Tanuki website and I'm trying to compile it from source.
...
1
vote
2answers
593 views
Problem installing JDT in Eclipse on linux
I installed Eclipse on Fedora Core 14 using yum install eclipse-platform. I ran eclipse and tried to install the java development tools, but then this error came up:
Cannot complete the install ...
2
votes
1answer
1k views
Weblogic administration console way too slow
I've installed weblogic 10.3.3, configured simple domain with default configuration. And after starting weblogic I cannot use it via admin console because it is starting too slow (~10 mins). It seems ...
5
votes
1answer
2k views
How can i know which unistd.h file is loaded?
I have several unistd.h files in my Ubuntu Linux. I've one on: /usr/include/asm/unistd.h This file has this directives:
# ifdef __i386__
# include "unistd_32.h"
# else
# include "unistd_64.h"
# ...
5
votes
2answers
452 views
Invoke Syscalls from Java
Is there a way to invoke syscalls directly from Java, or is it necessary to first call a native method?