


The content of this article is about how to manually deploy a Java web project using a basic configuration of a cloud server ECS instance. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you. help.
Manual deployment of Java Web projects
Applicable objects
This document introduces how to use a basic configuration cloud server ECS Example deployment Java web project. It is suitable for individual users who have just started using Alibaba Cloud to build websites.
Configuration requirements
#The software versions listed here only represent the versions used in writing this document. When operating, please refer to the actual software version.
Operating system: CentOS 7.4
Tomcat version: Tomcat 8.5.23
JDK version: JDK 1.8.0_141
Installation Preparation
The CentOS 7.4 system has the firewall enabled by default. You can turn off the firewall, or refer to the official website documentation to add rules in the firewall to allow incoming rules for ports 80, 443, or 8080.
Turn off the firewall:
systemctl stop firewalld.service
Turn off the firewall auto-start function:
systemctl disable firewalld.service
Create a general user www, run tomcat:
useradd www
Release in the security group Port 8080. For specific operations, please refer to Adding Security Group Rules.
Create the website root directory:
mkdir -p /data/wwwroot/default
Create a new Tomcat test page:
echo Tomcat test > /data/wwwroot/default/index.jsp chown -R www.www /data/wwwroot
Download the source code
wget https://mirrors.aliyun.com/apache/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz
Note: The source code version will be continuously upgraded. You can obtain the appropriate installation package address in the https://mirrors.aliyun.com/apache/tomcat/tomcat-8/ directory.
wget http://mirrors.linuxeye.com/jdk/jdk-8u141-linux-x64.tar.gz
Note: The source code version will be continuously upgraded. You can obtain the appropriate installation package address in the http://mirrors.linuxeye.com/jdk/ directory.
Install JDK
Follow the following steps to install JDK.
Create a new directory:
mkdir /usr/java
Extract jdk-8u141-linux-x64.tar.gz to /usr/java.
tar xzf jdk-8u141-linux-x64.tar.gz -C /usr/java
Set environment variables:
Edit /etc/profile: vi /etc/profile.
Press the i key to enter edit mode.
Add the following information in the /etc/profile file:
#set java environment export JAVA_HOME=/usr/java/jdk1.8.0_141 export CLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib export PATH=$JAVA_HOME/bin:$PATH
Press the Esc key to exit edit mode, enter :wq to save and close the file.
Load environment variables: source /etc/profile.
Check jdk version. When the jdk version information appears, it means that the JDK has been installed successfully.
java -version
java version "1.8.0_141" Java(TM) SE Runtime Environment (build 1.8.0_141-b15) Java HotSpot(TM) 64-Bit Server VM (build 25.141-b15, mixed mode)
Installing Tomcat
Follow the following steps to install Tomcat.
Run the following commands in sequence to decompress apache-tomcat-8.5.23.tar.gz, rename the Tomcat directory, and set user permissions.
tar xzf apache-tomcat-8.5.23.tar.gz mv apache-tomcat-8.5.23 /usr/local/tomcat/ chown -R www.www /usr/local/tomcat/
Description:
In the /usr/local/tomcat/ directory:
bin directory stores some script files of Tomcat, including scripts for starting and shutting down the Tomcat service.
conf: Stores various global configuration files of the Tomcat server, the most important of which are server.xml and web.xml.
webapps: Tomcat’s main Web publishing directory. Web application files are placed in this directory by default.
logs: Stores the log files when Tomcat is executed.
Configure server.xml file:
Switch to the /usr/local/tomcat/conf/ directory: cd /usr/local/tomcat/conf/.
Rename the server.xml file: mv server.xml server.xml_bk.
Create a new server.xml file:
Run the command vi server.xml.
Press the i key to enter edit mode.
Add the following content:
<?xml version="1.0" encoding="UTF-8"?> <Server port="8006" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/> <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener"/> <Listener className="org.apache.catalina.core.AprLifecycleListener"/> <GlobalNamingResources> <Resource name="UserDatabase" auth="Container" type="org.apache.catalina.UserDatabase" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" pathname="conf/tomcat-users.xml"/> </GlobalNamingResources> <Service name="Catalina"> <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" maxThreads="1000" minSpareThreads="20" acceptCount="1000" maxHttpHeaderSize="65536" debug="0" disableUploadTimeout="true" useBodyEncodingForURI="true" enableLookups="false" URIEncoding="UTF-8"/> <Engine name="Catalina" defaultHost="localhost"> <Realm className="org.apache.catalina.realm.LockOutRealm"> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> </Realm> <Host name="localhost" appBase="/data/wwwroot/default" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="/data/wwwroot/default" debug="0" reloadable="false" crossContext="true"/> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%h %l %u %t "%r" %s %b" /> </Host> </Engine> </Service> </Server>
Set JVM memory parameters:
Run command vi /usr/local/tomcat/bin/setenv.sh, create /usr/local/ tomcat/bin/setenv.sh.
Press the i key to enter edit mode.
Add the following:
JAVA_OPTS='-Djava.security.egd=file:/dev/./urandom -server -Xms256m -Xmx496m -Dfile.encoding=UTF-8'
Press the Esc key to exit edit mode, enter :wq to save and exit the file.
Set Tomcat auto-start script.
Download script: wget https://github.com/lj2007331/oneinstack/raw/master/init.d/Tomcat-init
Rename Tomcat-init: mv Tomcat-init/ etc/init.d/tomcat
Add execution permissions: chmod x /etc/init.d/tomcat
Run the following command to set the startup script JAVA_HOME.
sed -i 's@^export JAVA_HOME=.*@export JAVA_HOME=/usr/java/jdk1.8.0_141@' /etc/init.d/tomcat
Set up auto-start.
chkconfig --add tomcat chkconfig tomcat on
Start Tomcat.
service tomcat start
Enter http://ip:8080 in the browser address bar to access. When the page shown in the figure appears, the installation is successful.
The above is the detailed content of How to manually deploy a Java web project using a basic configuration cloud server ECS instance. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)
