ORDS installation on TOMCAT 9 - oracle-apex

I am new to this job.
- First I have installed Apache tomcat with the port 8085 in Windows Server 2016. (Let's name this as SVR1) Then I have installed ORDS on tomcat Apache as the web listener.
- I could access apex application as ADMIN with the following URL from SVR1. http://localhost:8085/ords/
But my problem is when i change this URL to http://SVR1:8085/ords/ the it doesn't give me the apex application login page as earlier.
Please help me and guide me to fix this issue.

Related

How can i see my installed Django on Centos 7 server?

I newly installed django on centos 7 server but how can i see my working django website.
I have server ip address and also website. Firstly Do I need to change the domain dns with the server ip address?
In addition i didnt installed to the root, i installed django to the root/iki path.
It seems you didn't deploy your app and just installed Django. For deploying your Django app on a server you should use nginx.
You can find a good guide for Django deployment here.

Geoserver on GCP https

I installed GeoServer with tomcat on a ubuntu VM on Google Cloud Platform. It was working fine till I got an SSL certificate for the website. When the website runs on HTTPS, the wms links from Geoserver do not work. I get this error in the console.
net::ERR_SSL_PROTOCOL_ERROR
I tried adding the proxy base URL, but that changes nothing. How can I get these WMS links to work with HTTPS?
Following this tutorial from the tomcat documentation worked. I reinstalled tomcat and imported the certificates from the GCP. And now, the wms links work but with a privacy warning (I guess that's something to do with how I imported the certificates.).

Deploying LB4 appplication on Apache server

I have tried deploying my Loopback 4 application on Apache running on a CentOS 7 server. I followed the instructions given here for Nginx but the proxy pass through is not working on Apache. Is there any documentation on how to deploy a LB4 application on Apache?
This is not a complete answer as there was no response on the equivilent GitHub issue to better understand the user requirements.
The official Apache 2 docs This should be a good starting point to mapping NGINX's configuration to Apache 2.

Visual Studio 2017 Enterprise, IIS 10, Windows Server 2016, Web Deploy 5 Error: "Make sure that Web Deploy is installed"

I installed IIS, Started Web Management Service, and Installed Web Platform Installer, checked the port, windows firewall is not enabled, shut down and started up, but still get the error that web deploy isn't installed when I try to publish with Web deploY in Visual Studio. What other configuration can I check to get the Web Deploy to complete?
Visual Studio 2017 Enterprise, IIS 10, Windows Server 2016, Web Deploy 5, ASP.net 4.6
Could not connect to the remote computer ("aspnet-dev"). 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. The remote server returned an error: (404) Not Found
Could not connect to the remote computer ("aspnet-dev"). 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. The remote server returned an error: (404) Not Found
According to your error message, it seems you used the wrong server address. The web deploy could find the remote server("aspnet-dev").
Could you please tell me which server named "aspnet-dev"? On your current server or remote server?
If you just want to publish the web application to current server (VS is installed in the IIS server) ,I suggest you could firstly open the current IIS management console to make sure you have used the right server name and IIS web applicatio name.
Like below:
Then I suggest you could open the Web Platform Installer to check you have installed the web deploy.
If you want to publish the web application to remote server (VS isn't installed in the IIS server), I suggest you could use the server's IP address or domain instead of the server name like below:
https://yourhostname:8172/
Besides, I suggest you could refer to below article to generate the web deploy publish setting and use it to publish the web application to remote server.
https://learn.microsoft.com/en-us/visualstudio/deployment/tutorial-import-publish-settings-iis?view=vs-2017
More details about how to use web deploy to publish web application to remote server ,I suggest you could refer to below article:
https://learn.microsoft.com/en-us/aspnet/web-forms/overview/deployment/configuring-server-environments-for-web-deployment/configuring-a-web-server-for-web-deploy-publishing-web-deploy-handler

Django Deployment on windows

I am learning python and Django now. I have a question related to deploying Django project on windows 7. I know how to start the test server in django and see the project. But I have to do start the server manually every time I restart the PC. Also I have to keep the terminal window open.
Consider the below scenario for php projects.
We copy and paste the php files in htdocs or www folder in apache server and access them using the respected url. Web Server is running in the background. We dont have to start the server on windows restart.
Is something similar possible with Django on apache or any other server?
If yes, how should I go about it?
Thanks in advance.
For anyone stumbling around for an answer to a similar problem with deploying Django on a Windows server, here is a guide
Deploy Django with Apache and mod_wsgi on Windows Server 2019
To have Apache24 service automatically run on startup, make the changes in Windows Services dialog.