每次有可用更新時,我都會使用 yaourt 從原始程式碼自動編譯 Apache extra
。我這樣做是為了可以擁有自訂的 suexec docroot (/srv/www
而不是預設的/srv/http
)。到目前為止,這已經在多次更新中完美運行。
$ yaourt -S apache
==> Building apache from sources.
==> Retrieving PKGBUILD and local sources...
receiving file list ... done
./
PKGBUILD
apache.conf.d
apache.install
apache.tmpfiles.conf
apachectl-confd.patch
arch.layout
httpd
httpd.logrotate
pcre_info.patch
sent 199 bytes received 10416 bytes 7076.67 bytes/sec
total size is 9809 speedup is 0.92
=> removes/replaces '--with-suexec-docroot=\/srv\/http' by '--with-suexec-docroot=\/srv\/www' in global
--- ./PKGBUILD 2012-07-06 00:02:13.000000000 -0400
+++ ./PKGBUILD.custom 2012-07-06 15:49:03.000000000 -0400
@@ -102,7 +102,7 @@
--enable-so \
--enable-suexec \
--with-suexec-caller=http \
- --with-suexec-docroot=/srv/http \
+ --with-suexec-docroot=/srv/www \
--with-suexec-logfile=/var/log/httpd/suexec.log \
--with-suexec-bin=/usr/sbin/suexec \
--with-suexec-uidmin=99 --with-suexec-gidmin=99 \
==> Edit PKGBUILD ? [y/N] ("A" to abort)
==> ------------------------------------
==> n
==> apache dependencies:
- openssl (already installed)
- zlib (already installed)
- apr-util (already installed)
- pcre (already installed)
==> Edit apache.install ? [y/N] ("A" to abort)
==> ------------------------------------------
==> n
==> Continue building apache ? [Y/n]
==> --------------------------------
==>
==> Building and installing package
==> Making package: apache 2.2.22-4 (Thu Jul 5 14:47:33 EDT 2012)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving Sources...
-> Downloading httpd-2.2.22.tar.bz2...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5252k 100 5252k 0 0 93231 0 0:00:57 0:00:57 --:--:-- 93283
-> Downloading httpd-2.2.22.tar.bz2.asc...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 835 100 835 0 0 5191 0 --:--:-- --:--:-- --:--:-- 10437
-> Downloading 02-rename-prefork-to-itk.patch...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:01:06 --:--:-- 0curl: (7) couldn't connect to host
==> ERROR: Failure while downloading 02-rename-prefork-to-itk.patch
Aborting...
==> ERROR: Makepkg was unable to build apache.
==> Restart building apache ? [y/N]
==> -------------------------------
==>
問題似乎是curl找不到02-rename-prefork-to-itk.patch
.我不知道它位於哪個 URL、在哪個文件中指定,或如何找到它的備用位置。知道發生了什麼/如何排除故障嗎?
答案1
curl: (7) couldn't connect to host
根據curl的說法,它無法連接到主機。造成這種情況的原因可能有很多,例如該檔案不在伺服器上。我的建議是稍後重試,如果不起作用,請聯絡下載檔案的主機。
答案2
部分補丁所在主機宕機。但我們可以把它改成另一種。
第一的。只需使用 yaourt 下載 PKGBUILD:
yaourt -G apache
在 PKGBUILD 中更改以下行:
_itkurl=http://mpm-itk.sesse.net/apache2.2-mpm-itk-2.2.17-01
到:
_itkurl=http://distfiles.alpinelinux.org/distfiles/
另外,補丁 03-add-mpm-to-build-system.patch 有不同的 md5,所以我們修復它。只需更改數組“md5sums”中的第四行
'cdfa04985a0efa850976aef01c2a0c40'
到:
'131408ad4dc7b18547b4e062e7e495ab'
工作中的 PKGBUILD 在這裡:http://pastebin.com/iK48xx8f
如果你願意的話,你可以直接更換它。並使用以下命令建構 apache:
makepkg -i
答案3
apache
等等,為什麼要嘗試從 AUR下載原始碼?apache
肯定是用Arch打包的。
pierre@bar code % pacman -Si apache
Repository : extra
Name : apache
Version : 2.2.22-4
[...]
驗證您是否擁有/etc/pacman.conf
:
[extra]
Include = /etc/pacman.d/mirrorlist
並且至少有一些未註釋的鏡像/etc/pacman.d/mirrorlist
,那麼:
# pacman -Sy apache
它應該安裝得很好。
答案4
因此,我不確定這是否是由於我最近的完整系統升級,或者 URL 獨立恢復所致,但稍後重試似乎消除了此特定錯誤。但是,我仍然無法建立 Apache,因為我現在遇到了一個新錯誤,但這是一個單獨發行。