-
Notifications
You must be signed in to change notification settings - Fork 0
Home
node.js: https://nodejs.org/api jquery:http://api.jquery.com/ \n
sublime
https://packagecontrol.io/installation#st3
Handlebars
https://www.zhihu.com/question/24736400
psql: http://wenzhixin.net.cn/2014/01/12/hello_postgresql
--远程: root@SZV1000168020:/var/lib/postgresql/9.3/main# locate pg_hba.conf /etc/postgresql/9.3/main/pg_hba.conf /home/git/gitlab-development-kit/postgresql/data/pg_hba.conf /home/git/gitlab-development-kit/support/pg_hba.conf.add /usr/share/postgresql/9.3/pg_hba.conf.sample
root@SZV1000168020:/var/lib/postgresql/9.3/main# locate postgresql.conf /etc/postgresql/9.3/main/postgresql.conf /home/git/gitlab-development-kit/postgresql/data/postgresql.conf /usr/share/postgresql/9.3/postgresql.conf.sample
http://blog.csdn.net/ll136078/article/details/12747403 https://wiki.archlinux.org/index.php/PostgreSQL_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)
MySQL和PostgreSQL安装后的默认密码 2006-12-15 17:10:03 分类: 数据库开发技术 MySQL默认的超级管理员是root 连接方法:mysql -u root 默认密码为空 修改密码的方法:mysqladmin -u root password 'new password'
PostgreSQL默认的超级管理员密码是postgres 连接方法:psql -U postgres(注意,是大写的-U) 默认密码为空 修改密码的方法是,用psql登入管理:psql -U postgres 然后用这样的命令来修改密码:alter user postgres with password 'new password'
安装nfs-kernel-server
sudo apt-get update
sudo apt-get install nfs-kernel-server
配置/etc/exports
sudo vi /etc/export
配置格式如下:
/home/git/repositories api_ip(rw,sync,no_subtree_check)
导出目录
sudo exportfs –a
启动NFS服务
sudo service nfs-kernel-server start