svn: E170000: รูปแบบ URL ที่ไม่รู้จักสำหรับ httpxxxx


12

ดูเหมือนว่า svn ที่สร้างขึ้นเองไม่ทำงานกับ http URL หลังจากค้นหาออนไลน์ฉันเข้าใจว่าฉันต้องติดตั้งไลบรารี่นีออนที่ฉันทำ หลังจากติดตั้งนีออนเมื่อฉันสร้างการโค่นล้มมันล้มเหลวที่ทำให้ ฉันพยายามทำความสะอาดและสร้างใหม่อีกครั้งยังคงมีปัญหา ไม่มีอะไรเปลี่ยนแปลงยกเว้นเวอร์ชันย่อยที่ติดตั้งของการโค่นล้มยังคงอยู่ที่ / usr / local / subversion ความคิดวิธีการก้าวไปข้างหน้า?

ระบบปฏิบัติการ: RedHat 5

รุ่น

    [root@mercury lib]# svn --version
    svn, version 1.8.0 (r1490375)
       compiled Jul 10 2013, 20:07:32 on x86_64-unknown-linux-gnu

    Copyright (C) 2013 The Apache Software Foundation.
    This software consists of contributions made by many people;
    see the NOTICE file for more information.
    Subversion is open source software, see http://subversion.apache.org/

    The following repository access (RA) modules are available:

    * ra_svn : Module for accessing a repository using the svn network protocol.
      - with Cyrus SASL authentication
      - handles 'svn' scheme
    * ra_local : Module for accessing a repository on local disk.
      - handles 'file' scheme

กำหนดค่าการโค่นล้ม

[root@mercury subversion-1.8.0]# ./configure --prefix=/usr/local/subversion/ --with-apxs=/usr/local/subversion/bin/apxs --with-apr=/usr/local/subversion/bin/apr-1-config --with-apr-util=/usr/local/subversion/bin/apu-1-config --with-ssl --with-neon=/u01/soft/neon-0.29.6/


.....end lines...

config.status: executing svn_private_config.h.tmp commands
configure: WARNING: unrecognized options: --with-ssl, --with-neon
configure: WARNING: we have configured without BDB filesystem support


You don't seem to have Berkeley DB version 4.0.14 or newer
installed and linked to APR-UTIL.  We have created a Makefile which will build
Subversion without support for the Berkeley DB back-end.  You can find the
latest version of Berkeley DB here:

  http://www.oracle.com/technetwork/products/berkeleydb/downloads/index.html

or explicitly specify --without-berkeley-db to silence this warning.

แต่งหน้า

[root@mercury subversion-1.8.0]# make
/bin/sh /u01/soft/subversion-1.8.0/libtool --tag=CC --silent --mode=compile gcc -std=c89  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -g -O2  -g -O2 -pthread  -I./subversion/include -I./subversion -I/usr/local/subversion//include   -I/usr/local/subversion//include -I/u01/soft/subversion-1.8.0/sqlite-amalgamation   -o subversion/libsvn_delta/cancel.lo -c subversion/libsvn_delta/cancel.c
/u01/soft/subversion-1.8.0/libtool: line 865: X--tag=CC: command not found
/u01/soft/subversion-1.8.0/libtool: line 898: libtool: ignoring unknown tag : command not found
/u01/soft/subversion-1.8.0/libtool: line 865: X--mode=compile: command not found
/u01/soft/subversion-1.8.0/libtool: line 1031: *** Warning: inferring the mode of operation is deprecated.: command not found
/u01/soft/subversion-1.8.0/libtool: line 1032: *** Future versions of Libtool will require --mode=MODE be specified.: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: Xgcc: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-std=c89: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-DLINUX: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-D_REENTRANT: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-D_GNU_SOURCE: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-g: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-O2: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-g: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-O2: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-pthread: command not found
/u01/soft/subversion-1.8.0/libtool: line 1175: X-I./subversion/include: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1175: X-I./subversion: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1175: X-I/usr/local/subversion//include: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1175: X-I/usr/local/subversion//include: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1175: X-I/u01/soft/subversion-1.8.0/sqlite-amalgamation: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1175: X-c: command not found
/u01/soft/subversion-1.8.0/libtool: line 1227: Xsubversion/libsvn_delta/cancel.lo: No such file or directory
/u01/soft/subversion-1.8.0/libtool: line 1232: libtool: compile: cannot determine name of library object from `': command not found
make: *** [subversion/libsvn_delta/cancel.lo] Error 1

การโค่นล้ม 1.8 ลบ NEON เพื่อประโยชน์ของเซอร์ฟ
Doon

คุณใช้ OS / Distro ใดอยู่
ALex_hha

เวอร์ชั่นของระบบปฏิบัติการคือ RedHat5
user1595858

@ Doon จากที่ฉันสามารถติดตั้ง serf ฉันต้องสร้าง subversion ใหม่หลังจากติดตั้ง serf หรือไม่
user1595858

มีควรจะเป็น libserf หรือ libserf-devel รอบต่อนาทีลอยรอบ และใช้คุณจะต้องสร้างการโค่นล้มใหม่และบอกให้รวม serf แต่จากบรรทัดการตั้งค่าของคุณฉันไม่เห็นอะไร "กำหนดเอง" ดังนั้น @alex_hha คำตอบด้านล่างอาจทำงานได้เช่นกัน
Doon

คำตอบ:


19

คุณรวบรวมการโค่นล้มโดยไม่มีห้องสมุด serf ที่ใช้สำหรับโปรโตคอล HTTP / HTTPS: http://serf.apache.org/

ระบุตำแหน่งไลบรารี serf โดยใช้--with-serfตัวเลือกกำหนดค่า


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.