Ubuntu16.04 安装JDK Tomcat
Ubuntu16.04安装jdk,下载linux中的64版本
需要下载jdk,tomcat安装包 tar.gz版本的
http://pan.baidu.com/s/1mi4WVhA
安装JDK:
hongdada@ubuntu:~$ sudo mkdir /java
[sudo] hongdada 的密码:
hongdada@ubuntu:~$ cd /Downloads
bash: cd: /Downloads: 没有那个文件或目录
hongdada@ubuntu:~$ cd Downloads/
hongdada@ubuntu:~/Downloads$ sudo mv jdk-8u121-linux-x64.tar.gz /java
hongdada@ubuntu:~/Downloads$ sudo tar -zxvf jdk-8u121-linux-x64.tar.gz
tar (child): jdk-8u121-linux-x64.tar.gz:无法 open: 没有那个文件或目录
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
hongdada@ubuntu:~/Downloads$ cd java/
bash: cd: java/: 没有那个文件或目录
hongdada@ubuntu:~/Downloads$ cd ~
hongdada@ubuntu:~$ cd java/
bash: cd: java/: 没有那个文件或目录
hongdada@ubuntu:~$ cd /java
hongdada@ubuntu:/java$ sudo tar -zxvf jdk-8u121-linux-x64.tar.gz
jdk1.8.0_121/
jdk1.8.0_121/THIRDPARTYLICENSEREADME-JAVAFX.txt
jdk1.8.0_121/THIRDPARTYLICENSEREADME.txt
...............
jdk1.8.0_121/man/ja_JP.UTF-8/man1/jstat.1
hongdada@ubuntu:/java$ sudo gedit /etc/environment //修改/etc/environment中的内容 hongdada@ubuntu:~$ sudo gedit /etc/environment
[sudo] hongdada 的密码: (gedit:3856): IBUS-WARNING **: The owner of /home/hongdada/.config/ibus/bus is not root! (gedit:3856): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-spell-enabled ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-encoding ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-spell-enabled ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-encoding ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-spell-enabled ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-encoding ** (gedit:3856): WARNING **: Set document metadata failed: 不支持设置属性 metadata::gedit-position
hongdada@ubuntu:~$ source /etc/environment
hongdada@ubuntu:~$ java -version
java version "1.8.0_121"
Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)
/etc/environment中文件修改为
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:$JAVA_HOME/bin"
export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib
export JAVA_HOME=/java/jdk1.8.0_121
修改environment是修改系统的环境变量,还要修改登陆用户的环境变量,即修改/etc/profile的文件
hongdada@ubuntu:~$ sudo gedit /etc/profile
/etc/profile修改为:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi #set java environment
export JAVA_HOME=/java/jdk1.8.0_121
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH
使用命令使环境变量立即生效
source /etc/profile
重启电脑,能正常进入系统,且java -version命令有效
安装Tomcat9:
在java文件夹下面创建文件夹tomcat,迁移Downloads中的apache-tomcat-9.0.0.M17.tar.gz文件到tomcat文件夹中,解压
修改/java/tomcat/apache-tomcat-9.0.0.M17/bin/startup.sh文件
在文件底部添加
#set java environment
export JAVA_HOME=/java/jdk1.8.0_121
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH #tomcat
export TOMCAT_HOME=/java/tomcat/apache-tomcat-9.0.0.M17
添加之后的startup.sh文件
#!/bin/sh # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License. # -----------------------------------------------------------------------------
# Start Script for the CATALINA Server
# ----------------------------------------------------------------------------- # Better OS/400 detection: see Bugzilla 31132
os400=false
case "`uname`" in
OS400*) os400=true;;
esac # resolve links - $0 may be a softlink
PRG="$0" while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`/"$link"
fi
done PRGDIR=`dirname "$PRG"`
EXECUTABLE=catalina.sh # Check that target executable exists
if $os400; then
# -x will Only work on the os400 if the files are:
# 1. owned by the user
# 2. owned by the PRIMARY group of the user
# this will not work if the user belongs in secondary groups
eval
else
if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then
echo "Cannot find $PRGDIR/$EXECUTABLE"
echo "The file is absent or does not have execute permission"
echo "This file is needed to run this program"
exit 1
fi
fi exec "$PRGDIR"/"$EXECUTABLE" start "$@" #set java environment
export JAVA_HOME=/java/jdk1.8.0_121
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH #tomcat
export TOMCAT_HOME=/java/tomcat/apache-tomcat-9.0.0.M17
启动Tomcat
hongdada@ubuntu:~$ cd /java
hongdada@ubuntu:/java$ cd tomcat
hongdada@ubuntu:/java/tomcat$ cd apache-tomcat-9.0.0.M17
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$ cd bin
bash: cd: bin: 权限不够
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$ sudo cd bin
sudo: cd:找不到命令
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$ sudo bin
sudo: bin:找不到命令
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$ sudo ./bin/startup.sh
Using CATALINA_BASE: /java/tomcat/apache-tomcat-9.0.0.M17
Using CATALINA_HOME: /java/tomcat/apache-tomcat-9.0.0.M17
Using CATALINA_TMPDIR: /java/tomcat/apache-tomcat-9.0.0.M17/temp
Using JRE_HOME: /java/jdk1.8.0_121
Using CLASSPATH: /java/tomcat/apache-tomcat-9.0.0.M17/bin/bootstrap.jar:/java/tomcat/apache-tomcat-9.0.0.M17/bin/tomcat-juli.jar
Tomcat started.
虚拟机的ip地址为192.168.1.202
查看tomcat
关闭tomcat,直接执行bin下面的shutdown.sh文件
hongdada@ubuntu:~$ cd /java
hongdada@ubuntu:/java$ cd tomcat
hongdada@ubuntu:/java/tomcat$ cd apache-tomcat-9.0.0.M17
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$ sudo ./bin/shutdown.sh
[sudo] hongdada 的密码:
Using CATALINA_BASE: /java/tomcat/apache-tomcat-9.0.0.M17
Using CATALINA_HOME: /java/tomcat/apache-tomcat-9.0.0.M17
Using CATALINA_TMPDIR: /java/tomcat/apache-tomcat-9.0.0.M17/temp
Using JRE_HOME: /java/jdk1.8.0_121
Using CLASSPATH: /java/tomcat/apache-tomcat-9.0.0.M17/bin/bootstrap.jar:/java/tomcat/apache-tomcat-9.0.0.M17/bin/tomcat-juli.jar
hongdada@ubuntu:/java/tomcat/apache-tomcat-9.0.0.M17$
为了每次能够在开机的时候自动启动tomcat
修改/etc/rc.local文件
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing. #set java environment
export JAVA_HOME=/java/jdk1.8.0_121
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH #tomcat
export TOMCAT_HOME=/java/tomcat/apache-tomcat-9.0.0.M17 #configuration
/java/tomcat/apache-tomcat-9.0.0.M17/bin/startup.sh
特别是#configuration下面的,用于自启动。
重启以后发现tomcat并没有自动启动,网上查看发现原来我的/etc/rc.local没有执行权限
hongdada@ubuntu:~$ ls -al /etc/rc.local
-rw-rw-r-- 1 root root 628 3月 2 23:15 /etc/rc.local
hongdada@ubuntu:~$ chmod +x /etc/rc.local
chmod: 更改'/etc/rc.local' 的权限: 不允许的操作
hongdada@ubuntu:~$ sudo chmod +x /etc/rc.local
hongdada@ubuntu:~$ ls -al /etc/rc.local
-rwxrwxr-x 1 root root 628 3月 2 23:15 /etc/rc.local
hongdada@ubuntu:~$
修改/etc/rc.local的执行权限,重启发现tomcat已经ok了。
http://www.linuxidc.com/Linux/2017-02/140908.htm
http://www.linuxdiyf.com/linux/27852.html
http://blog.csdn.net/jacson_bai/article/details/45149431
Ubuntu16.04 安装JDK Tomcat的更多相关文章
- ubuntu16.04安装jdk,tomcat
ubuntu16.04安装jdk,tomcat 最近装了一下tomcat,网上的教程很多,我也试了很多次,但是有一些教程关于tomcat配置是错误的,让我走上了歧途.差点重装系统,还好王总及时出手帮助 ...
- ubuntu16.04安装jdk/mysql/tomcat (使用apt-get命令)
安装jdk 更新系统安装包缓存,并且安装OpenJDK8 sudo apt-get update sudo apt-get install openjdk-8-jdk 检查jdk版本 java -ve ...
- Ubuntu server12.04安装JDK+Tomcat+mysql
一.安装JDK 1.首先到官网上下载jdk-7u79-linux-x64.tar.gz. 2.将jdk-7u79-linux-x64.tar.gz拷贝到/usr/lib/jdk/目录下面,这里如果没有 ...
- Ubuntu16.04安装JDK
转载请注明源出处:http://www.cnblogs.com/lighten/p/6105463.html 1.简单的安装方法 安装JDK的最简单方法应该就是使用apt-get来安装了,但是源一般是 ...
- Ubuntu16.04 安装 JDK
1.到Oracle官网下载 地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html ...
- ubuntu16.04 安装jdk 错误解决
错误 $ apt-get install openjdk-9-jdk Errors were encountered while processing: /var/cache/apt/archives ...
- Ubuntu16.04 安装openjdk-7-jdk
Ubuntu16.04 安装openjdk-7-jdk sudo apt-get install openjdk-7-jre 或者sudo apt-get install openjdk-7-jdk ...
- RedHat Linux 5.5安装JDK+Tomcat并部署Java项目
与大家分享下RedHat Linux 5.5安装JDK+Tomcat并部署Java项目的步骤,希望对大家有用. 1.下载并安装jdk 虚拟机中安装RedHat Linux 5.5 64位企业版, 这里 ...
- Ubuntu16.04安装Ambari 2.7.3
概念了解 Ambair介绍 Apache Ambari是一个用于支持大数据软件供应 管理与监控软件.它也是一个分布式软件,分为Ambair-Server与Ambari-Client两个部分.在生产环境 ...
随机推荐
- webpack中,require的五种用法
a.js: module.exports = function(x){ console.log(x); } 一,commonjs同步: var b = require('./a');b('你好')// ...
- ios 添加朦层
@interface RootViewController : UIViewController { UIView *view; } -(void)createBackgroundView { vie ...
- 使用Martix来实现缩放图片的功能
使用Martix(android.graphics.Matrix)类中的postScale()方法结合Bitmap来实现缩放图片的功能 Bitmap bmp = BitmapFactory.decod ...
- jpa关联映射(一)
开发中常用到数据表的关联(其实很难遇到..),spring-data-jpa(其实是hibernate)提供了一整套十分方便的注解来供我们使用表关联功能. OneToOne OneToMany Man ...
- CentOS中用户不在 sudoers 文件中。此事将被报告。
首先切换为root用户 su root; 然后更改etc/sudoers文件的只读为可读可写可执行. sudo chmod 777 /etc/sudoers 输入visudo命令即可编辑文件,找到ro ...
- R测试向量是否相等
> x<-1:3 > typeof(x) [1] "integer" > y<-c(1,3,4) > typeof(y) [1] "d ...
- rman备份的其它特性
1.7.3.1并发: 主要用于提高备份的速度,可以分为手动并发或自动并发 手动并发:通过分配多个通道并将文件指定到特定的通道 RMAN> run { 2> allocate channe ...
- [MongoDB] 机器换IP之后的设置
组里用的几台机器换了网段,MongoDB需要做重新配置. 查看Replica Set的状态如下: rs.status() { "startupStatus" : 1, " ...
- New Reform---cf659E(dfs找环)
题目链接:http://codeforces.com/problemset/problem/659/E 给你n个点,m条双向边,然后让你把这些边变成有向边,使得最后的图中入度为0的点的个数最少,求最少 ...
- PROPAGATION_REQUIRES_NEW VS PROPAGATION_NESTED
PROPAGATION_REQUIRES_NEW, in contrast to PROPAGATION_REQUIRED, uses a completely independent transac ...