zoukankan      html  css  js  c++  java
  • Linux上部署Java应用+Python3环境搭建

    给了Linux的测试环境,目前需要install JDK, Tomcat,此处记录下小白的操作过程。

    1. 查询Linux发行版本,包括内核信息

    (1) Linux查询内核信息

    $ uname -a

    Linux ECA-LPH000007 3.10.0-514.6.1.el7.x86_64 #1 SMP Wed Jan 18 13:06:36 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

    $ cat /proc/version

    Linux version 3.10.0-514.6.1.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC) ) #1 SMP Wed Jan 18 13:06:36 UTC 2017

    大概猜出发行版CentOS 7, 64位

    (2) Linux查询发行版

    $ lsb_release -a

    -bash: lsb_release: command not found

    命令不支持

    $ cat /etc/issue

    S
    Kernel on an m

    没有具体版本信息

    $ ls -l /etc | grep release
    $ cat /etc/centos-release

    -rw-r--r--. 1 root root 38 Dec 9 2015 centos-release
    -rw-r--r--. 1 root root 51 Dec 9 2015 centos-release-upstream
    -rw-r--r--. 1 root root 393 Dec 9 2015 os-release
    lrwxrwxrwx. 1 root root 14 Mar 17 2017 redhat-release -> centos-release
    lrwxrwxrwx. 1 root root 14 Mar 17 2017 system-release -> centos-release
    -rw-r--r--. 1 root root 23 Dec 9 2015 system-release-cpe

    CentOS Linux release 7.2.1511 (Core)

    确认CentOS 7, 64位发行版。

    2. 是否安装JDK

    $ java -version

    -bash: java: command not found

    $ which java

    /usr/bin/which: no java in (/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/xxx/.local/bin:/home/xxx/bin)

    确认无JDK配置。

    之后被告知server上已经装好yum,可以直接使用安装需要的环境,极大简化了JDK的安装过程。

    3. yum安装JDK8

    4. 安装Tomcat9

     参考blog

    5. 安装Python3.7

    参考blog.

  • 相关阅读:
    初识计算机
    前端html css
    mysql高级
    mysql多表查询
    mysql数据库查询
    mysql表关系
    mysql数据类型
    mysql数据库介绍
    异步回调 协程
    GIL-全局解释器锁
  • 原文地址:https://www.cnblogs.com/hello-yz/p/10348302.html
Copyright © 2011-2022 走看看