11 Ekim 2019 Cuma

Postgresql'de FATAL:  password authentication failed for user "postgres" Hatası Çözümü


Pgadmin3'ü  ya da psql -U postgres -h localhost -p 5432 -W çalıştırdınız fakat sürekli ;

FATAL:  password authentication failed for user "postgres" hatası alıyorsanız, yapmanız gerekenler şunlar.

1. Bilgisayarınızda 1 adet postgres kullanıcısı oluşmuş olmalı ona bir şifre verin. O şifre ile text ekran ya da terminal aracılığı ile psql çalıştırın. (posgres superuser özelliğine sahip olduğu için.)
2. Postgresql açılacaktır. Postgresql içersinde;

alter user postgres with password "bir adet şifre"; enter yapıyoruz.

26 Şubat 2019 Salı

Python'da Basit Text Menü Yapımı

def main():
    print("1. Birinci Seçenek\n2. Seçenek\n3. Seçenek")
    sec = int(input("Seçiminiz : "))
    if(sec==1):
        slm()
    elif(sec==2):
        mls()
    elif(sec < 1 or sec > 2):
        print("Kapat Programı")
        input()
        quit()     
def slm():
    print("1.")
    input("")
    main()
def mls():
    print("2.")
    input("")
    main()
if __name__ == "__main__":
    main()