2016-03-20 8 views
0

Ich versuche, mit postgresql installieren zu arbeiten, aber ich hatte diese Probleme, wenn ich versuchte, es in Oracle Linux 7.2 Kernel 3.10.0-327wie postgresql in Oracle Linux 7.2

nach mit diesem Befehl zu installieren zu kompilieren die Quelle:

./configure --with-openssl

ich habe diesen Fehler:

checking for main in -lm... yes 
checking for library containing setproctitle... no 
checking for library containing dlopen... -ldl 
checking for library containing socket... none required 
checking for library containing shl_load... no 
checking for library containing getopt_long... none required 
checking for library containing crypt... -lcrypt 
checking for library containing shm_open... -lrt 
checking for library containing shm_unlink... none required 
checking for library containing fdatasync... none required 
checking for library containing sched_yield... none required 
checking for library containing gethostbyname_r... none required 
checking for library containing shmget... none required 
checking for library containing readline... no 
configure: error: readline library not found 
If you have readline already installed, see config.log for details on the 
failure. It is possible the compiler isn't looking in the proper directory. 
Use --without-readline to disable readline support. 
[[email protected] postgresql-9.5.1]# brew 
bash: brew: command not found... 
[[email protected] postgresql-9.5.1]# find readline 
find: ‘readline’: No such file or directory 
[[email protected] postgresql-9.5.1]# yum install readline 
Loaded plugins: langpacks, ulninfo 

pgdg95 | 3.6 kB 00:00:00
(1/2): pgdg95/7Server/x86_64/group_gz | 333 B 00:00:00
(2/2): pgdg95/7Server/x86_64/primary_db | 127 kB 00:00:00

Package readline-6.2-9.el7.x86_64 already installed and latest version 
Nothing to do 
[[email protected] postgresql-9.5.1]# 

Readline- bereits installiert ist, ich verstehe nicht, warum ich das Problem haben

Antwort

1

Ich habe nur eine Lösung für das gefunden:

diesen Befehl aus:

yum install readline-devel

yum install zlib-devel

mein Problem gelöst

+0

dank, sparte meinen Tag – jjj

Verwandte Themen