red5 media server on windows 10 - red5

Help configure red5-recoder media server on localhost.
I had installed red5 media server (windows installer) on windows 10 with jdk (jdk installer).Everything done with no error. After installation I had run install-service.bat from the installation folder. I also started the server manually from "Control Panel\All Control Panel Items\Administrative Tools\Services".
localhost:5080 is running but when I try to access "http://localhost:5080/installer/" the flash throws error
`Host: localhost
Trying to connect
Net status: NetConnection.Connect.Failed
Trying to connect to war location`
Any help would appreciated.
Thanks.

That issue should be resolved by updating the war location (where the application wars are stored externally). The details are in this issue report https://github.com/Red5/red5-server/issues/180

Related

What is still missing in my attempt to host a blazor-server app?

I've been hitting my head against this wall for days now and to my knowledge I've followed every direction I've found. But I'm still getting a 500 Error when I browse to the URL.
What I've got to work with is a Windows Server 2012 R2 with IIS 8.5. I'm not married to IIS but I'd prefer not to dip into YET another tech just to get this running.
What I've done:
Old-style blazor-server app (with Program / Startup pair) without authentication. Dependencies:
SharpZipLib
LiteDB
published it using dotnet publish -o bin/publish --self-contained -r win7-x64
copied that folder to the server
On the server:
installed urlrewrite2
installed everything under Windows Features Word Wide Web Services and Web Management Tools
restarted
created a new site in IIS
set the application pool to unmanaged
set the physical path to the folder I copied from my dev system
What I haven't done:
Anything regarding Visual Studio as I'm currently forced to contend with Visual Studio Code and none of that applies/is possible here.
Provisional Workaround
running dotnet my.dll --urls http://*:1234 does work to expose the app to the network
the command needed to be run inside the application folder otherwise the app would fail to load the connection string.
I've also had to provision a production database and modify my appsettings.json accordingly
This is workable for now but not having the app "auto start" with the server is unsatisfactory.

VB.NET web application project docker deployment 403 Error(VS 2019)

I am trying to deploy vb.net web application project (.NET Framework) using Docker option of Visual Studio 2019 and have been running into "403 - Forbidden: Access is denied." error.
However, I am able to run the project by using IIS option.
I am new to both VB.Net and Docker. Please let me know if more information is required to answer this question.
IIS Logs ("How do I access Windows eventlog of a Docker container") attached as image here:IIS Logs
I am putting this answer here for any beginner who may struggle with this:
On running from Visual Studio 2019, using "Docker" option, I was getting an IP on the browser with an error "403-Forbidden". However, when I appended the webform.aspx to it, the error resolved.
So Instead of checking output at 172.24.152.32, I was supposed to view the output at 172.24.152.32/webform.aspx or localhost:52345/webform.aspx.
You just need to put a default document into the container. A simple index.html or default.html should do.

Installation of Thredds Data Server

I am trying to deploy Thredds war file in the Apache Tomcat 7 server on Windows Server 2012 R2.
When I started threads data server it is showing error massage like:
Application at context path/Thredds could not found.
I also gone through the Thredds server log files there error massage is displaying looks like:
tds.content.root.path property isn't defined.
How can I set tds.content.root.path property in the tds.properties file or using Java system properties ?
Please Guys help me out for this issue.
You'll want to specify tds.content.root.path in your <tomcat_home>/bin/setenv.bat. There's a tutorial for server setup here. It's Unix-centric, but hopefully you can use it to do the analogous configuration on Windows.

when start apache service wamp could not execute menu item access is deined

Environment:
Windows 8
WAMP 2.4 x86
Installed all those C++ lib packages saw in other posts
Troubleshooting done:
No error logged in either SQL / Apache error logs
Did not see any WAMP related service report in the windows event viewer
port 80 is NOT in use
Re-installed WAMP after install the packages
Error:
Received no error when try to click start serivice for mySQL,
but it will not start anyway,
since after I clicked it, the stop icon for mySQL is still grayed out.
and the main problem will be error message popup
when start apache service wamp could not execute menu item access is deined
I am pretty confused at this point as all the others nly have error message of service not starts, but I have error of access is denied as well when start Apache.
I don't know how to troubleshoot further to find the core issue....
Thanks
Silly Me.... forgot to copy the files INSIDE the www and data folders into the new location lololololol
The only step I missed..... Now it works perfectly :)
SO yea, whoever follow about steps and done above + copying those files in the original folder, the setup definitely will work!

How can I publish an MVC 4 application on visual studio?

When I try to publish it I get the following error message:
Error 1 Web deployment task failed. (Could not connect to the remote computer ("..*.*"). On the remote computer, make sure that Web Deploy is installed and that the required process ("Web Management Service") is started. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_DESTINATION_NOT_REACHABLE.)
I dont understand why is it referring me to a remote computer, I've specified the destination URL as my own IP address. And I have web management service checked on windows features.
How do I solve this particular error?
Try to publish to the file system, if this works move the files into you wwwroot, normally c:\inetpub\www.
then go to start and run inetmgr to open iis configuration manager, if you see your folder there right click and convert to application, accept settings then right click / manage / browse and you should see your site or an IIS error that should be easy to debug.
I never use the deploy to IIS feature from VS as it's pants.
Good luck!