【阿里云学习笔记】快速搭建网站
生活随笔
收集整理的這篇文章主要介紹了
【阿里云学习笔记】快速搭建网站
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在ECS服務器上,執行以下命令安裝Apache及其擴展包,run命令
yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql報錯如下
--> Finished Dependency Resolution Error: Package: 1:mod_ssl-2.4.6-97.el7.centos.5.x86_64 (updates)Requires: httpd = 2.4.6-97.el7.centos.5 Error: Package: 1:mod_ssl-2.4.6-97.el7.centos.5.x86_64 (updates)Requires: httpd Error: Package: httpd-manual-2.4.6-97.el7.centos.5.noarch (updates)Requires: httpd = 2.4.6-97.el7.centos.5 Error: Package: mod_perl-2.0.11-1.el7.x86_64 (epel)Requires: httpd-mmn = 20120211x8664 Error: Package: 1:mod_ssl-2.4.6-97.el7.centos.5.x86_64 (updates)Requires: httpd-mmn = 20120211x8664You could try using --skip-broken to work around the problem ** Found 2 pre-existing rpmdb problem(s), 'yum check' output follows: 2:postfix-2.10.1-9.el7.x86_64 has missing requires of libmysqlclient.so.18()(64bit) 2:postfix-2.10.1-9.el7.x86_64 has missing requires of libmysqlclient.so.18(libmysqlclient_18)(64bit)兩個原因:
1、因為進入ESC服務器后,遠程locale與本地locale沒有對應。參考解決方案:關于locale問題 warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory_Mark蜀黍的博客-CSDN博客
2、進入之后如依舊報錯,解決方案:
yum clean all rpm --rebuilddb? yum update總結
以上是生活随笔為你收集整理的【阿里云学习笔记】快速搭建网站的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python打印报错信息_python打
- 下一篇: 单源最短路径(C++实现)