zoukankan      html  css  js  c++  java
  • CentOS7安装ms8可能出现的错误

    参照《在Centos上安装MS8.0的详细过程》:http://muchong.com/html/201507/9145663.html

    • 安装过程中如果库文件不全,会异常终止。报错情况如下:
    WARNING: You have either chosen to cancel your installation, or an error has occurred.
    Please Verify your usage is correct:
    Usage: lp_setup [-silent] [-console] [-is:tempdir <path>] [-is:log <filename>] [-P licensepack.installLocation=<path>]
           -silent - installs the product in silent mode.
           -console - installs the product in console mode.
           -is:tempdir - allows the user to specify the location of your tmp dir.
           -is:log - allows the user to create a verbose log of your installation.
           -P licensepack.installLocation - allows the user to specify the location to install LicensePack
    If usage is correct please refer to FAQ section of the LicensePack documentation or contact Accelrys Scientific and Technical Support.
    The LicensePack documentation index is called LicensePack.html and is located on the CD.
    Return Code: 1

    解决办法为

     rpm -qa|grep glibc; rpm -qa|grep libgcc; rpm -qa|grep libstdc++ ;rpm -qa|grep redhat-lsb

    即严格按《在Centos上安装MS8.0的详细过程》对照安装。

    • 如果安装过程中报错如下:
    ACCELRYS_LIC_PACK_DIR: Undefined variable.
    Couldn't get environment information from lp_echovars: 256 at /home/msi/Accelrys/MaterialsStudio8.0/share/Install/Scripts/MSConfig.pm line 296.
    Materials Studio configuration failed。

    解决办法为:

    $ cd $HOME/Accelrys/LicensePack/etc/lp_echovars
    $ ./lp_config
    $ ./lp_echovars

    然后回到上次目录再次执行:

    ./install

    参见《ubuntu-install-ms8.0》:https://blog.csdn.net/beyond_zhangna/article/details/79629667

    • 如果发现客户端和服务器msgateway均正常运行,本机查看无问题。可以ping通,但无法通过ms连接测试,可能原因是firewalld未关闭,关闭即可:
    1 //临时关闭
    2 systemctl stop firewalld
    3 //禁止开机启动
    4 systemctl disable firewalld
    5 Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
    6 Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

    可参照《CentOS7 关闭防火墙》:https://blog.csdn.net/Post_Yuan/article/details/78603212

    (近来安装了一下,遇到的问题用上述办法得到了解决,故而记在这里。)

  • 相关阅读:
    Lc1049_最后一块石头的重量II
    Lc343_整数拆分
    MySQL使用Limit关键字限制查询结果的数量效率问题
    Lc62_不同路径
    Java几种序列化方式对比
    3、你平时工作用过的JVM常用基本配置参数有哪些?
    2、你说你做过JVM调优和参数配置,请问如何盘点查看MM系统默认值
    强引用、软引用、弱引用、虚引用分别是什么?
    零拷贝
    并发编程面试题-锁的优化 和 happen-before原则
  • 原文地址:https://www.cnblogs.com/lyg-blog/p/9022265.html
Copyright © 2011-2022 走看看