应用程序镜像制作
准备好应用程序
[root@VM_8_24_centos testapp]# ls
Dockerfile testapp.tar.gz
编写Dockerfile
[root@VM_8_24_centos testapp]# cat Dockerfile
# 基础镜像[......]
准备好应用程序
[root@VM_8_24_centos testapp]# ls
Dockerfile testapp.tar.gz
编写Dockerfile
[root@VM_8_24_centos testapp]# cat Dockerfile
# 基础镜像[......]
参考文档
https://www.jianshu.com/p/4143b5cef39f
https://www.cnblogs.com/niloay/p/6261784.html
https://blog.csdn.net/qq_35981283/article/details/80738451[......]
现象
开发反馈登陆不了服务器了,默认开发是work账号登陆,root账号还没受影响。
[root@VM_101_65_centos ~]# su - work
Last login: Mon Apr 8 10:20:16 CST 2019 from 10.2.8.60 on pts/11
su[......]
Jstat是JDK自带的一个轻量级小工具。全称“Java Virtual Machine statistics monitoring tool”,它位于java的bin目录下,主要利用JVM内建的指令对Java应用程序的资源和性能进行实时的命令行的监控,包括了对Heap size[……]