Skip to main content

Questions tagged [postgresql]

PostgreSQL is a powerful, open source object-relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, Tru64), and Windows.

0 votes
0 answers
97 views

Does anyone know how to restore projects from Gitlab files that were deleted after updating Gitlab? I need to restore 300+ repos and therefore they need to be restored automatically. I tried to ...
Aligator's user avatar
0 votes
0 answers
143 views

I've got a problem with upgrade to version 18 of PostgreSQL. It is a local development server, which I usually treat as disposable and doesn't contain important data. Unfortunately, this time I've got ...
j0hny's user avatar
  • 185
0 votes
0 answers
101 views

We have PostgreSQL 14 on Windows Server 2019 where autovacuum processes crash the database server. This is affecting our production environment with 80+ daily users, and I need urgent assistance. ...
조성준's user avatar
0 votes
0 answers
69 views

I am running into a problem with rundeck community version 5.16.0 where I start the service and after about a minute the service stops itself. It looks like an error when trying to connect to the ...
cnrdvdsmt's user avatar
2 votes
0 answers
92 views

I've just tried to install the docker version of onlyOffice an my Mageia9 server. The postgresql database seems correct : /var/lib/pgsql # psql -h localhost -U onlyoffice -d onlyoffice Password for ...
Xuo's user avatar
  • 21
0 votes
0 answers
94 views

I have a problem similar to https://dba.stackexchange.com/questions/185622/how-do-i-change-postgresql-to-be-listening-on-port-5432 , though not necessarily exactly the same. If port is defined as 5432 ...
LetMeSOThat4U's user avatar
0 votes
1 answer
170 views

I am trying to get basic setup working for remote access to postgresql server. I have postgresql.conf: listen_addresses = '*' and pg_hba.conf: host all all 0.0.0.0/0 ...
Sami Hulkko's user avatar
0 votes
0 answers
85 views

After upgrading a Rails app server from Ubuntu 22.04.5 to 24.04.2, my Rails app will not start, nor can I run rails db:migrate. I see this error: ActiveRecord::DatabaseConnectionError: There is an ...
John Skiles Skinner's user avatar
0 votes
1 answer
596 views

I followed the instructions here to install the custom Yum repo. It looked like it installed correctly. But then yum install can't find the postgresql16-server package. I ran sudo yum repolist, and I ...
Mike Baranczak's user avatar
0 votes
0 answers
49 views

my org is using gcp's postgres server as our production db. past few months, we've been busy with projects not related to db specifically, so no one was monitoring anything. (screenshot below) (first ...
hjpotter92's user avatar
1 vote
1 answer
333 views

I need to set up Single Sign-On (SSO) for a PostgreSQL 16 database running on a RHEL 9 Linux server. My goal is to provide passwordless access to users who are part of a particular domain (for ex: ...
aashoo's user avatar
  • 161
0 votes
0 answers
55 views

I've updated the VM's firewall-cmd stuff and it shows VM Firewall-cmd --list-all I've opened the vcn ingress rules, Ingress Rules I'm trying to connect with pgAdmin4, but NO.... pgAdmin And being a ...
Mike Dickerson's user avatar
0 votes
2 answers
138 views

I've dumped a database from a single standard postgres database (official docker image). It was originally migrated from sqlite, but I couldn't use pgloader with the target cluster of 4 replicating ...
gauteh's user avatar
  • 123
0 votes
0 answers
116 views

We are running pgpool II with three PostgreSQL DBs - one main and two replicas. The env is running in k8s deployed with bitnami postgresql-ha helm chart. The pgpool II configuration is as follows: We ...
sposnjak's user avatar
  • 101
0 votes
0 answers
177 views

I’m experiencing an issue with the connection between my PostgreSQL database (a cluster managed by Patroni) and HAProxy. Everything in the application that uses the database works fine, and I don't ...
piotras's user avatar
0 votes
0 answers
133 views

I have developed a web application using Laravel and PostgreSQL as the database. The main function of my application is to process large volumes of data from the database, with tables ranging from a ...
Billy's user avatar
  • 1
1 vote
1 answer
210 views

We have a template database with schemas, tables, sequences etc. We create a new database from it and provide ownership of the new database to a user (a new user created as part of this workflow). The ...
Jayadevan's user avatar
  • 160
0 votes
0 answers
83 views

We have a postgresql table database with a table which has 150M+ records inside. Also this table is pretty much a core table where almost everything is referenced to. So here is the deal; we need to ...
Harun Barış Bulut's user avatar
0 votes
1 answer
104 views

Recently I have migrated old Veeam to a new Virtual machine. The new Virtual Machine: Windows Server 2022, Veeam 12.3, PostgreSQL 15 which is running on the same VM. Currently I am monitoring some ...
revolt's user avatar
  • 3
1 vote
1 answer
518 views

I try to write custom jail for PostgreSQL. My log line looks like this: 2025-01-24 14:43:17.769 CET [112253] postgres@postgres FATAL: no pg_hba.conf entry for host "x.x.x.x", user "...
Karol Mróz's user avatar
3 votes
1 answer
401 views

Background I'm planning to set up a PostgreSQL/PostGIS server on RHEL 9.4 as part of migration work from an older version of RHEL and am comparing upgrade paths from a stability perspective. If I ...
Yuki Sasaki's user avatar
0 votes
0 answers
17 views

I have a Almalinux server from Hetzner 12 cores CPU and 128 GB RAM and then installed psotgres and everythings went ok. but nowadays postgres drains cpu and memory and the server IP blocked by data ...
H.Rad's user avatar
  • 1
0 votes
0 answers
121 views

I have two postgresql nodes, pg-0 and pg-1, master and replica. They are running on different machines with a 25bg/s bandwidth, 8gb ram and an AMD Epyc processor. Inside i have 6 dbs totaling 1.5gb, ...
Nicolò Rancan's user avatar
0 votes
1 answer
240 views

I seem to be having an issue with auto_failback, pgpool detects that the node is back up but it wont reattach it. I am running postgres 17 and pgpool2 4.5, this is config listen_addresses = '*' port = ...
AvremyC's user avatar
  • 141
6 votes
1 answer
2k views

So, my friend says swap is an old concept and shouldn't be needed on new systems as long as you have enough RAM. But then I heard suggestions that swap might actually be required when using Postgres ...
Nux's user avatar
  • 703
1 vote
1 answer
185 views

I enabled SSL on my PostgreSQL database and enforced it using pg_hba.conf with the following line: hostssl all all 0.0.0.0/0 md5 From the PostgreSQL connection logs and network traffic captured via ...
Ravexina's user avatar
  • 113
0 votes
1 answer
1k views

In PostgreSQL, I have the following configuration in pg_hba.conf: local all sec_eng scram-sha-256 host all sec_eng scram-sha-256 hostssl all app_server ...
lmo's user avatar
  • 3
1 vote
1 answer
1k views

Suddenly my postgresql service started crashing for some reason. I wanted to generate coredump file but file is not generating. I set: "ulimit -S -c unlimited", also added line "*soft ...
plastikman156's user avatar
0 votes
1 answer
1k views

I think I have exhausted everything I can think of. Using postgresql 16 If I try to connect with psql -d dbname -h localhost it prompts for a password and connects just fine. However, if I try to ...
E J's user avatar
  • 1
2 votes
0 answers
157 views

Hi everyone I am trying to install Postgresql 16 on my freebsd 14.1 hosted in an ec2 machine on AWS. I am using GCC13 to compile the binaries and I keep on running into gcc13: fatal error: cannot read ...
Moksh Chadha's user avatar
1 vote
0 answers
195 views

I want to upgrade a large PostgreSQL database using the following command: docker-compose exec db pg_dumpall -U app | docker-compose exec -T db16 psql -U app I expected the upgrade to require roughly ...
gucki's user avatar
  • 848
0 votes
1 answer
458 views

I have a backup shell script which runs pg_basebackup every night. When I try to run it though I get this error message saying that pg_basebackup is apparently not compatible with Postgres.app version ...
QGuy's user avatar
  • 1
2 votes
1 answer
970 views

At work we've been running into a sort of mysterious problem. Every few hours, one of our tables (tasks) sees query latency grow (caused by CPU use) followed by a burst of LWLock:BufferContent, then ...
mattbasta's user avatar
  • 699
0 votes
2 answers
577 views

macOS Sonoma 14.2.1 (23C71), just updated to 14.5 (23F79) Story I had a python script (norgis ALKIS-Import) importing a lot of Data into my Postgres Database over the weekend. When I came back today ...
QGuy's user avatar
  • 1
2 votes
2 answers
4k views

I am a complete beginner on PostgreSQL, and I am following an introduction to databases to set up a local PostgreSQL database and connect to it. I am running Debian 15, so I do the following: # apt ...
HubbaBubba2000's user avatar
0 votes
1 answer
239 views

Windows host with Vmware Workstation, and a linux guest. I have another Windows host with PostgreSQL running on localhost:5432. I established NAT connection to be able to use Internet in VM. Vmnet1 ...
isuho's user avatar
  • 3
1 vote
0 answers
65 views

For R&D matters i need a small postgresql server. As I am totally naïve to google cloud platform, I don't understand the way google bill an instance. The VCPUs are typically factured on a sub-...
Erwan Bigorgne's user avatar
0 votes
1 answer
424 views

We are developing a SaaS product which is an easy to use invoicing software. We are using React for the frontend app and Node (with fastify web framework and sequelize as ORM) for developing a RESTful ...
Prakhar Pandey's user avatar
-1 votes
2 answers
280 views

If a company is using many different software, is there a way to automate version tracking - comparing current version being used in the company and latest version released, and maybe taking actions ...
Arpi's user avatar
  • 1
0 votes
1 answer
481 views

Do we need 3 VMs to set up pacemaker virtual IP to maintain quorum? I currently have two VMs running Postgres bi-directional replication. I want to create one IP address for communication. How to ...
user3924427's user avatar
0 votes
0 answers
365 views

I've been encountering an issue that has been bothering me for a while now. I have a Google Cloud VM running an Ubuntu 18.04 server with several containers, including a PostgreSQL server, a Redis ...
user586883's user avatar
1 vote
1 answer
5k views

I'm really scratching my head. I was under the impression that newer versions of pg_dump can export from older versions. However, I keep getting this error: pg_dump: error: aborting because of server ...
FlavorScape's user avatar
0 votes
2 answers
2k views

I have a PHP application that connects to a Postgresql Database. This works when I connect via network but I get an SELinux violation when trying to connect using the socket. I believe the contexts ...
Chronocide's user avatar
0 votes
1 answer
156 views

What is the best way to migrate postgres-9 database with size of hundreds GB to postgres-11 ? I'm afraid that third party tools will take too long to do this.
foobar's user avatar
  • 5
2 votes
0 answers
125 views

We currently have Bacula Enterprise v12 installed on our production. We seem to have a problem with BWEB regarding the logs of any job. it takes forever for the web interface to load the logs. After ...
bill saplam's user avatar
0 votes
0 answers
376 views

I have a database instance (PostgreSQL v12.6) on Google Cloud and since 10 days ago, the Storage of Database is increasing rapidly. Here's my Observations: list of Dtabases Dashboard of Disk Space ...
RAM's user avatar
  • 1
0 votes
1 answer
580 views

Hello PostgreSQL experts! I'm running a postgresql 15 server with multiple database instances ("clusters"), which uses Netapp NFS as storage for the data and WAL directories. I'm trying to ...
b2c's user avatar
  • 21
0 votes
2 answers
316 views

I developed a Java Spring Boot application with a PostgreSQL database. Since the data being processed is quite a lot, the processing can take time and it uses a lot of CPU (e.g. up to 100% obviously). ...
BullyWiiPlaza's user avatar
1 vote
1 answer
4k views

I tried using below playbook to install postgres 12 on my ubuntu machine on both 22 and 23 versions of ubuntu. For installating postgres and set a default password to postgres user and create a new ...
user2331760's user avatar
0 votes
1 answer
341 views

I've got DataFusion and Cloud SQL Postgres up and running in a single GCP project. I can connect to my postgres instance successfully using pgAdmin (as long as I add my IP address to the allowed ...
tennisTechie's user avatar

1
2 3 4 5
40