我正在按照安装指南的说明在Linux Read Hat Enterprise 7.9上安装Qlik Catalog SW。
我在Tomcat安装中遇到了第一个问题。基本上,我无法使用浏览器连接到Tomcat。
下面是我使用过的命令的详细列表。
我已经用Firefox试过了。
在尝试安装Chrome时,我遇到了其他问题。
有什么提示吗?
*** Installing Chrome ***
# sudo yum install glib
# sudo yum list glibc
# sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
# sudo yum -y install redhat-lsb libXScrnSaver
# sudo yum -y localinstall google-chrome-stable_current_x86_64.rpm
>>>>>>>>>>>>>>>>>>>>>>>
Error: Package: google-chrome-stable-95.0.4638.54-1.x86_64 (/google-chrome-stable_current_x86_64)
Requires: libc.so.6(GLIBC_2.18)(64bit)
<<<<<<<<<<<<<<<<<<<<<<<
*** Installing Tomcat ***
Install wget (if not already installed):
# sudo yum install -y wget
Become the service account user:
# sudo su - qdcuser
Download Apache Tomcat and extract the file in usr/local/qdc:
$ cd /usr/local/qdc
$ wget https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.38/bin/apache-tomcat-9.0.38.tar.gz
$ tar -xvf apache-tomcat-9.0.38.tar.gz
Overwrite <tomcat home>/conf/server.xml with the version expanded from the Qlik Catalog zip file:
$ cp /tmp/podium/config/tomcat9-server.xml /usr/local/qdc/apache-tomcat-9.0.38/conf/server.xml
Opening ports 8080 and 8443:
# sudo firewall-cmd --zone=public --permanent --add-port=8080/tcp
# sudo firewall-cmd --zone=public --permanent --add-port=8443/tcp
# sudo systemctl restart firewalld.service
Setup Apache Tomcat as a service to automatically start when Linux restarts:
# sudo cp /tmp/podium/config/tomcat.service /etc/systemd/system/
# sudo systemctl daemon-reload
# sudo systemctl enable tomcat.service
Edit the file /etc/systemd/system/tomcat.service to insert the correct user and group names:
# sudo nano /etc/systemd/system/tomcat.service
User=qdcuser
Group=qdcgroup
Start Tomcat manually:
$ cd /usr/local/qdc/apache-tomcat-9.0.38
$ ./bin/startup.sh
Browse to the following URL to verify that Tomcat is running:
https://localhost:8443
>>>>>>>>>>>>>>>>>>>>
Unable to connect
Firefox can’t establish a connection to the server at localhost:8443.
<<<<<<<<<<<<<<<<<<<<<发布于 2021-10-21 12:38:42
我也看到了这个问题..以下是我认为可能的原因..
rpm -qf /usr/lib64/libc.so.6glibc-2.17-325.el7_9.x86_64
在RHEL7.9上,glibc是2.17,google的开发人员应该知道这一点,这意味着它是一个bug。
或。他们应该将该库作为其包的一部分提供,并静态链接它。
简短的回答。目前,在Google弄清楚并修复它之前,我可能会删除该软件包,或者跳过该软件包。
跳过..
sudo yum -y更新--排除google-chrome-稳定*
要删除...好吧..。"sudo yum -y删除google-chrome--y“
发布于 2021-10-21 22:33:17
在谷歌解决问题之前,另一种选择是:
sudo yum update --skip-broken
这可以安装所有更新并忽略chrome
https://stackoverflow.com/questions/69656168
复制相似问题