技術問答
技術文章
iT 徵才
聊天室
2026 鐵人賽
登入/註冊
問答
文章
Tag
邦友
鐵人賽
搜尋
0
tomcat-connectors編譯問題
tomcat
jsp
apache
linux
超超
2016-10-17 15:58:43
‧
2448 瀏覽
分享至
編譯tomcat-connectors 時成功./configure Makefile也有出現
make時出現
回答
討論
10
邀請回答
追蹤
檢舉
×
邀請回答
輸入邀請回答者的帳號或暱稱
Loading
找不到結果。
已達邀請上限
邀請回答
{{ result.user.nickname }}
{{ result.user.account }}
已邀請的邦友
{{ invite_list.length }}
/5
取消邀請
{{ invite.nickname }}
{{ invite.account }}
看更多先前的討論...
收起先前的討論...
fillano
iT邦超人 1 級 ‧
2016-10-17 16:56:35
檢舉
只是warning,應該不是問題,我通常都略過XD
只是warning,應該不是問題,我通常都略過XD
修改
超超
iT邦新手 5 級 ‧
2016-10-17 17:00:18
檢舉
不是warning 也無法make install 不會成功編譯 ,沒mod_jk.so
不是warning 也無法make install 不會成功編譯 ,沒mod_jk.so
修改
fillano
iT邦超人 1 級 ‧
2016-10-17 18:03:52
檢舉
那你錯誤訊息沒貼到重點阿,我只看到Warning,只有Warning不會編譯不出來。
那你錯誤訊息沒貼到重點阿,我只看到Warning,只有Warning不會編譯不出來。
修改
超超
iT邦新手 5 級 ‧
2016-10-17 18:08:20
檢舉
[root@apacheserver native]# make
Making all in common
make[1]: Entering directory `/opt/step/tomcat-connectors-1.2.42-src/native/common'
/usr/lib64/apr-1/build/libtool --silent --mode=compile gcc -std=gnu99 -I. -I/usr/include/httpd -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -pthread -DHAVE_APR -I/usr/include/apr-1 -I/usr/include/apr-1 -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -c jk_ajp12_worker.c -o jk_ajp12_worker.lo
/usr/lib64/apr-1/build/libtool --silent --mode=compile gcc -std=gnu99 -I. -I/usr/include/httpd -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -pthread -DHAVE_APR -I/usr/include/apr-1 -I/usr/include/apr-1 -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -c jk_connect.c -o jk_connect.lo
[root@apacheserver native]# make Making all in common make[1]: Entering directory `/opt/step/tomcat-connectors-1.2.42-src/native/common' /usr/lib64/apr-1/build/libtool --silent --mode=compile gcc -std=gnu99 -I. -I/usr/include/httpd -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -pthread -DHAVE_APR -I/usr/include/apr-1 -I/usr/include/apr-1 -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -c jk_ajp12_worker.c -o jk_ajp12_worker.lo /usr/lib64/apr-1/build/libtool --silent --mode=compile gcc -std=gnu99 -I. -I/usr/include/httpd -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -pthread -DHAVE_APR -I/usr/include/apr-1 -I/usr/include/apr-1 -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -c jk_connect.c -o jk_connect.lo
修改
超超
iT邦新手 5 級 ‧
2016-10-17 18:08:42
檢舉
出現這個循環
出現這個循環
修改
fillano
iT邦超人 1 級 ‧
2016-10-17 18:12:32
檢舉
你./configure下了什麼參數?一般配合apache httpd,我都用./configure --with-apxs=/path/to/your/apxs,請用which找一下apxs在哪裡。
你./configure下了什麼參數?一般配合apache httpd,我都用./configure --with-apxs=/path/to/your/apxs,請用which找一下apxs在哪裡。
修改
超超
iT邦新手 5 級 ‧
2016-10-17 18:16:40
檢舉
./configure --with-apxs=/usr/bin/apxs
./configure --with-apxs=/usr/bin/apxs
修改
超超
iT邦新手 5 級 ‧
2016-10-17 18:17:16
檢舉
這是我的路徑
這是我的路徑
修改
超超
iT邦新手 5 級 ‧
2016-10-17 22:44:58
檢舉
不知道是不是我有甚麼套件沒裝到
不知道是不是我有甚麼套件沒裝到
修改
fillano
iT邦超人 1 級 ‧
2016-10-18 09:11:03
檢舉
相依性在跑./configure時會處理,如果有套件沒裝,不會產生Makefile。你把東西清掉重新跑跑看。
1. make distclean
2. ./buildconf.sh
3. ./configure --with-apxs=/usr/bin/apxs
4. make
相依性在跑./configure時會處理,如果有套件沒裝,不會產生Makefile。你把東西清掉重新跑跑看。 1. make distclean 2. ./buildconf.sh 3. ./configure --with-apxs=/usr/bin/apxs 4. make
修改
登入發表討論
熱門推薦
{{ item.subject }}
{{ item.channelVendor }}
|
{{ item.webinarstarted }}
|
{{ formatDate(item.duration) }}
直播中
立即報名
尚未有邦友回答
立即登入回答
iThome鐵人賽
參賽組數
902
組
團體組數
37
組
累計文章數
19831
篇
完賽人數
528
人
看影片追技術
看更多
{{ item.subject }}
{{ item.channelVendor }}
|
{{ formatDate(item.duration) }}
直播中
熱門tag
15th鐵人賽
16th鐵人賽
13th鐵人賽
14th鐵人賽
17th鐵人賽
12th鐵人賽
11th鐵人賽
鐵人賽
2019鐵人賽
javascript
2018鐵人賽
python
2017鐵人賽
windows
php
c#
linux
windows server
css
react
熱門問題
趣味SQL,找出待簽核的員工 (AI來解題回答)
WIFI問題遊戲延遲改善
ASUS ProArt B550 Creator 主板與雙顯卡(N卡+I卡) PCIe4.0 x8頻寬問題
Connect-AzureAD 的 powershell 指令
Debian 13 安裝 bind9 後找不到範例檔
MATABASE 多期比較問題請教
熱門回答
WIFI問題遊戲延遲改善
ASUS ProArt B550 Creator 主板與雙顯卡(N卡+I卡) PCIe4.0 x8頻寬問題
趣味SQL,找出待簽核的員工 (AI來解題回答)
Connect-AzureAD 的 powershell 指令
Debian 13 安裝 bind9 後找不到範例檔
熱門文章
打造自動化交易預警:從 jmg 停牌看金融數據的串接實務
2026 AI 音訊分離評測:LALAL.AI 還是 Coolo AI?開發者與創作者的選型指南
用 Next.js Server Actions 10 分鐘實作完備的登入註冊系統
人資系統的雲端架構 4 大優勢,驅動企業數位轉型
筆記:.NET 併發處理 Async/Await 筆記
IT邦幫忙
×
標記使用者
輸入對方的帳號或暱稱
Loading
找不到結果。
標記
{{ result.label }}
{{ result.account }}