我尝试使用postgresql但是当我尝试在Oracle Linux 7.2内核中安装它时遇到了这些问题3.10.0-327
使用此命令编译源代码后:
./ configure --with-openssl
我有这个错误:
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.
[root@localhost postgresql-9.5.1]# brew
bash: brew: command not found...
[root@localhost postgresql-9.5.1]# find readline
find: ‘readline’: No such file or directory
[root@localhost 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
[root@localhost postgresql-9.5.1]#
readline已经安装,我不明白为什么我有这个问题
答案 0 :(得分:2)
我刚刚找到了解决方案:
这个命令:
yum install readline-devel
yum install zlib-devel
解决了我的问题