首页 > 系统 > Mac OS > 正文

mac os x 中postgresql使用示例

2020-10-10 19:15:54
字体:
来源:转载
供稿:网友

mac os x 中postgresql使用教程在网上搜索不多了,自己找了很久才找到一个简单的例子,下文我们就一起来看看这个例子,希望例子能帮助到大家.

  1. start 
  2. pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start 
  3. stop  //Cuoxin.com 
  4. pg_ctl -D /usr/local/var/postgres stop -s -m fast 
  5. create db and user 

postgresql 的 bin 目录,默认并没有加入 path,要么在. bash_profile 里面加入,要么进入安装的目录.

  1. cd /usr/local/Cellar/postgresql/9.3.5/bin  
  2. creatdb yemai 

进入sql:psql yemai

运行建用户的sql:CREATE USER yemai WITH PASSWORD 'yemai';

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表