Question How to update PostgreSQL on Plesk 12.5

sage12

New Pleskian
Versatile high-end turbocharger stainless steel spring faucet
Sink faucet withstands hot water
Conduit tubes can be adjusted according to the direction the user needs
Kitchen faucet can rotate 365 degrees, like which direction to rotate that direction
There are 2 types of spray, adjusted by push button at the tip of the nozzle, in addition to the water filter to prevent water from splashing out, the pressure of water spraying from the head of the dishwasher hose will help the housewife to discharge the dust. dirt on fruits and vegetables, convenient for cooking, washing chopsticks, utensils and household items
Water pressure increased 2 to 3 times compared to conventional dishwashing faucets, average water savings of 30 to 50%
High-pressure turbo spring washer faucet
Flexible kitchen faucets are designed in a spring shape, which makes it easy to move, break or break according to the user, with large items in the skin, according to the experience of buying dishwasher, this is the most suitable type of faucet. For your homeowners, with powerful water rays make your vegetables more clean than ever.

Dishwashing hoses made of stainless steel are preferred because of their high resistance to oxidation and corrosion, ensuring durability when used. With versatility or can rotate around 360 degrees is suitable for large type cup sinks
If your family often has to wash high-sized or large-sized items such as flower vases, glass jars ... then you need to buy dishwashers that can change the height to be flexible in many cases. .
A hose that is equipped with a filter is also a concern when you buy a dishwasher. The filter attached to the nozzle will help regulate the amount of water reduced by 50% to save water for your family. When you need normal water flow, you can remove the filter conveniently. High-end filters are also capable of removing heavy metals, some harmful substances in the water.
Spring sinks are selected by many families with many outstanding features

See more: Lost friends due to busy school life?
 
Last edited:
Plesk doesn't ship postgresql server, it only downloads it from original OS vendor repo and it is quite likely it may be outdated there (especially for older OS). If your OS comes with postgresql 9.4, then Plesk would run it for clients.
So, you can upgrade it on OS level, maybe from third-party repositories.
 
Connect to a Plesk server via SSH.

Create a new PostgreSQL database cluster:

# postgresql-setup initdb

Start PostgreSQL:

# service postgresql start

In Plesk, go to Tools & Settings > Database Servers > PosgreSQL > enter Plesk admin password.

Make sure that /usr/local/psa/admin/bin/pg_manage is a symbolic link to /usr/local/psa/admin/sbin/wrapper:

# ls -l /opt/psa/admin/bin/pg_manage
lrwxrwxrwx 1 root root 15 Aug 26 2015 /usr/local/psa/admin/bin/pg_manage -> ../sbin/wrapper

If not, then remove this file and create a symbolic link:

# ln -s /usr/local/psa/admin/sbin/wrapper /usr/local/psa/admin/bin/pg_manage
 
Back
Top