October 2023

Exporting Web.config AppSettings to CSV using PowerShell

Managing configurations is a critical part of ensuring that applications run correctly across different environments. In .NET applications, configurations such as appSettings are often stored in a Web.config file. At some point, you might find it essential to export these settings to a CSV file. This will enable you to analyze, share, or create backups

Exporting Web.config AppSettings to CSV using PowerShell Read More »

How To Allow PostgreSQL Connection From Remote IP

In the last line, add the following details: Open postgresql.conf Find #listen_addresses = ‘localhost’, then uncomment and replace with the following values: listen_addresses = ‘*’ and save the file. What this does is, it opens connection for all IP range inside 10.116.0.0/20 subnet only. Next, let’s restart PostgreSQL service.

How To Allow PostgreSQL Connection From Remote IP Read More »

How To Install PostgreSQL On Ubuntu Linux

Postgres, also known as PostgreSQL, is a system for managing databases that uses the SQL language. It follows standard rules and offers advanced options like reliable transactions and the ability to handle multiple tasks simultaneously without causing reading delays. The tutorial explains how to set up Postgres on an Ubuntu 20.04 server. It covers the

How To Install PostgreSQL On Ubuntu Linux Read More »

Scroll to Top