Search
 
SCRIPT & CODE EXAMPLE
 

SQL

install postgresql centos 5

# centos 5 32bit
rpm -Uvh http://yum.postgresql.org/9.1/redhat/rhel-5-i386/pgdg-centos91-9.1-4.noarch.rpm
yum install postgresql91-server
/etc/init.d/postgresql-9.1 initdb
service postgresql-9.1 start
chkconfig postgresql-9.1 on
Comment

install postgresql 10 centos 7

# yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm -y
Comment

install postgresql 10 centos 7

# yum install postgresql10 postgresql10-server postgresql10-contrib postgresql10-libs -y
Comment

install postgresql 10 centos 7

# /usr/pgsql-10/bin/postgresql-10-setup initdb
Initializing database ... OK 
Comment

install postgresql 10 centos 7

# systemctl enable postgresql-10.service
# systemctl start postgresql-10.service
Comment

PREVIOUS NEXT
Code Example
Sql :: sql count unique values in one column 
Sql :: if in mysql 
Sql :: sql create database 
Sql :: pyspark sql row get value 
Sql :: import sql in postgresql 
Sql :: dual in db2 
Sql :: change magento database url usimg musql 
Sql :: delete a temporary table mysql 
Sql :: postgres update multiple columns 
Sql :: query to count the number of rows in a table in sqlalchemy 
Sql :: python uuid sqlalchemy 
Sql :: r rmysql connect local database Plugin caching_sha2_password could not be loaded 
Sql :: mysql query with sql to get the next row 
Sql :: com.mysql.cj.exceptions.InvalidConnectionAttributeException more than one time zone. You must configure either the server or JD value if you want to utilize time zone support. 
Sql :: query by column for substring sql 
Sql :: sql currency format 
Sql :: sql server drop column 
Sql :: mysql ilike 
Sql :: what is datetime in sql server 
Sql :: unique key in ms sql server 
Sql :: sql rtrim 
Sql :: mysql dump with table query 
Sql :: create table like another table 
Sql :: default password for mysql_secure_installation in mac 
Sql :: postgresql if else endif 
Sql :: psql generate id in existing database 
Sql :: SQL Subtraction Operator 
Sql :: postgresql change user role grant 
Sql :: select database in mysql 
Sql :: oracle create tablespace autoextend 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =