red5 server installer - red5

I installed Red5 Server and when I run http://localhost:5080 it shows that red5 is installed successfully. But when I try to run installer folder, it gives error as follow:
Host: localhost >Trying to connect
Net status: NetConnection.Connect.Rejected
Net status: NetConnection.Connect.Closed
Trying to connect to war location

I had installed it on Linux box and was facing the same problem when accessing URL from remote machine browser using IP. the problem was in my firewall settings, it needs two ports basically, Port - 5080 to open on http and Port - 1935. I had opened the port 5080 but 1935. after opening up the later i was able to access it.
Hope this helps you.

type http://your_ip:_port to your browser
ip: your specified while installation of red5
port: your specified port number in installation
you will see installer link, click on, then choose each Demo and click Install
after both installation progress, check your red5 installation directory for installed demos.Also you will be able to launch demos in http://your_ip:port/demos/ page.
NOTE: I assume that you started red5 service on pc, otherwise go services.msc and start red5 service before these

Related

Hugo webserver not reaching my Windows vm

I want to test my website on edge and internet explorer so I tried using a windows VM, I am currently on linux mint 19.1, I start the gohugo server with "hugo server --disableFastRender" and create the VM in virtualbox using bridged adapter but I cant load localhost:1313 on the vm.
I tried using NAT and port forwarding but I have the same results, also tried the conection between the host and VM using ping and the VM can reach the host but the host cant connect to the VM so I guess that the problem is there but I dont know what to do now. The place where I am working uses IPv6 and I never worked with it before so maybe it has something to do with that
Start your site as usual with hugo server, which makes it available at http://localhost:1313
Leave your Windows VM network settings at their defaults
In your Windows VM, navigate to http://10.0.2.2:1313 to hit your hugo site
In a nutshell, 10.0.2.2 on your Windows VM (its default gateway) is equivalent to localhost on your linux host.
You can get the default gateway of your Windows VM by running ipconfig in Command Prompt.

Not able to run Red5

I was following the instructions mentioned in below link to install 'Bigbluebutton'
http://bigbluebutton.googlecode.com/svn-history/r3300/wiki/InstallingBigBlueButtonCentOS.wiki
After the installation of Red5 I started the service successfully with
service red5 start
But I am not able to access http://:5080/ from the server or from other machines to continue with the installation. Running 'netstat -tulpn' does not even list port 5080. Red5 properties file is configured with port 5080 only.
Any idea what would be wrong?
I'm the product manager for BigBlueButton. Your trying to install on CentOS, and we've not supported the CentOS packaging for many years.
See our FAQ for more details
http://docs.bigbluebutton.org/support/faq.html#centos

Glassfish 4.x doesn't work on Windows 8.1

i've been trying lately to run my web application on Glassfish, i tried with netbeans and intellij and both show the same error :
could not start Glassfish server :DAS port is occupied while server is not running
or
Could not start GlassFish Server: Administrator port is occupied by null
i'm sure that the port 4848 is not occupied (8080 too)
And when running intellij on Windows 7, it worked, so what's the problem when running it on Windows 8.1?
I guess its a permission problem. You should check if the windows user you are using has the right permissions to start and modify GlassFish files.
Check the permissions of your domain folder (probably <GLASSFISH_INSTALLATION>\glassfish\domains\domain1), you should have all permissions (total control) on this folder. If this doesn't help, you may have to check the permissions of the whole <GLASSFISH_INSTALLATION> folder.
Other things to check:
Windows Firewall
check if ports are really free: netstat -aon | find ":4848"

Instaling Red5 onWindows 2012 x64

I am trying to install red5 1.01 on windows server x64 with java se 7
i follwed this
http://juankpro.com/wordpress/2011/01/26/what-is-and-how-to-install-red5-in-windows/
Now, if i install to ip 127.0.0.1:5080
i can see the video (saying your are working).
but if i put the servers ip in with :5080 (externaly) i get nothing.
So if i install iwht server ip. i can acesss it from external and internal (but this video sayoing working is not there i get a blank screen
cananyone throuw and light on this please.
also i canot get the deoms to install. :} there java 6, i dont want to install j6 for obviuos reason.
just bind ip with 0.0.0.0 then port forward with required port let say 5080 etc., appart from the allow the Red5 with behind the firewall., thats it now everybody can able to see you...

Apache Tomcat not working in every web browser installed in Windows7 32Bit

I'm working on a web application in JSP and my web container is Apache Tomcat 7.0.2 (Its portable cross-platform version). As I've made extensive use of HTML5-CSS3 and my target browser is Google Chrome, I'm able to run the the Apache server only in Opera web browser, neither of the remaining installed browser run it.
Here's the steps I have followed to start the server in my Windows 7 machine.
-Installed the Apache Tomcat service in Windows from apache-tomcat-7.0.2/bin/service.bat
-Started the service with tomcat7w.exe
-As my default port is 8080, I open 'http://localhost:8080/' in various web browsers, and I could see Apache Server Homepage with same address only in Opera Web Browser (11.01), neither of other browsers installed can open it (Chrome 9, Firefox 4 Beta 11 or IE8) and show standard page not found message.
-I also tried other port numbers, but none of them worked.
What can I do to make Apache run in every browser installed in my computer?
I have my computer dual boot with Windows 7 and Ubuntu 10.10, and in Ubuntu, every web browser installed can run Apache once I start it, but same is not working in Windows.
Update:
I have also tried apache's windows-only installer of version 7.0.8 and changed the port number during installation, but still I can't run it on any other browser expect for Opera...
Any help will be appreciated............
Thanks.
Check your hosts file under C:\Windows\system32\drivers\etc\hosts to make sure that the entry for
127.0.0.1 localhost
is intact. Also see that if you are behind a proxy server, the settings allow for localhost to be bypassed.
Congo!! finally got it done, instead of localhost, it works with 127.0.0.1 (which is localhost anyway)
So those who are facing similar issues, as suggested by adarshr, go through your hosts file to see if localhost is correctly addressed to 127.0.0.1, or if you don't want to edit that file, you can still get it done by simply using http://127.0.0.1:8080/ instead of http://localhost:8080/. Please be sure about port number you are using, in my case it was 8080, it might vary depending on how you've configured.