When installing Tomcat in Docker, Tomcat may overflow its memory when downloading large files or in some cases, so you need to configure the memory size of Tomcat. There are two ways to configure the memory size of Tomcat in Docker: 1. Mount the configuration file in dockerMount the catalina.sh configuration file of tomcat in docker to the host machine, and then configure the jvm memory size in catalina.sh. 1. You need to re-run a tomcat container (note: the port and container name cannot be repeated)docker run -d \ -v /server/webapps:/usr/local/tomcat/webapps/ \ -v /server/catalina.sh:/usr/local/tomcat/bin/catalina.sh \ -v /server/logs/demo:/server/logs/demo \ -e TZ="Asia/Shanghai" \ --privileged=true \ --name demo \ -p 8080:8080 \ tomcat8 illustrate: * -v /server/webapps:/usr/local/tomcat/webapps/ Mount the running directory of the current project to the webapps under tomcat * -v /server/catalina.sh:/usr/local/tomcat/bin/catalina.sh mounts the host's catalina.sh to the catalina.sh under tomcat in docker * -v /server/logs/demo:/server/logs/demo mounts logs to the host * -e TZ="Asia/Shanghai" set time zone * --privileged=true Set to have real root privileges in the container * -p 8080:8080 mapping port * The name of the tomcat8 image 2. Configuration memory in catalina.shAdd below cygwin=false: JAVA_OPTS="-server -Xms1024m -Xmx2048m -XX:MaxNewSize=256m -XX:PermSize=128m -XX:MaxPermSize=256m" -xms initialize heap memory -xmx Maximum heap memory 2. Directly modify the configuration of catalina.sh of the tomcat containerYou can directly enter the container and modify the catalina.sh configuration file of tomcat. However, this method is not recommended because it will be troublesome to hang up again in the future and it is not convenient to configure. If you need to re-run the container, you don’t know the configuration of the memory size in the container. 1. Enter the containerdocker exec -it <container_name> /bin/bash 2. Find the catalina.sh configuration file and add configuration (the configuration statement added in the first step is fine)// If there is no vi command, you need to install vi /usr/local/tomcat/bin/catalina.sh // Exit the container and restart exit docker restart <container_name> Notice: If you are prompted that the file is a read-only file or that you do not have permission to modify it when modifying Catalina.sh, you need to enter the container with root privileges. The specific method is as follows Supplement: Obtaining root permissions in Docker containers There are some operations that often need to be performed in the Docker container, such as suddenly needing to modify a configuration file, etc., but modifying the file requires root permissions. You can refer to the following solution Usually when modifying files, you will be prompted: read-only file system or Permission denied 1. Mount the configuration fileWhen running the Docker container, you can copy the configuration file to the host machine, and then when running, load the -v parameter to mount the host machine's configuration file into Docker. 2. Enter the docker container with root privilegesOrder: docker exec -it -u root <container_id> /bin/bash Notice: The premise of executing the above command is to add this parameter when running the container: --privileged=true. Otherwise, when entering the container, it will still prompt that you do not have permission to modify. The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Detailed explanation of MySQL phantom reads and how to eliminate them
>>: Design theory: people-oriented design concept
Solution function mergeImgs(list) { const imgDom ...
Table of contents 1. Component bloat 2. Change th...
Table of contents CSS3 Box Model a. CSS3 filter b...
Table of contents 1. Environmental Preparation 1....
Problem Description 1. Database of the collection...
Table of contents Preface: 1. Understand lock wai...
Preface I am a PHP programmer who started out as ...
Dynamically implement a simple secondary menu Whe...
This article example shares the specific code of ...
Table of contents 1. System environment 2. Operat...
Table of contents 1. Introduction to ReactJS 2. U...
DetachKeyPair Unbind SSH key pairs from one or mo...
Recently, I happened to be in touch with the vue+...
Table of contents The creation and confusion of n...
This article shares the specific code of JavaScri...