Удалить базу данных postgresql linux

How to delete postgresql database on linux

I am trying to learn postgresql on linux using the command line interface. I have added some databases a while back, following some tutorials (which I have since forgot everything I have learned). Now I want to delete these databases. I made the assumption that I should be doing this by using psql, the command-line interface to postgresql. You can see what I have tried in the following command line output, and that none of it has succeeded.

psql (9.5.6) Type "help" for help. postgres=# \list List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | template0 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres testdb | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | (4 rows) postgres=# dropdb template1 postgres-# \list List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | template0 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres testdb | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | (4 rows) postgres-# DROP DATABASE template1 postgres-# \list List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | template0 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres testdb | postgres | UTF8 | en_CA.UTF-8 | en_CA.UTF-8 | (4 rows) 

Источник

Удалить базу данных postgresql linux

dropdb — удалить базу данных PostgreSQL

Синтаксис

dropdb [ параметр-подключения . ] [ параметр . ] имя_бд

Описание

dropdb удаляет ранее созданную базу данных PostgreSQL , и должна выполняться от имени суперпользователя или её владельца.

dropdb это обёртка для SQL -команды DROP DATABASE . Удаление баз данных с её помощью по сути не отличается от выполнения того же действия при обращении к серверу другими способами.

Параметры

dropdb принимает в качестве аргументов:

Указывает имя удаляемой базы данных. -e
—echo

Вывести команды к серверу, генерируемые при выполнении dropdb . -f
—force

Попытаться принудительно завершить все существующие подключения к целевой базе, прежде чем удалять её. Подробнее это описано в DROP DATABASE . -i
—interactive

Выводит вопрос о подтверждении перед удалением. -V
—version

Выводит версию dropdb . —if-exists

Не считать ошибкой, если база данных не существует. В этом случае будет выдано замечание. -?
—help

Вывести справку по команде dropdb .

dropdb также принимает из командной строки параметры подключения:

Указывает имя компьютера, на котором работает сервер. Если значение начинается с косой черты, оно определяет каталог Unix-сокета. -p порт
—port= порт

Указывает TCP-порт или расширение файла локального Unix-сокета, через который сервер принимает подключения. -U имя_пользователя
—username= имя_пользователя

Имя пользователя, под которым производится подключение. -w
—no-password

Не выдавать запрос на ввод пароля. Если сервер требует аутентификацию по паролю и пароль не доступен с помощью других средств, таких как файл .pgpass , попытка соединения не удастся. Этот параметр может быть полезен в пакетных заданиях и скриптах, где нет пользователя, который вводит пароль. -W
—password

Читайте также:  Kali linux this kernel requires

Принудительно запрашивать пароль перед подключением к базе данных.

Это несущественный параметр, так как dropdb запрашивает пароль автоматически, если сервер проверяет подлинность по паролю. Однако чтобы понять это, dropdb лишний раз подключается к серверу. Поэтому иногда имеет смысл ввести -W , чтобы исключить эту ненужную попытку подключения. —maintenance-db= имя_бд

Указывает имя опорной базы данных, к которой будет произведено подключение для удаления целевой. Если имя не указано, будет выбрана база postgres , а если она не существует (или именно она и удаляется) — template1 . Здесь может задаваться строка подключения. В этом случае параметры в строке подключения переопределяют одноимённые параметры, заданные в командной строке.

Переменные окружения

Параметры подключения по умолчанию PG_COLOR

Выбирает вариант использования цвета в диагностических сообщениях. Возможные значения: always (всегда), auto (автоматически) и never (никогда).

Эта утилита, как и большинство других утилит PostgreSQL , также использует переменные среды, поддерживаемые libpq (см. Раздел 34.15).

Диагностика

В случае возникновения трудностей, обратитесь к DROP DATABASE и psql . При диагностике следует учесть, что при запуске утилиты также применяются переменные окружения и параметры подключения по умолчанию libpq .

Примеры

Для удаления базы данных demo на сервере, используемом по умолчанию:

Для удаления базы данных demo на сервере eden , слушающим подключения на порту 5000, в интерактивном режиме и выводом запросов к серверу:

$ dropdb -p 5000 -h eden -i -e demo База данных "demo" будет удалена навсегда. Продолжить? (y/n) y DROP DATABASE demo; 

См. также

Источник

How to delete all databases on Postgres?

I take daily backs of our postgres development box using: pg_dumpall -h 127.0.0.1 -U user -w | gzip blah.gz Since 9.0 is now a release candidate I would like to restore this daily backup on a daily basis to a postgres9.0rc1 box for testing, however I’m not sure how to script it repeatedly. Is there some directory I can nuke to do this?

5 Answers 5

You can do «drop cluster» and «create cluster» which will automtically erase all databases. Erase all data in you $PGDATA directory and reinit the cluster using:

initdb -D /usr/local/pgsql/data 

To be clear, you should replace /usr/local/pgsql/data with whatever your $PGDATA directory is. For example, for PostgreSQL installed via Homebrew, it’s /usr/local/var/postgres . Also, if you export $PGDATA , then you can run initdb with no arguments. Finally, do note that deleting your $PGDATA directory is a separate step. initdb does not do it for you. Oh, and the deletion won’t work right if your postgres server is still running.

$ pg_dropcluster 9.2 main $ pg_createcluster 9.2 main $ pg_ctlcluster 9.2 main start $ pg_restore -f your_dump_file 

where 9.2 = cluster version and main = cluster name

I would recommend using the flag -e ‘UTF-8’ for pg_createcluster otherwise you may have to be changed later if you want UTF-8 databases and the locale is not set to UTF8.

Читайте также:  Linux mint удалить неиспользуемые пакеты

WARNING: this also nukes your postgres config — I literally just wanted a CLEAN database, NOT to also purge the previously optimized config. grumble at least it was the non-production server.

Granted the question is 9 years old at this point, but it’s still the second google result for deleting all databases. If you just want to go from N DBs to 0 without jacking with your config and also having rummage through the file system, this is a much better answer:

From the answer, the following script will generate N drop database commands, one for each non-template DB:

select 'drop database "'||datname||'";' from pg_database where datistemplate=false; 

From there, you can edit and run manually, or pipe further along into a script. Here’s a somewhat verbose one-liner:

echo \pset pager off \copy (select ‘drop database «‘||datname||'»;’ from pg_database where datistemplate=false) to STDOUT; | psql -U -d postgres | | psql -U -d postgres

  1. This is a series of pipes
  2. echo \pset pager off \copy (select ‘drop database «‘||datname||'»;’ from pg_database where datistemplate=false) to STDOUT; generates a string for psql to execute
    1. \pset pager off ensures you get all records instead of that (54 rows) crap
    2. \copy (select ‘drop database «‘||datname||'»;’ from pg_database where datistemplate=false) to STDOUT; executes the aforementioned query, sending the result to STDOUT. We have to do this since we lead with \pset .
    1. Windows users can use findstr /v «Pager» or findstr /b «drop»
    2. *nix users can use grep ‘drop’

    Источник

    How to drop PostgreSQL database through command line [closed]

    I’m trying to drop my database and create a new one through the command line. I log in using psql -U username and then do a \connect template1 , followed by a DROP DATABASE databasename; . I get the error

    I shut down Apache and tried this again, but I’m still getting this error. Am I doing something wrong?

    This will restart postgres and disconnect everyone: sudo service postgresql restart Then do a: dropdb -h localhost -p 5432 -U «youruser» «testdb» Notice the «» to make sure special characters go in without a hitch.

    4 Answers 4

    You can run the dropdb command from the command line:

    Note that you have to be a superuser or the database owner to be able to drop it.

    You can also check the pg_stat_activity view to see what type of activity is currently taking place against your database, including all idle processes.

    SELECT * FROM pg_stat_activity WHERE datname='database name'; 

    Note that from PostgreSQL v13 on, you can disconnect the users automatically with

    DROP DATABASE dbname WITH (FORCE); 

    This will restart postgres and disconnect everyone: sudo service postgresql restart Then do a: dropdb -h localhost -p 5432 -U «youruser» «testdb» Notice the «» to make sure special characters go in without a hitch.

    select pg_terminate_backend(pid) from pg_stat_activity where datname='YourDatabase'; 

    for postgresql earlier than 9.2 replace pid with procpid

    DROP DATABASE "YourDatabase"; 

    Had to change it a bit to work: select pg_terminate_backend(pid) from pg_stat_activity where datname=’YourDatabase’;

    Hm. Ran this, but it just reconnected immediately, after saying, «SSL connection closed unexpectedly [. ] attempting to reset: Succeeded.» Annnd, I’m back.

    Try this. Note there’s no database specified — it just runs «on the server»

    psql -U postgres -c "drop database databasename" 

    If that doesn’t work, I have seen a problem with postgres holding onto orphaned prepared statements.
    To clean them up, do this:

    SELECT * FROM pg_prepared_xacts; 

    then for every id you see, run this:

    Sorry I am new to databases, so this is probably a stupid question, but where do I type this out? Before logging into the database right? And I should replace databasename with the name of my database right?

    There’s no such things as «just on the server» for postgresql. You must connect to a database. In this case you’ll be connecting to the postgres database which is pretty much there just for cases like this. And a good point on prepared transactions, but in that case you should get an error message saying that’s the issue.

    Sorry Bohemian, but you are the one who’s wrong. Here’s pg_stat_activity while running createdb from the command line: postgres=# select * from pg_stat_activity ; 11564 | postgres | 22223 | 16384 | smarlowe | CREATE DATABASE test; | f | 2011-08-19 16:18:26.918933-06 | 2011-08-19 16:18:26.918933-06 | 2011-08-19 16:18:26.916578-06 | | -1 Note that this happens while running createdb from the command line in another terminal. That first field is the db that my createdb script was connected to

    note this does not work for Amazon RDS. It boots you from the psql connection and performs an automatic reset and then you log back in and you’re back to where you started.

    When it says users are connected, what does the query «select * from pg_stat_activity;» say? Are the other users besides yourself now connected? If so, you might have to edit your pg_hba.conf file to reject connections from other users, or shut down whatever app is accessing the pg database to be able to drop it. I have this problem on occasion in production. Set pg_hba.conf to have a two lines like this:

    local all all ident host all all 127.0.0.1/32 reject 

    and tell pgsql to reload or restart (i.e. either sudo /etc/init.d/postgresql reload or pg_ctl reload) and now the only way to connect to your machine is via local sockets. I’m assuming you’re on linux. If not this may need to be tweaked to something other than local / ident on that first line, to something like host . yourusername.

    Now you should be able to do:

    psql postgres drop database mydatabase; 

    Источник

Оцените статью
Adblock
detector