Fedora :: RED5 Build Script Does Not Work On FC10 64 Bit

Nov 11, 2009

I'm trying to install RED5 on FC10. I think FC10 has almost everything java, apache, ant, tomcat, jetty. I've downloaded red-0.6.3.tar.gz from RED5 site. When I try to build it with make command. It shows me these error message and doesn't build it.

[ivy:resolve] You probably access the destination server through a proxy server that is not well configured.
[ivy:resolve] Host red5.googlecode.com not found. [URL]
[ivy:resolve] Host red5.googlecode.com not found. [URL]
[ivy:resolve] module not found: [tomcat | jasper-el | 6.0.14 ]
[ivy:resolve] googlecode: tried no ivy pattern => no attempt to find module descriptor file for [ tomcat | jasper-el | 6.0.14 ]
[ivy:resolve] googlecode: tried artifact [ tomcat | jasper-el | 6.0.14 ]/jasper-el.jar[jar]:
[ivy:resolve] [URL]
[ivy:resolve] [URL]
[ivy:resolve] Host red5.googlecode.com not found. [URL]
[ivy:resolve] Host red5.googlecode.com not found. [URL]
[ivy:resolve] module not found: [ tomcat | tomcat-juli | 6.0.14 ]
[ivy:resolve] googlecode: tried no ivy pattern => no attempt to find module descriptor file for [ tomcat | tomcat-juli | 6.0.14 ]
[ivy:resolve] googlecode: tried artifact [ tomcat | tomcat-juli | 6.0.14 ]/tomcat-juli.jar[jar]:
[ivy:resolve] [URL]
[ivy:resolve] [URL]
and lots more messages....almost 1,000 lines.

I have no idea how to install it. I'm working in Uzbekistan as a volunteer and Internet speed is much slower than everybody expected. This site is using proxy. If ant work only under high speed and reliable internet, what should I do? There is no way to install RED5 without internet? Or my java environments are wrong?

View 3 Replies


ADVERTISEMENT

Fedora Networking :: Connection With FC10 - Don't Seem To Get It Work

Feb 6, 2009

I'm currently running FC9 and I have no problem with my network connection. Now I just installed FC10 on another partition too try it out, but I don't seem to get it work. I disabled the NetworkManager (like in FC9) and enabled the Network. I'm using static IP, when in go in Network Configuration/Ethernet Device/General, the subnet mask is always taking the address of the Default gateway address when I press OK.
my subnet mask is 255.255.255.0, and my gateway is 192.168.1.1, but after I press ok they both go back to 192.168.1.1

View 3 Replies View Related

Fedora Networking :: WLAN Doesn't Work With Kdenetwork-4.3.0-2.fc10.i386

Sep 2, 2009

I have just updated KDENetwork to this level and now my F10 doesn't find any wifi connection. By the way, I have been working with F10 for some months without any problem on wlan.

iwconfig now says:

wlan0 IEEE 802.11bg ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point: Not-Associated
Tx-Power=0 dBm
Retry min limit:7 RTS thr:off Fragment thr=2352 B

[code]...

View 1 Replies View Related

Fedora X86/64bit :: Programs That Work In FC10 And FC12 Develop In FC11

Apr 7, 2010

I have programs that work in FC10 and FC12, but when I run them on FC11, i get behaviour that is very similar to a deadlock. They don't crash or anything. It just seems that all program output stops at one point and never resumes. I am wondering if FC11 has any known threading issues that one may need to know about before trying to use it to run their software from FC10 or FC12. Maybe something in the way that threading is handled differently from FC10 or FC12 that is not necessarily a problem, but just needs to be kept in mind when writing code for FC11.

View 10 Replies View Related

Fedora Networking :: FC10 - Wifi Devices To Work On 128bit WEP Network - Linksys Wireless-G And 5100AGN

Jun 20, 2009

I'm having trouble getting my wifi devices to work on my 128bit WEP network. I have a new Thinkpad T400, with an internal Intel PRO/Wireless 5100 AGN. I also have some cardbus cards: a Lucent ORiNOCO Gold, a Linksys Wireless-G, and a TRENDnet TEW-421PC. I have them set up as interfaces eth2, eth1, and eth3. (The TRENDnet isn't recognised as a network card at all, so no interface for it.) I have installed the latest firmware for the Linksys card.

The /etc/sysconfig/network-scripts/ifcfg-* files are virtually identical for all of them, differing only in the HWADDR and DEVICE lines. So here's the behaviour:

1. The Lucent card comes up just fine.
2. The internal 5100AGN and the Linksys cards won't come up, and watching with iwconfig shows that they're either associated with my AP OR they've got an encryption key set -- but not both.
3. When trying to bring up the 5100AGN, I get the following messages:

iwlagn: index 0 not used in uCode key table
iwlagn: index 3 not used in uCode key table

/var/log/messages shows DHCPDISCOVER requests being sent, but they're bound to fail since the association with the AP with WEP isn't being completed. And yes, the ifcfg-* files really *are* identical except for the DEVICE and HWADDR lines. The /etc/udev/rules.d/70-persistent-net.rules file correctly maps the interfaces to the MAC addresses. So why does my antique ORiNOCO card work and thew newer ones fail? How can I track down what's being done wrong/not being done?

View 4 Replies View Related

Server :: How To Install Red5 On Centos5

Apr 7, 2009

I am a newbie on linux and now I just bought a dedicated server using centos5 and for one of my website, webcam chat. I need to install red5.

View 4 Replies View Related

Server :: Install Red5 On A Redhat 9?

Apr 30, 2010

I'm after the easiest way to install red5 on a redhat 9 server?
i have ssh accses is there a apt-get , or a yum command i could run to install it .like urpmi (Im a mandrivia user mostly)
if so what might this command look like?

View 1 Replies View Related

Programming :: Startup Script For Red5 Ubuntu 9.04

Aug 1, 2010

I am creating startup script for Red5 on Ubuntu. Red5 is installed in /opt/red5. Following is a working script on a CentOS Box on which Red5 is running

Code:
# = Start init script =
#!/bin/sh
PROG=red5
RED5_HOME=/opt/red5/dist
DAEMON=$RED5_HOME/$PROG.sh
PIDFILE=/var/run/$PROG.pid

# Source function library
. /etc/rc.d/init.d/functions
[ -r /etc/sysconfig/red5 ] && . /etc/sysconfig/red5
RETVAL=0
case "$1" in
start)
echo -n $"Starting $PROG: "
cd $RED5_HOME
$DAEMON >/dev/null 2>/dev/null &
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
echo $! > $PIDFILE
touch /var/lock/subsys/$PROG
fi
[ $RETVAL -eq 0 ] && success $"$PROG startup" || failure $"$PROG startup"
echo
;;
stop)
echo -n $"Shutting down $PROG: "
killproc -p $PIDFILE
RETVAL=$? echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROG
;;
restart)
$0 stop
$0 start
;;
status)
status $PROG -p $PIDFILE
RETVAL=$?
;;
*)
echo $"Usage: $0 {start|stop|restart|status}"
RETVAL=1
esac
exit $RETVAL

What do I need to replace for Ubuntu in the above script. As I did not find rc.d/functions on Ubuntu on my laptop also /etc/init.d/functions I did not existed. I would like to be able to use them with service as Red hat distributions do. I checked /lib/lsb/init-functions.

View 3 Replies View Related

Server :: Static Website Needs To Serve Flash / Use Red5 In That?

Jul 27, 2010

I am having static html pages and want to embed some flash videos in them.I have installed Red5 on my server after this what do I do so that I can serve them using Red5.

View 10 Replies View Related

Software :: Red5 - Connection Failed Or Closed Error Message

Apr 29, 2010

Firstly I am new to red5 and not very strong when it comes to linux. I have had installed red5 on my dedicated server and going by the http://myIP:5080/installer demos it is all working fine. My problem is I cannot get it to work with my software being flashchat. I am not sure if it comes from me using the incorrect RTMP url and if so after trying about 20 or more ways of typing it in I always get the same error message "Connection Failed' or "Connection Closed" not to sure what is meant by Closed as to whether it's working but can't get in or what ever. I am after someone who can get this to work for me please and I am willing to pay for that service once it is working.

View 2 Replies View Related

Fedora Installation :: Update From FC10 To Fedora 12 From The Command Line?

Dec 10, 2009

How do I update from FC10 to Fedora 12 from the command line.

View 2 Replies View Related

Fedora Installation :: Firefox And FC10 Won't Run?

Jan 6, 2009

When trying to launch firefox after upgrading to FC10, I get:Couldn't load XPCOM

View 4 Replies View Related

Fedora Servers :: How To Upgrade From Fc4 To Fc10

Mar 26, 2009

just as the title states i need to upgrade my os from fc4 to fc10 first let me say i have no physical access to the box. all i have is root ssh access to it. So i need to know the best way of upgrading that will be safe. before i do the upgrade the server will be backed up so i will not loose any files. if the upgrade fails the data center will reload the os with what i need on it. but i would rather not have to format.

View 6 Replies View Related

Fedora :: Fc10 Leftovers After The Upgrade?

Jun 13, 2009

After upgrading to F11 I have had a few problems with some applications most like miro I was able to fix by using yum remove and then reinstalling. It appears that after updating some applications have stayed with the fc10 versions despite fc11 versions being available.

yum list | grep fc10 | grep installed
anthy.i386 9100h-4.fc10 installed
compat-db45.i386 4.5.20-5.fc10 installed
cronie.i386 1.2-8.fc10 installed

[code]...

View 14 Replies View Related

Fedora Installation :: Fc10 To 11 And Now STUCK?

Aug 6, 2009

I did the yum preupgrade install, all went well, did preupgrade -gui ; did everything fine, then i got the REBOOT now to start updating, clicked and i have just

View 5 Replies View Related

Fedora :: After Upd FC10 To FC11 Yum Not Working?

Oct 12, 2009

I recently update FC10 to FC11 and Yum has stopped working. Also, "Add/Remove Software" has no packages listed. And, I have no Software repositories listed. When I try to run Yum I get the following:

There was a problem importing one of the Python modules required to run yum. The error leading to this problem was:

[Code]...

View 1 Replies View Related

Fedora :: Modem Reconnection In FC10

Feb 4, 2010

I'm about ready to give up! The modem is a USR5610C it has an rpm file. I guess I'll also need to know if I'm starting it correctly, by restarting the machine.

View 1 Replies View Related

Fedora :: Install Mplayer On Fc10?

Feb 4, 2010

how do install mplayer on fc10?

View 7 Replies View Related

Fedora Servers :: Tar Backup Of Webserver On FC10?

Jan 27, 2009

I want to backup my apache website using tar. I want to make sure all the permissions and such stay the same so that if I restore a website, it's ready to go exactly as it had been.I am using the following command and would like to know if there is anything else I should neeed to do?

tar --xattrs cvzf backup.tgz /path-to-webserver-files

Now my other question is since tar doesn't store absolute paths, when I run the restore I have to be in the root directory? In another words if I run the command in a user directory will tar do something retarded like encode the paths as ../path-to-webserver or will it just be path-to-webserver so that when I run the restore from the / folder it will automatically go into the right place?

View 4 Replies View Related

Fedora Servers :: Config For Routing New To FC10?

Feb 4, 2009

So my server running FC4 died last night and I decided to go ahead with the long-awaited upgrade to FC10 while I was rebuilding my server. I use my server for a number of things including, but not limited to: router, firewall, web server, mail server... I have a typical configuration process that I have followed since before fedora, and it has worked well for me up through FC4, but my usual config process doesn't work on FC10.

First of all, I don't want SELinux running, I didn't see an option to not install it during the FC10 setup, so how to I properly disable or uninstall it afterwards? Second, I was unable to even configure the server to route traffic from my internal network to the web, here's the process I usually go through for this:

[Code]...

I don't have a static IP from my ISP, so I'm not quite sure how to add the default route. I think I need to do something like "route add default gw xxx.xxx.xxx.xxx eth1" where eth1 is my external NIC, correct?

What else do I need to do to route traffic? I noticed that I wasn't even able to ping my server from the internal network even though they are on the same subnet, my server's internal NIC has an address of 192.168.7.1 and my computer on the network has an address of 192.168.7.2. If I can get this going to I have internet access again at the very least, I can move forward with the web server, email, etc.

View 8 Replies View Related

Fedora Networking :: Network Between Two FC10 Laptops

Mar 21, 2009

I and my friend use FC10 on our laptops. We want to share our data by creating a wired network between our machines because a wireless router is something what our pockets can't afford. What should I do for it? What type of wires and stuffs do I need? I Googled for some link for doing so in FC10 but couldn't find.

View 6 Replies View Related

Fedora Installation :: Fc10 Booting Became Slow

Mar 30, 2009

I was forced to reinstall fc10 a couple of days back and from them the bootingup is really slow(takes more then 1 minute to show login screen). before the reinstall, it was quite fast. i dont know what went wrong.

[Code]....

View 2 Replies View Related

Fedora Servers :: FC10 Hangs On SMB Service?

Apr 16, 2009

I recently setup a file sharing server with FC10 running Samba...

I got it running perfectly and it ran great for a few weeks. I was working on the machine today and tried to reboot it and noticed that it was stuck on FC10's new boot screen. I pressed the esc key and saw that the boot process was stuck on the smb service...

I don't get any errors and the machine doesn't freeze up or anything, it just hangs on the smb service and won't continue with the boot...

Is there anyway that I can get the system to skip the smb service so that I can get into the system? I don't know what's changed or what's causing this sudden hang in the system at boot.

I tried the ubuntu live CD to attempt to go in and edit the /etc/rc5.d scripts to try and skip the smb service start but I am not sure where to look for it...

View 4 Replies View Related

Fedora Installation :: Install Systemc V2.1.0 On Fc10 With Gcc 4.3.2?

Apr 16, 2009

I am trying to install systemc v2.1.0 on fc10 with gcc 4.3.2. I have gone through the previous posts for systemc installation with gcc 4.3.2 and have installed the patch ,
added the following headers in systemc-2.2.0/src/sysc/utils/sc_utils_ids.cpp

#include "string.h"
#include "cstdlib"

but it did not work out.This is what I get The complete installation process is as follows

$tar xvzf systemc-2.1.v1.tgz
$cd systemc-2.1.v1
$wget http://www.kix.in/misc/patch_systemc-2.1.v1-gcc4-osx // patch from post
$patch -p0<patch_systemc-2.1.v1-gcc4-osx

[code]....

View 1 Replies View Related

Fedora Installation :: Cant Execute Firefox-3.0.10 In FC10?

May 3, 2009

After to download the firefox-3.0.10.tar.bz2I have the next problem

Code:
firefox-3.0.10]$ ./firefox
./run-mozilla.sh: ./firefox-bin: /lib/ld-linux.so.2: bad ELF interpreter:

[code]....

View 11 Replies View Related

Fedora Installation :: Can't Install IE24linux On FC10

May 27, 2009

installing IE on FC10 as I need it to access company email I installed wine first as #yum install wine* then I installed cabextract as #yum install cabextract after that I downloaded IEs4linux and run the script ad $./ies4linux I got the following message in the terminal "IEs4Linux 2 is developed to be used with recent Wine versions (0.9.x). It seems that you are using an old version. It's recommended that you update your wine to the latest version (Go to: [URL])" and in the install window script couldn't download flash and it seems to be hang every thing is stopped and I didn't get any message in terminal or in installation window.

View 1 Replies View Related

Fedora Installation :: FC11 Over With The Same Packages As In FC10

Jun 9, 2009

I'd like to try a clean install instead of an upgrade from FC10 to FC11. What is a good way of getting the list of all packages that were installed through yum, and how do I feed that list to yum on a newly installed FC11?

View 7 Replies View Related

Fedora Servers :: Restore RPM Packages (fc10)?

Sep 10, 2009

I made a big mistake on my FC10 machine-while trying to resolve a way to install vlc- I wrote the following command:"yum erase rpm lib".After restarting the machine fedora did not load... (might be funny- I laughed...).Do you know of a way top recover from this state? (I have the liveCD disk),

View 2 Replies View Related

Fedora :: Eth0 Not Coming Up On Boot, FC10

Oct 17, 2009

Sometimes (but not every time), when booting my Dell Inspiron 530, eth0 will not come up right away. I can boot and log in to Gnome, and the NetworkManager applet shows that the ethernet cable is unplugged. After sitting for 5-10 minutes, it will link up and everything works. If I unplug the network cable and plug it back in, it comes right up. But once it's linked, it works fine and never disconnects after that. I've tried switching to a different port on my switch and a new ethernet cable. So I suspect it's some sort of weird kernel problem. I checked /var/log/messages and the only thing that looks weird is:

Oct 17 07:51:49 obi-wan kernel: e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k6
Oct 17 07:51:49 obi-wan kernel: e1000e: Copyright (c) 1999-2008 Intel Corporation.
Oct 17 07:51:49 obi-wan kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level,

[Code].....

But I have a second Inspiron 530 that has the same entry and it works fine. Has anybody seen a problem like this? I've looked around and so far can't find out the exact issue. I've upgraded NetworkManager to the latest version for FC10

View 3 Replies View Related

Fedora Networking :: DNS Broken After Upgrade To FC10?

Oct 20, 2009

I recently upgraded my x86_64 system from FC8-FC10 using Pre-Upgrade, and here I got some help fixing all the package conflicts that resulted. Following the first reboot after this massive package update, it appears DNS doesn't work in some apps.

I could ping www.yahoo.com, and nslookup www.yahoo.com resolved the name, but firefox and links couldn't. Typing the ip addr that nslookup gives for www.yahoo.com works fine in both firefox and links. Something's obviously wrong with DNS.

I found a workaround for Firefox which is to browse to about:config and set network.dns.disableipv6 = true. Firefox started resolving names after that.

But then I noticed yum is DNS incapable as well. I don't know how to fix it. Here's what I get:

Code:
[~]$ sudo yum update
Loaded plugins: allowdowngrade, refresh-packagekit
http://linuxdownload.adobe.com/linux/i386/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-2, 'Name or service not known')>
Trying other mirror.

[Code]....

Does anyone have any additional info on workarounds or fixes for this DNS problem?

The machine in question has a static ip addr, and I have static nameserver addrs in /etc/resolv.conf, corresponding to the static settings provided by my isp.

View 14 Replies View Related







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