logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Tomcat配置文件server.xml详解

Tomcat作为常用的java容器,是运维人员必须掌握的内容,而其配置文件是重中之重。本文将通过实例,介绍server.xml中各个组件的配置,并详细说明Tomcat各个核心组件的作用以及各个组件之间的相互关系。

#tomcat#linux#运维
shell编程—tomcat自动发包详解

tomcat是我们日常使用的java容器,常作为web服务器和Nginx配合使用,运维工程师需要经常发布更新包,而用shell脚本可以实现高效安全的发包,怎么写脚本,这有详细的讲解。

#linux#运维
Python实现1-100猜数字游戏

#这是一个猜数字游戏。1-100之间数字猜测import randomnum=random.randint(1,100)print('这是一个猜数字游戏,你可以输入1到100之间的数字,但是只有5次机会')for guesstake in range(1,6):print('请输入一个数字')guess=int(input())if guess < num:p...

#运维
Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

Python使用pip安装openyxl时出现错误:Could not find a version that satisfies the requirement openyxl (from versions: ),以及讲解pip和pip3的区别

#python#运维
Python后台运行—nohup及2>&1详解

如何让Python脚本后台运行,生成单独的日志供我们查看。nohup和2>&1的用法,都在本文章中有详细解读。

#运维#linux
Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

Python使用pip安装openyxl时出现错误:Could not find a version that satisfies the requirement openyxl (from versions: ),以及讲解pip和pip3的区别

#python#运维
Python之安装MySQLdb

python连接mysql需要MySQLdb模块,这里主要介绍python3.7安装MySQLdb模块,当然其他版本也有介绍。

#python#mysql
Python之安装MySQLdb

python连接mysql需要MySQLdb模块,这里主要介绍python3.7安装MySQLdb模块,当然其他版本也有介绍。

#python#mysql
到底了