Software :: Error: Could Not Find Xml-commons-apis Java Extension

Mar 18, 2010

I have lot of problems installing red5 video server, on my VPS.First things first, here is the specs of my VPS:

OS: CENTOS 5.4 i686 virtuozzo on server
Administration: cPanel 11.25.0-S43473 - WHM 11.25.0 - X 3.9
Mysql: 5.0.89-community
PHP: 5.2.10
Apache 2.2.11

Saying that, I will try to explain my problem as detailed as possible:I try to install red5 video server, following the tutorials and guides to do that, but there are some prerequisites to fulfill before installing the program:

Prerequisite No.1.: Having the latest version of Apache ANT.
Prerequisite No.2: Having the latest Java devel version.

The server already got the Apache ANT 1.6, but red5 asks for 1.8 The server already got java 1.5 but red5 asks for 1.6 So, I try to update to ANT 1.8 and Java 1.6, but refuses to update, so I made a clean installation of both, doing this:[URL]

JAVA:

# yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel

Then I install Apache ANT doing this:

# cd /usr/src
# wget http://opensource.become.com/apache/...8.0-bin.tar.gz
# tar zxvf apache-ant-1.8.0-bin.tar.gz
# mv apache-ant-1.8.0 /usr/local/ant

[code]....

Then, when I execute the command: ant -version to find out which version is running, I get more errors:

root@server [~]# ant -version
/usr/bin/build-classpath: error: Could not find xml-commons-apis Java extension for this JVM
/usr/bin/build-classpath: error: Some specified jars were not found

[code]...

Also, the VPS is not resolving the domains properly, prior to this, the domains were fine, but after that, I need to do a gracefull reboot, and then restart the named service.

1.- How can I undo all the things I did, I mean, is it a way to uninstall the APACHE ANT 1.6.5 and then the 1.8 and Java 1.6, and then start from the beginning?

2.- After uninstalling these 3 apps, I need to reinstall it properly, and make red5 work on the server, so, how can I do it safely?

A mistake I did, was to not to backup the server prior to make the changes, and is a production VPS on a shared server with the vpsnext.com hosting provider.I speak with the technical support, and they are not be able to help me, because is an unmanaged server.

One more strange thing is that, I already install red5, with ANT and JAVA in another server, with the same specs of this VPS, from another hosting provider, and I had no problems at all.

View 6 Replies


ADVERTISEMENT

Fedora :: Cannot Find Any Reference To The MRI Extension

Jun 22, 2011

I am trying to learn about macros in libreoffice. In order to see the methods and properties of the different objects, people in the openoffice forums recommend using the MRI library.

I can not find any reference to the MRI extension in fedora. Does anyone know how to find it, or what to use instead?

View 1 Replies View Related

Ubuntu Installation :: Lucid Tomcat And Commons Fileupload Not Working?

Jun 25, 2010

I am trying to build a server on AWS using the latest Lucid image from Canonical. I load java and tomcat and when I deploy my webapp it runs fine except for when I try to upload files using commons fileupload. Then I get the following error.

ERROR : Jun 16, 2010 14:53:16 [CommonsLogger.java:27] : Unable to parse request org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. javax.servlet.context.tempdir/upload_2bd97087_129421bad1c__8000_00000000.tmp (No such file or directory)

the javax.servlet.context.tempdir points to /var/lib/tomcat6/work/Catalina/localhost/myapp which exists and to test I was able to create a new file there in my code.

This want happening with the karmic build of tomcat. as far as I know everything else is the same.

View 1 Replies View Related

Slackware :: Installing Java Error - When Trying To Run A Java App With The Firefox Plugin - Browser Crashe

May 29, 2011

Code: ~ $ /usr/java/jre1.6.0_25/bin/java -showversion Error occurred during initialization of VMjava/lang/NoClassDefFoundError: java/lang/Object

That's the error I get. When trying to run a java app with the firefox plugin, the browser simply crashes if it's the 64bit java or tells me it's not installed if it's the 32bit version.

I'm at a loss as to what to do. I think it has something to do with leftover gunk from a previous version I misinstalled(Is that even a word?) Anyway, the only thing that google could come up with was a solution for windows which laid blame on Bill Gates for having a bunch of pf (java prefetch) files stuffed into c:windows for no apparent reason. The solution was to delete them, but I can't seem to find the java prefetch folder in linux. The method I used is downloading the rpm from java.com the rpm2tgz then installpkg then cp libnpjp2.so to firefox plugins folder.

View 8 Replies View Related

Ubuntu :: Find Files With An Extension, Then Mail The Results?

Jul 2, 2011

Is there an easy way to do a recursive command line search on a path for a particular type of file extension?I want to build a script that will check for the existence of any .xxx files in a recursive path, if they exist, I would like to run the "mail" command to send me a message. I already have mail running on he server.My thoughts were to tryQuote:ls -R |grep .iniorQuote:find . |grep .inibut neither of those return only the .ini files, they also return files that are named such as .ini.bak, .ini.original, .ini.old, ect...

View 2 Replies View Related

Programming :: Find The Files With Extension .h Or .c With Bash Scripts?

Feb 3, 2011

i want to find all files with .h or .c extension and print them on the screen. How can i do it with bash script programming?

View 5 Replies View Related

General :: Find Files With Specific Extension And Move To A Directory?

Apr 18, 2011

I need little help. I want to find all files with extension "*.tar" "*.gz" and "*.zip" and move all those files into "/opt/old" directory. I've tried this command:

Quote:

find . -type f -name "*.tar" "*.gz" "*.zip" -print0 | xargs -0 -r mv /opt/test

It's not working, something wrong after "mv" i guess.

View 10 Replies View Related

Programming :: How To Link To Different APIs

Apr 21, 2010

I decided, as a project of mine, to create a small computer that could link up to a small display. Because the computer is very low-powered, guess what OS I decided to use? Linux... Ubuntu to be specific.Anyway, I come from using Xcode on OSX (very user-friendly compiler) and some tools for GUI and scripting development. That's where the problem comes in.I know C++, but I do not know how specifically Linux handles programming. I have the GCC compiler installed, and I know the terminal command to compile, but I have a few questions:

1. How do I link to different APIs (like OpenGL)
2. When I compile multiple files, do I compile the main .cpp/.cc file? Or is there a project file I use.
3. Is there a way to make GUIs easily in Linux? I was looking at the 'QT 4' tools.
4. What do the 'QT 4' tools do specifically?
5. Any good IDE? I am using 'Kate' at the moment, but I am not sure how it compares to other programs.
6. Any other tips? Pitfalls to watch out for? Hints to program quicker? Other software I could use?

View 2 Replies View Related

General :: Looking For Mail Server APIs?

Mar 28, 2010

Currently looking C / C++ libraries (or an API or SDK) that will access SMTP, IMAP, POP3 to work under Linux.

Does such an animal exist? I have googled and have seen *many* things for Windows but nothing for Linux.

View 2 Replies View Related

OpenSUSE :: FireFox 5.0 - With IcedTea - Plugin Error: "Failed To Run /usr/lib64/jvm/java-1.6.0-openjdk/jre/bin/java"

Jul 10, 2011

I use openSUSE 11.4 64 bits, KDE and FireFox 5.0. I regularly update. When trying to reach my bank, I get the following error: Code: icedteanp plugin error: Failed to run /usr/lib64/jvm/java-1.6.0-openjdk/jre/bin/java. For more detail rerun "firefox -g" in a terminal window. Is there anything I can do to remediate ? Does IcedTea everything that Java does?

View 4 Replies View Related

Programming :: Kernel GRAPHICS APIs And Code Description?

Feb 17, 2011

I have been googling all day looking for APIs exposed by the linux kernel for graphics n i haven found any information anywhere.

View 5 Replies View Related

Fedora :: Install Php Zip Extension - Error: Pcre™ Undeclared

Oct 27, 2010

i'm trying to install php zip extension through pecl, issuing the following command pecl install zip but i'm getting the following error:

[code]...

View 3 Replies View Related

OpenSUSE :: Java App Error: "java.lang.NullPointerException"

Feb 23, 2011

i try to open a java app, the launch proceeds as far as the final stages, but then stops to do the final sequences showing the error msg listed above.

View 3 Replies View Related

Fedora :: Error Message: Sox Formats: No Handler For File Extension `mp3'

Aug 23, 2010

Odd that no posts come up in the search for "sox" or "specifically sox mp3"

How to get it up and going?

Which yum libraries need to be installed to get sox to recognize mp3s,

example: yum -y install force-mp3-to-start-working

its producing this error message: sox formats: no handler for file extension `mp3'

View 10 Replies View Related

Programming :: Add Some Compiler Flags In Code Blocks / IDE For Mysql Headers And APIs?

Jul 9, 2011

I am writing a C program which is contains Mysql header files and APIs but it can not compile it and its error is : Quote: undefined reference to

to all of Mysql APIs that I included their headers .In command line I compile my source like this with no problem: Quote: gcc test.c -Wall -o test -lz `mysql_config --cflags --include --libs`

I think code block does not have bold italic part of this command. How can I add this to code block to compile my project or those project that contains Mysql APIs (just my project not all of defined projects that has no relation to mysql APIs)with this gcc flags.

View 3 Replies View Related

Programming :: Add Some Compiler Flags In Code Blocks IDE For Mysql Headers And APIs?

Jul 10, 2011

I am writing a C program which is contains Mysql header files and APIs but it can not compile it and its error is :

Quote:

undefined reference to

to all of Mysql APIs that I included their headers .In command line I compile my source like this with no problem:

Quote:

gcc test.c -Wall -o test -lz `mysql_config --cflags --include --libs`

I think code block does not have bold italic part of this command. How can I add this to code block to compile my project or those project that contains Mysql APIs (just my project not all of defined projects that has no relation to mysql APIs)with this gcc flags.

View 2 Replies View Related

Ubuntu :: Error "Could Not Find A Compatible Opengl Display Resolution. Please Check Your Driver Configuration. (Error: Couldn't Find A Matching GLX Visual)"

Jul 22, 2011

I am having issues with 3d I am trying to start up a game called auteria but it displays this error "Could not find a compatible opengl display resolution. Please check your driver configuration. (Error: Couldn't find a matching GLX visual)" I am on ubuntu 10.10 could anybody give me a solution on how to fix this issue?

View 5 Replies View Related

Fedora :: Error: Package Libobasis3.3-extension-pdf-import-3.3.1-8.x86_64.rpm Is Not Signed

Mar 21, 2011

When I tried to install LibreOffice 3.3_64 on my Fedora14_64 I received the following error:

Package libobasis3.3-extension-pdf-import-3.3.1-8.x86_64.rpm is not signed Has anyone run into this? Is there a way to fix this?

View 2 Replies View Related

Networking :: Error - Man/Makefile.am:11: `%'-style Pattern Rules Are A GNU Make Extension

Jun 24, 2011

I am facing an error when I run the following command.

Command: autoreconf -i
Error: man/Makefile.am:11: `%'-style pattern rules are a GNU make extension

[code]....

I'm using Fedora Core 11 on Dell Machine Precision 360

View 3 Replies View Related

Ubuntu :: Dev Package For Intern.h Ruby - ERROR: Failed To Build Gem Native Extension

Oct 26, 2010

I am currently trying to get my RadRails working. There are certain tasks I cannot complete and I'm guessing that installing mongrel and some other items would get everything going. I run the update and it seems to fail horribly and I've been looking on google for the last 2 hours to the answer to this one. This is there errors I have gotten so far.

By the way I am currently using Ubuntu 10.04 if that makes any difference. I have already downloaded and installed sqlite3 and sqlite dev.

Code:

>gem install -l mongrel-1.1.5.gem
Building native extensions. This could take a while...
ERROR: Error installing mongrel-1.1.5.gem:
ERROR: Failed to build gem native extension.

[code]....

Now at this point I am just trying to find the intern.h header file and can't find out what to download to get that.

View 2 Replies View Related

OpenSUSE :: Xlib: Extension "Generic Event Extension" Missing On Display <my_ip>

Dec 28, 2009

After upgrading to 11.2, I get the following error when starting any xclient. Worse, its usually repeated a few times for each client.

Xlib: extension "Generic Event Extension" missing on display <my_ip>

I get this both when using Xming and nomachine.

View 2 Replies View Related

Software :: Find All The Fonts Available On Java?

Sep 30, 2010

When I used a java program to find all the fonts available on java. On MSW7 has more fonts available than on java on Linux. Why is that? Where can I get more java fonts? tia

here's the program:

Code:
import java.awt.GraphicsEnvironment;
public class ListJavaFonts
{
public static void main(String[] args)

[Code]....

View 1 Replies View Related

Fedora :: Cannot Find Another Java Web Plugin (OpenJDK)

Feb 18, 2010

Is the OpenJDK web plugin the only option for java web plugins? I uninstalled it to run the Sun JDK Update 18, but now I can't find another web plugin.

View 1 Replies View Related

Ubuntu :: Find All Java Files In A Directory?

Nov 18, 2010

I am trying to use "find" but I can't quite get all of the switches right for it to work. I have a folder that contains many folders. Let's call that original folder "MyFiles". The subfolders contain java files (and those subfolders possibly contain subfolders that contain java files). Here is what I want to have happen:

0. Create a file to print to, call it "output.ps"
1. Find all of the Java files in the MyFiles tree.
2. For each java file that is found, append it to output.ps along with it's absolute path name.

So far I have:

find . -iname *.java

and this finds all of the java files for me. But then I can't get the files to print to a file using exec.

View 3 Replies View Related

Server :: Trying To Find Right Distro (Run Java Applet)

Oct 20, 2010

I am trying to set up a minecraft server, but I have encountered problems. I have been using Ubuntu Server, but I can't get everything to work just right. I was wondering if I just needed to find a new distro that doesn't take up much resources and can run a java applet and sync with dropbox.( I already have code to sync that up).

View 2 Replies View Related

Programming :: Java Cannot Find Mysql Connector?

Jun 12, 2011

I'm trying to use MySQL's JDBC connector for java but even though I set the CLASSPATH variable, java cannot find the com.mysql.jdbc.Driver class.

Code:
[jordan@Jordan-Laptop java-stuff]$ ls /usr/share/java
cal10n geronimo-jta.jar java_cup-runtime.jar

[code]...

View 14 Replies View Related

Debian Programming :: Java Can't Find Main Class

May 18, 2010

This is a bit of revision for the OU course M257

Code: Select all import java.util.*;
public class FindDupes {
public static void main(String[] args) {
   Set<String> orig = new HashSet<String>();
   Set<String> dupe = new HashSet<String>();
   for(String a: args)
   if(!orig.add(a))
      dupe.add(a);

   orig.removeAll(dupe);
   System.out.println("words " + orig);
   System.out.println("dudes " + dupe);
}
}

for some reason it will compile but not run on debian lenny complains it can't find the main class but it compiles and runs without problem on Fedora 12.

View 6 Replies View Related

General :: Java - Find Hard Disk (RPM) Speed?

Dec 14, 2010

How do I check my hard disk Revolutions Per Minute (RPM) speed from a Linux shell prompt without opening my server case?

I referenced some other articles. they give only model number, serial number and disk space, but I need Hard disk RPM speed using shell script. any other Java program

View 3 Replies View Related

Ubuntu :: Can't Find Offical Java Relase In Apt-get Repositories

Aug 18, 2010

I'm trying up upgrade my lab's ubuntu-based appserver to v10.04 from 9.04.

The problem is that the default lucid apt-get repositories do not contain the Sun's official distribution like Jaunty's does. Is there any way to get the official Java distribution on lucid (not sure how the others measure up) or is it just not officially supported?

View 4 Replies View Related

Ubuntu :: Java Installed, Firefox Can't Find Plugin?

Mar 2, 2011

downloaded the java .bin file from the website and made it excutable and ran in terminal... i got the 'done' message at the end of installation, so i restarted Firefox and verified if i had java. well, i got that message talking about missing plugins... i clicked it and click get missing plugins, It didn't find java on my computer!

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved