sudo apt install postgresql-11 pgadmin3
sudo -u postgres psql
CREATE DATABASE veritabaniAdi;
CREATE USER veritabaniKullaniciAdi WITH PASSWORD ‘Password’;
GRANT ALL PRIVILEGES ON DATABASE veritabaniAdi TO veritabaniKullaniciAdi;
\q
sudo nano /etc/postgresql/11/main/pg_hba.conf
“host all all 172.0.0.1/32 md5” satırı yerine izin verilecek ip bloğu yazılacaktır.
sudo nano /etc/postgresql/11/main/postgresql.conf
listen_addresses = ‘localhost’ muhtemelen pasif gelecektir yerine listen_addresses = ‘*’ yazılacaktır.
sudo systemctl restart postgresql.service
sudo apt install phppgadmin
sudo apt install apache2
sudo systemctl restart postgresql.service
sudo apt autoremove
ilgili sunucu ip_adresi/phppgadmin/ ile web üzerinden giriş yapılarak postgresql vt kullanılabilir.
Sürümler arası upgrade güncelleme işlemleri için:
tıklayınız!.