.NET application posts to GearHost and works fine, but does not work on AWS - mysql

I have a web application that I would like to migrate from GearHost to Amazon Web Services (Elastic Beanstalk). The web application uses a mysql server that is hosted by GoDaddy. When I try to publish the project to AWS using Visual Studio, the publishing process goes smoothly and there are no errors, however I get a connection timeout when I try to access the site. If i replace https with http I get "HTTPS Required" which leads me to believe the issue is not with the server itself, but with my application.
Does AWS require you to use their database server?
Any help would be appreciated.
UPDATE: I tried an older version of IIS in the AWS settings, the webpage loaded once and now it does not work on refresh.

You don't have to use an AWS database, but you do need to open up the GoDaddy firewall to allow traffic to go back and forth between your new AWS website and the GoDaddy database.

Related

How to Automatic Update The Website Which is Hosted in Raspberry Pi Using Git?

Concept :
=>I have raspberry pi 3 B+ and installed apache2 web server which is running on port:80.
=>In /var/www/html/A/* here my lite weight website hosted.
=>I am able to access this website by typing "192.168.1.1:80" in chrome web browser.
Requirement :
I want to run a abc.py file from the html page which is running on
web browser.
How to handle the condition-
a. at the time of cloning the internet connection is lost
b. at the time of cloning the device suddenly switched off.
How to recover the code when raspberry pi again boot and internet connection is not available.
Is there any other secure and safe alternative for these functionalities ?
By using the PHP and cgi-bin i am able to run the python script from the ui button click.

How to connect Xamarin forms to mysql data base

I want to create a class which connect
to a mysql Server to all platform (IOS Android and windows)
how can I do that? is there a DLL or an API to use
Do not connect your App directly to your database. This will cause a huge secruity problem. Use web services instead. The web services will handle the interaction between your client and server.
Web Services
And if you are just playing around or sth here is an example.
Example

Google Earth Enterprise Portal 5.0 Accessible via localhost only

Good Morning. I have downloaded and installed GE Enterprise portal v5. When I start the application, it automatically launches the browser and sends me to http://localhost:9335. It loads just fine and I am able to view the image and polygon. I then close the server and open the portable.cfg and added the following line: accept_all_requests True, which us supposed to allow others to view and use the published globes and services from other machines. I then restart the application. When I try and navigate to my portal instance via another machine or via the named machine name http://9335 I get page not found. I have tried changing the ports, disabling my local firewall and HIPs with no luck. Are you supposed to be able to hit an instance of portal from a url other than localhost?
Thanks.

Server for mobile feed app (like Instagram, Twitter...)?

I've made a mobile native app with a feed system like Instagram/Twitter. In development mode I was just running a PHP/MySQL Apache local server, but now I need to publish the app and work with a real server. Which kind of server do I need? I just need to send http requests (JSON), loads of them!
Do I just need a hosting server like 1and1? (http://www.1and1.com/linux-web-hosting?__lf=Static)
But this one, it only has 1GB MySQL databases... not enough
Is there any kind of app/server whatever? Which kind of server does Instagram use?
These days lots of users are moving to the cloud.
Check out Amazon EC2: http://aws.amazon.com/ec2/
You can setup a micro instance server and it is very cheap to run tests on and get off the ground. Then if you like how it's running, you can simply upgrade to a more powerful server without having to re-install everything.
It also allows you to scale if your application gets really popular by just cloning the server.
Really worth checking out.

How to enable Windows Authentication for DNN

Sorry my question might be duplicate but i dint find any correct solution.So im posting this question again...
First i have deployed a DNN website with sql server authentication.Site was working fine.
Later we re installed the sql server 2008. So im trying to give windows authentication to connect the site.
In web config connectionstring:i have removed the username and password and gave Integrated security="true" .
In IIS :Site -> Authentication -> windows Authentication ->enabled and all others disabled.
once i browse the site is redirecting to DNN install Wizard
Need Help.
In SQL Server did you configure the Windows account that the application pool (in IIS) is using to have DBOwner access to the database?
Also make sure to change BOTH connection strings in the database.
Depending on what version of IIS you are on, that account might differ. Older versions likely would use "Network Service" while newer versions might also use "Network Service" or an application pool specific account like "iis apppool\dnndev"
You'll also want to make sure that you aren't trying to assign a DOMAIN account to the database, unless of course that is what IIS is configured to use (as opposed to a local account)