3

ubuntu サーバーに tomcat6 をインストールしたいのですが、言うとエラーが発生します sudo apt-get install tomcat6。tomcat7 をインストールすると、正常にインストールできます。しかし、tomcat6 のインストール中にこのエラーが発生します。

    ubuntu@ip-10-202-47-144:/var/solr$ sudo apt-get install tomcat6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 tomcat6 : Depends: tomcat6-common (>= 6.0.35-1ubuntu3.2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

何か案は ?

4

1 に答える 1

7

tomcat 6をインストールする前に、tomcat7またはその他のバージョンのtomcatが削除されていることを確認してください。削除方法は次のとおりです。

sudo apt-get remove tomcat7-common

ここにあなたのためのリンクがあります https://askubuntu.com/questions/173981/installing-tomcat-7-on-ubuntu-server-12-04

于 2013-02-24T22:03:46.353 に答える