我在redhat下安装完jdk1.7之后,运行javac出现出现提示错误?不知道怎么解决?求帮助!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我在redhat下安装完jdk1.7之后,运行javac出现出现提示错误?不知道怎么解决?求帮助!相关的知识,希望对你有一定的参考价值。

Error:dl failure on line 863
Error::failed /usr/java/jdk1.7.0_51/jre/lib/i386/client/libjvm.so, because /lib/tls/libc.so.6:version 'GLIBC_2.4' not found (requried by /usr/java/jdk1.7.0_51/jre/lib/i386/client/libjvm.so)

参考技术A 英文提示找不到libc.so.6
去安装盘的 /Server 里面找到 glibc-2.xxxx.i686.rpm安装
使用如下命令安装

# rpm -Uvh glibc-2.xxxx.i686.rpm
参考技术B 提示glibc 2.4 找不到so文件

或者linux 32 64搞错了
或者linux版本太低?

Linux(redhat 5.8)下 安装jetty 部署 使用

首先须要安装JDK,自行解决


下载jetty安装包http://dist.codehaus.org/jetty/


我下载的是8.1.15


tar -xzvf *.tar.gz


解压完之后,基本就能够用了


webapps下有一些demo的war包


启动jetty服务:java -jar start.jar  默认port8080

訪问http://localhost:8080就能够了


如今開始部署你自己的war包

增加你的war包已经有了,名字是abc.war

那么将该war包放到webapps以下

又一次启动jetty

訪问http://localhost:8080/abc就可以訪问


假设你的war包名字非常复杂不想改动,可是訪问路径时希望简单

你能够复制context文件夹下的test.xml为XXX.xml 然后改动该文件内容


<?xml version="1.0"  encoding="ISO-8859-1"?

> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> <!-- ================================================================== Configure and deploy the test web application in $(jetty.home)/webapps/test Note. If this file did not exist or used a context path other that /test then the default configuration of jetty.xml would discover the test webapplication with a WebAppDeployer. By specifying a context in this directory, additional configuration may be specified and hot deployments detected. ===================================================================== --> <Configure class="org.eclipse.jetty.webapp.WebAppContext"> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- Required minimal context configuration : --> <!-- + contextPath --> <!-- + war OR resourceBase --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <Set name="contextPath">/hello</Set> <Set name="war"><SystemProperty name="jetty.home" default="."/>/webapps/abc-123-def-567.war</Set> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- Optional context configuration --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <Set name="extractWAR">true</Set> <Set name="copyWebDir">false</Set> <Set name="defaultsDescriptor"><SystemProperty name="jetty.home" default="."/>/etc/webdefault.xml</Set> <!-- virtual hosts <Set name="virtualHosts"> <Array type="String"> <Item>www.myVirtualDomain.com</Item> <Item>localhost</Item> <Item>127.0.0.1</Item> </Array> </Set> --> <!-- disable cookies <Get name="sessionHandler"> <Get name="sessionManager"> <Set name="usingCookies" type="boolean">false</Set> </Get> </Get> --> <!-- Non standard error page mapping --> <!-- <Get name="errorHandler"> <Call name="addErrorPage"> <Arg type="int">500</Arg> <Arg type="int">599</Arg> <Arg type="String">/dump/errorCodeRangeMapping</Arg> </Call> </Get> --> <!-- Add context specific logger <Set name="handler"> <New id="RequestLog" class="org.eclipse.jetty.server.handler.RequestLogHandler"> <Set name="requestLog"> <New id="RequestLogImpl" class="org.eclipse.jetty.server.NCSARequestLog"> <Set name="filename"><Property name="jetty.logs" default="./logs"/>/test-yyyy_mm_dd.request.log</Set> <Set name="filenameDateFormat">yyyy_MM_dd</Set> <Set name="append">true</Set> <Set name="LogTimeZone">GMT</Set> </New> </Set> </New> </Set> --> </Configure>

这时候你能够看到war包名字非常复杂,可是訪问的路径已经改动为hello了

所以如今又一次启动jetty服务,訪问http://localhost:8080/hello就可以訪问了


至此jetty的安装及简单使用就结束了!


































以上是关于我在redhat下安装完jdk1.7之后,运行javac出现出现提示错误?不知道怎么解决?求帮助!的主要内容,如果未能解决你的问题,请参考以下文章

win10 jdk1.7+maven(免安装3.2.5)

Linux下安装JDK1.7

在Linux redhat 5.0安装完Oracle11 g 之后,无法使用netca创建监听,运行时报错如下

redhat7安装jdk1.7报错/home/renqiwei/jdk1.7/bin/java: /lib/ld-linux.so.2: bad ELF interpreter: No such fi

Redhat Linux安装JDK 1.7

Linux 下安装 jdk-7u75-linux-x64.gz,jdk1.7.0_75,jdk1.7步骤: