ubuntu中用命令创建数据库
生活随笔
收集整理的這篇文章主要介紹了
ubuntu中用命令创建数据库
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
# switch to postgres account
sudo su postgres # create a new postgres login: jetty; and set the password to jetty
# since most of our database dump has jetty as the user
createuser -P -d -a -e jetty
#password jetty # create a new postgres login: logintext;
# this is also due to database dump file; SHOULD HAVE DUMP DATABASE WITH -U option;
createuser -P -d -a -e logintext
# create a new empty database
# set the password to jetty (to be consistent with application setting - only for DEV/TESTING)
createdb test -O jetty # grant permission to jetty
psql
#click Enter on keyboard
GRANT all on database test to jetty;
#click Enter on keyboard
\q
#click Enter on keyboard # restore database option1
psql test </tmp/<dumpfile> # restore database option2
psql -d test -t ~/tmp/<dumpfile> # restore database option
# psql -d <database> U <username> -f <filename>
psql -d test -U logintest -f demo.test.s83..sql # return to your own account
exit
總結
以上是生活随笔為你收集整理的ubuntu中用命令创建数据库的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Redis的安装与使用
- 下一篇: pandas 语句