Provision a PostgreSQL database on AWS for Django

Provision a PostgreSQL database on AWS for Django

Cloud With Django

1 год назад

6,937 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@inteliconn995
@inteliconn995 - 22.02.2023 21:57

Thanks!

Ответить
@0730pleomax
@0730pleomax - 23.02.2023 02:21

Nice

Ответить
@ajp1732
@ajp1732 - 23.02.2023 05:21

Thank you!

Ответить
@Coden69
@Coden69 - 23.02.2023 08:27

Ответить
@abbaskareem5281
@abbaskareem5281 - 14.03.2023 00:34

Hi sir, is it wrong if I create a postgres database in the EC2 instance along side my django server so that django get data from the same server so it will be fast . is this wrong ?

Ответить
@pyalgoGPT
@pyalgoGPT - 15.04.2023 20:04

Thannk u very much .
plz make video on implementing State-management concept of React-Redux on Django app for e-commerce cart management

Ответить
@sodisaada7874
@sodisaada7874 - 25.04.2023 15:34

Thanks a lot for your videos they completely saved me!!
I have a question, my db is on RDS, and I want to deploy my app on PythonAnywhere, after followed the steps in your videos I got: "Connection refused
Is the server running on that host and accepting TCP/IP connections"
I can deploy it on Pycharm but not on PythonANywhere (connect to same db)
I added inbound rules, changed settings of db...Do you know what can it be?

Ответить
@razorhxh7371
@razorhxh7371 - 15.09.2023 17:12

I am following the tutorial. AWS doesn't have postgres 13.4 anymore. What should I do?

Ответить
@lesnews9788
@lesnews9788 - 07.12.2023 17:17

Thank you, you really saved me

Ответить
@majidbenam1328
@majidbenam1328 - 18.01.2024 16:04

Awesome tutorial again. You are doing great man.

Ответить
@DaveArktechk
@DaveArktechk - 28.01.2024 03:04

very helpful thansk.

Ответить
@ВладиславБажин-г9ь
@ВладиславБажин-г9ь - 21.04.2024 12:24

Oh my goodness! Is this the best tutorial for this theme ever made???? Yes.

Ответить
@MrJDOaktown
@MrJDOaktown - 18.06.2024 06:37

Why should I use AWS RDS?
I don’t like generalizations that cover up details & keep me ignorant about what’s underneath the hood.
If I use RDS (as opposed to me just installing Postgresql on AWS EC2 Ubuntu) I’m concerned I won’t learn enough about my Postgresql install.

Ответить
@R3VNTplaysYT
@R3VNTplaysYT - 25.07.2024 12:20

Bro you saved me. Thank you

Ответить
@gagikkhalafyan8731
@gagikkhalafyan8731 - 07.08.2024 09:21

Amazing tutorial! Everything worked super smoothly. Thank you so much!

Ответить
@ProSimples
@ProSimples - 02.09.2024 19:12

PERFECT. Thank you very much it worked flawlesly.

Ответить
@deldridg
@deldridg - 02.11.2024 14:20

Very nice and thank you. Following your instructions was excellent and I managed to get things going. I can now even administer my RDS databases using pgAdmin4. However, having used pgAdmin4 to create a few new databases, they don't show up in my RDS console at all. Any ideas?

Anyway - no biggie. Just very grateful to you and cheers from Sydney, Australia - Dave

Ответить
@ARYANKUMAR-gz2qw
@ARYANKUMAR-gz2qw - 19.11.2024 10:06

you are a lifesaver, thank you so much , god bless you.

Ответить
@CloudWithDjango
@CloudWithDjango - 22.02.2023 21:00

# Amazon RDS PostgreSQL database - markup

DATABASES = {

'default': {

'ENGINE': 'django.db.backends.postgresql',

'NAME': '',

'USER': '',

'PASSWORD': '',

'HOST': '',

'PORT': '5432',
}
}

Ответить