从tomcat官网上下载了apache-tomcat-5.5.36.zip,在window xp系统里面解压以后,直接放在了linux服务器上。 进入tomcat/bin目录,执行启动的时候出现如下错误: [root@test bin]# ./startup.shCannot find ./cata ...
分类:
其他好文 时间:
2021-03-17 14:39:49
阅读次数:
0
大家好,我是肖邦,这是我的第 10 篇原创文章。 在 Linux 系统使用中,作为一个管理员,我希望能查找系统中所有的大小超过 200M 文件,查看近 7 天系统中哪些文件被修改过,找出所有子目录中的可执行文件,这些任务需求 find 命令都可以轻松胜任。 在 Linux 系统文件中常用的属性可以分 ...
分类:
系统相关 时间:
2021-03-17 14:23:24
阅读次数:
0
问题原因在于官方在2020年12月2日正式将CentOS 6相关的软件源移出了官方源,随之而来逐级镜像也会陆续将其删除。 解决方案: curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliy ...
分类:
Web程序 时间:
2021-03-17 14:13:50
阅读次数:
0
慢日志slow-log的作用 记录运行较慢的语句,优化过程中常用的工具日志 默认未开启慢日志,需要修改配置文件my.cnf开启 $ vim /etc/my.cnf [mysqld] #开启慢日志 slow_query_log=1 #慢日志记录文件位置,目录提前创建好且有权限 slow_query_l ...
分类:
其他好文 时间:
2021-03-17 14:02:38
阅读次数:
0
# 图片爬取 import re import urllib import urllib.request def gethtml(url): page=urllib.request.urlopen(url) html=page.read() return html def getimg(html): ...
分类:
编程语言 时间:
2021-03-16 14:08:34
阅读次数:
0
1、上传安装包至目录:如/opt/java,解压 tar -zxvf 2、修改环境 vim /etc/profile 3、使命令生效 source /etc/profile 4、验证是否安装成功 ...
分类:
其他好文 时间:
2021-03-16 11:46:19
阅读次数:
0
leader https://vi.stackexchange.com/questions/836/what-is-leader Vim is full of various commands, which are assigned to almost all keys on the keyboar ...
分类:
系统相关 时间:
2021-03-15 11:29:06
阅读次数:
0
vim /usr/lib/systemd/system/nginx.service # 创建服务文件 nginx.service脚本内容如下: [Unit] # 服务的说明 Description=nginx # 描述服务 After=network.target # 描述服务类别 [Service ...
分类:
其他好文 时间:
2021-03-15 11:26:49
阅读次数:
0
开发环境选择 vim,vscode,qt,visual studio都可以做linux c++开发,但是作为windows程序员,最熟悉的还是visual stuio,加上visual studio 2019 支持cmake及linu开发,所以最终选择了visual studio 2019 + cm ...
1. str1 = input()s = '1234567890abcdefABCDEF'c = ""for item in str1: if item in s: c = c + item # print(str1.find(c[0]))# print(str1.find('-'))if c == ...
分类:
编程语言 时间:
2021-03-15 11:17:38
阅读次数:
0