您现在的位置是:首页 > 学无止境
CentOS7下初始化PostgreSQL
1、安装epel;
rpm -ivh http://mirrors.hustunique.com/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
或者
yum install epel-release
2、安装postgresql;
...
rpm -ivh http://mirrors.hustunique.com/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
或者
yum install epel-release
2、安装postgresql;
...
1、安装epel;
rpm -ivh http://mirrors.hustunique.com/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
或者
yum install epel-release
2、安装postgresql;
yum install postgresql*
3、初始化数据库;
postgresql-setup initdb
4、启动postgresql并设置为开机自启动;
systemctl restart postgresql systemctl enable postgresql
5、登进数据库看看状态;(可略)
su - postgres psql \du (查看角色) \l (列出所有数据库) \q (退出)
6、创建角色(postgresql中的用户)和数据库实例;
su - postgres createuser dbuser createdb -e -O dbuser dbname
7、给新用户设定密码
su - postgres psql \password dbuser (输入两次密码) vim /var/lib/pgsql/data/pg_hba.conf
在/var/lib/pgsql/data/pg_hba.conf中,将默认验证方法
host all all 127.0.0.1/32 ident
改为密码验证
host all all 127.0.0.1/32 md5
8、重启数据库,让新的验证方法生效
systemctl restart postgresql
9、新用户登录数据库;
psql -U dbuser -d dbname -h 127.0.0.1 (输入之前的密码)
10、玩耍;(以下操作皆在postgresql终端中)
\dp (查看当前库中的表) create table test1 (t1 int, t2 varchar(20)); \dp \d test1 (查看表结构) select * from test1 limit 10; insert into test1 (t1,t2) values (11, 'ccccc'), (22, 'aaaa'); select * from test1 limit 10; truncate table test1; select * from test1 limit 10; drop table test1; select * from test1 limit 10; \dp
下一篇:PHP 5.5新特性
文章评论
- 登录后评论
点击排行
-
php-fpm安装、配置与优化
转载自:https://www.zybuluo.com/phper/note/89081 1、php中...
-
centos下postgresql的安装与配置
一、安装(以root身份进行)1、检出最新的postgresql的yum配置从ht...
-
Mysql的大小写敏感性
MYSQL在默认的情况下查询是不区分大小写的,例如:CREATE TABLE...
-
关于URL编码
转载自:http://www.ruanyifeng.com/blog/2010/02/url_encoding....
-
header中的Cache-control
网页的缓存是由HTTP消息头中的“Cache-control”来控制的,常见的...