飘灵儿 发表于 2015-1-16 14:29:53

来讲讲:Linux下增添Apache的rewrite Module

为什么我使用一个命令的时候,系统告诉我找不到该目录,我要如何限制使用者的权限等问题,这些问题其实都不是很难的。
公司一台Linux服务器,Apache默许安装时分没有加载任何Modules,比来要用到Apache的rewrite模块,经由一夜一天的勉力,终究乐成了,镇静....
如今列下几个要点:
1.Apache安装rewrite模块的时分必要DBM撑持,不然没法编译,以是起首要安装一个GDBM下载地点:ftp://ftp.gnu.org/gnu/gdbm/
安装步骤:进进安装目次,./configure;make;makeinstall;makeinstall-compat;不然没法编译出ndbm.h头文件.
2.然后用Apachebin目次下的apxs命令安装
/var/apache/bin/apxs-cmod_rewrite.c{
gcc-DLINUX=22-DUSE_HSREGEX-DUSE_EXPAT-I../lib/expat-lite-fpic-DSHARED_MODULE-I/var/apache/include-cmod_rewrite.c
gcc-shared-omod_rewrite.somod_rewrite.o-lgdbm
}
/var/apache/bin/apxs-i-a-nmod_rewritemod_rewrite.so
然后在http.conf设置文件里加上:LoadModulerewrite_modulelibexec/mod_rewrite.so
接上去用/usr/local/apache/bin/apachectl
stop中断apache,然后用再start,万万注重,在这里不克不及用restart大概graceful参数来从头启动apache,必需先中断,然后再入手下手,大概是reboot呆板,不然rewrite将不起感化。
-------------------------------------------------------------------------------------------------------------
ItriedtoincludeinmyApacheWebserversconfigurationthemod_rewritemodule,butwhenIrestartedtheserver,Ireceivedanerror:
Cannotload/usr/local/apache/libexec/mod_rewrite.sointoserver:
/usr/local/apache/libexec/mod_rewrite.so:undefinedsymbol:dbm_fetch
Theproblem,asitturnsout,isthatmod_rewrite.soiscompiledincorrectly.Itshouldbelinkedwithadbmlibrarybutitisnt.
Ifyouhaveanup-to-datesetofApachesourcefiles,youcaneasilysolvethisproblembymanuallyrerunningthelastcompilationstepofthismodule,usingthecorrectoptions.Whenyouexecutemakemod_rewrite.sointheappropriatedirectory,itperformsthisfinalstep:
gcc-shared-omod_rewrite.somod_rewrite.lo
Rerungcc,thistimeaddingareferencetotheGNUgdbmlibrary:
gcc-shared-omod_rewrite.somod_rewrite.lo-lgdbm
Next,copythenewlycreatedmod_rewrite.sooverto/usr/local/apache/libexecorwhereveryourApachemodulefilesarelocated.
Inmycase,thiswasallthatwasneededtosolvetheproblem.Yourmileagemayvary.

</p>
初学阶段只要把上课时候学习过的命令练熟就可以了.单靠学习各种命令而成为高手是不可能的。

愤怒的大鸟 发表于 2015-1-18 14:47:13

了解Linux的网络安全,系统的安全,用户的安全等。安全对于每位用户,管理员来说是非常重要的。

深爱那片海 发表于 2015-1-24 16:31:21

在系统检测不到与Linux兼容的显卡,那么此次安装就可能不支持图形化界面安装,而只能用文本模式安装等等。

仓酷云 发表于 2015-2-2 11:10:37

有疑问前,知识学习前,先用搜索。

灵魂腐蚀 发表于 2015-2-7 18:48:08

了解Linux的网络安全,系统的安全,用户的安全等。安全对于每位用户,管理员来说是非常重要的。

莫相离 发表于 2015-2-23 02:06:27

笔者五分钟后就给出了解决方法: “首先备份原文件到其他目录,然后删掉/usr/local/unispim/unispimsp.ksc,编辑 /usr/local/unispim/unispimsp.ini,最后重启动计算机

小妖女 发表于 2015-3-7 06:30:06

这种补充有助于他人在邮件列表/新闻组/论坛中搜索对你有过帮助的完整解决方案,这可能对他们也很有用。

飘飘悠悠 发表于 2015-3-14 15:37:05

说实话小时候没想过搞IT,也计算机了解也只是一些皮毛,至于什么UNIX,Linux,听过没见过,就更别说用过了。?

若相依 发表于 2015-3-21 12:06:51

为了更好的学习这门课程,我不仅课上认真听讲,课下也努力学习,为此还在自己的电脑上安装了Ubuntu系统。
页: [1]
查看完整版本: 来讲讲:Linux下增添Apache的rewrite Module