Ana makine localhost'tan başka bir bilgisayar olduğunda PostgreSQL bağlantı URL'si nasıl oluşturulur?
PostgreSQL'in dışarıdan gelen istekleri kabul etmesine izin verdim.
Ana makine localhost'tan başka bir bilgisayar olduğunda PostgreSQL bağlantı URL'si nasıl oluşturulur?
PostgreSQL'in dışarıdan gelen istekleri kabul etmesine izin verdim.
Yanıtlar:
İlgili dil için Libpq bağlaması kullanırsanız, belgelerine göre URI aşağıdaki gibi oluşturulur:
postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]
Aynı dokümanın örnekleri
postgresql://
postgresql://localhost
postgresql://localhost:5432
postgresql://localhost/mydb
postgresql://user@localhost
postgresql://user:secret@localhost
postgresql://other@localhost/otherdb?connect_timeout=10&application_name=myapp
postgresql://localhost/mydb?user=other&password=secret
postgresql://localhost/mydb?user=other&password=secret
hile yaptı
Aşağıdakiler benim için çalıştı
const conString = "postgres://YourUserName:YourPassword@YourHost:5432/YourDatabase";
İşte JDBC için belgeler, genel URL "jdbc: postgresql: // host: port / database"
Bölüm 3 burada ADO.NET bağlantı dizesini belgelemektedir, genel bağlantı dizesiServer=host;Port=5432;User Id=username;Password=secret;Database=databasename;
PHP belgeleri burada bize , genel bağlantı dizesi
host=hostname port=5432 dbname=databasename user=username password=secret
Başka bir şey kullanıyorsanız, bize söylemelisiniz.
postgres sözdizimi için bağlantı url'si:
"Server=host ipaddress;Port=5432;Database=dbname;User Id=userid;Password=password;
misal:
"Server=192.168.1.163;Port=5432;Database=postgres;User Id=postgres;Password=root;
anasistem ya da anasistem adı uzak sunucunun ip adresi olabilir ya da ağ üzerinden bilgisayar adına göre erişebiliyorsanız, bu işe yaramalıdır.