Ошибка установки Postgres 10 на Ubuntu 14

Я пытаюсь установить postgres 10 на Ubuntu 14. У меня уже установлен postgres 9.5.4. Я выполнил следующие шаги для установки postgres 10 -

sudo apt-get install software-properties-common python-software-properties sudo add-apt-repository "deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main" wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-get update sudo apt-get install postgresql-10

Ниже приведен журнал установки

support@rni-platform:~$ sudo apt-get install postgresql-10 Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: comerr-dev krb5-multidev libgssrpc4 libkadm5clnt-mit9 libkadm5srv-mit9 libkdb5-7 Use 'apt-get autoremove' to remove them. The following extra packages will be installed: libpq-dev libpq5 postgresql-client-10 postgresql-client-common postgresql-common Suggested packages: postgresql-doc-10 locales-all The following NEW packages will be installed: postgresql-10 postgresql-client-10 The following packages will be upgraded: libpq-dev libpq5 postgresql-client-common postgresql-common 4 upgraded, 2 newly installed, 0 to remove and 14 not upgraded. Need to get 6,595 kB of archives. After this operation, 26.7 MB of additional disk space will be used. Do you want to continue? [Y/n] Y Get:1 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main libpq-dev amd64 10.1-1.pgdg14.04+1 [241 kB] Get:2 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main libpq5 amd64 10.1-1.pgdg14.04+1 [157 kB] Get:3 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main postgresql-common all 188.pgdg14.04+1 [220 kB] Get:4 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main postgresql-client-common all 188.pgdg14.04+1 [81.5 kB] Get:5 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main postgresql-client-10 amd64 10.1-1.pgdg14.04+1 [1,282 kB] Get:6 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main postgresql-10 amd64 10.1-1.pgdg14.04+1 [4,613 kB] Fetched 6,595 kB in 3s (2,017 kB/s) Preconfiguring packages ... (Reading database ... 102799 files and directories currently installed.) Preparing to unpack .../libpq-dev_10.1-1.pgdg14.04+1_amd64.deb ... Unpacking libpq-dev (10.1-1.pgdg14.04+1) over (9.5.4-1.pgdg14.04+1) ... Preparing to unpack .../libpq5_10.1-1.pgdg14.04+1_amd64.deb ... Unpacking libpq5:amd64 (10.1-1.pgdg14.04+1) over (9.5.4-1.pgdg14.04+1) ... Preparing to unpack .../postgresql-common_188.pgdg14.04+1_all.deb ... Leaving 'diversion of /usr/bin/pg_config to /usr/bin/pg_config.libpq-dev by postgresql-common' Unpacking postgresql-common (188.pgdg14.04+1) over (175.pgdg14.04+1) ... Preparing to unpack .../postgresql-client-common_188.pgdg14.04+1_all.deb ... Unpacking postgresql-client-common (188.pgdg14.04+1) over (175.pgdg14.04+1) ... Selecting previously unselected package postgresql-client-10. Preparing to unpack .../postgresql-client-10_10.1-1.pgdg14.04+1_amd64.deb ... Unpacking postgresql-client-10 (10.1-1.pgdg14.04+1) ... Selecting previously unselected package postgresql-10. Preparing to unpack .../postgresql-10_10.1-1.pgdg14.04+1_amd64.deb ... Unpacking postgresql-10 (10.1-1.pgdg14.04+1) ... Processing triggers for man-db (2.6.7.1-1ubuntu1) ... Processing triggers for ureadahead (0.100.0-16) ... Setting up libpq5:amd64 (10.1-1.pgdg14.04+1) ... Setting up libpq-dev (10.1-1.pgdg14.04+1) ... Setting up postgresql-client-common (188.pgdg14.04+1) ... Installing new version of config file /etc/postgresql-common/user_clusters ... Setting up postgresql-common (188.pgdg14.04+1) ... Configuration file '/etc/logrotate.d/postgresql-common' ==> File on system created by you or by a script. ==> File also in package provided by package maintainer. What would you like to do about it ? Your options are: Y or I : install the package maintainer's version N or O : keep your currently-installed version D : show the differences between the versions Z : start a shell to examine the situation The default action is to keep your current version. *** postgresql-common (Y/I/N/O/D/Z) [default=N] ? Replacing config file /etc/postgresql-common/createcluster.conf with new version Setting up postgresql-client-10 (10.1-1.pgdg14.04+1) ... Setting up postgresql-10 (10.1-1.pgdg14.04+1) ... Creating new PostgreSQL cluster 10/main ... /usr/lib/postgresql/10/bin/initdb -D /var/lib/postgresql/10/main --auth-local peer --auth-host md5 The files belonging to this database system will be owned by user "postgres". This user must also own the server process. The database cluster will be initialized with locale "en_US.UTF-8". The default database encoding has accordingly been set to "UTF8". The default text search configuration will be set to "english". Data page checksums are disabled. fixing permissions on existing directory /var/lib/postgresql/10/main ... ok creating subdirectories ... ok selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting dynamic shared memory implementation ... posix creating configuration files ... ok running bootstrap script ... ok performing post-bootstrap initialization ... ok syncing data to disk ... ok Success. You can now start the database server using: /usr/lib/postgresql/10/bin/pg_ctl -D /var/lib/postgresql/10/main -l logfile start Ver Cluster Port Status Owner Data directory Log file 10 main 5433 down postgres /var/lib/postgresql/10/main /var/log/postgresql/postgresql-10-main.log invoke-rc.d: unknown initscript, /etc/init.d/postgresql not found. dpkg: error processing package postgresql-10 (--configure): subprocess installed post-installation script returned error exit status 100 Processing triggers for libc-bin (2.19-0ubuntu6.13) ... Errors were encountered while processing: postgresql-10 E: Sub-process /usr/bin/dpkg returned an error code (1)

Кто-нибудь может сообщить мне, что происходит, и как я могу получить вокруг этого?

0
задан 11 November 2017 в 20:54

0 ответов

Другие вопросы по тегам:

Похожие вопросы: