码迷,mamicode.com
首页 >  
搜索关键字:cp mv cat head    ( 57883个结果
MYSQL Packets out of order. Expected 1 received 56. Packet size=3420216错误
报错信息: PHP Warning: Packets out of order. Expected 1 received 56. Packet size=3420216 in /data/bogiang/test/EC/swoole_process.php on line 62 Warning: P ...
分类:数据库   时间:2021-06-22 18:19:52    阅读次数:0
Apache Tomcat 安装与配置教程
Apache Tomcat 安装与配置教程 JDK的安装与配置 1. 从官网下载JDK https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 2. 下载完毕后, 安装JDK(直接按照安 ...
分类:Web程序   时间:2021-06-22 18:17:52    阅读次数:0
Oracle DDL
新增字段 alter table MIC2005.QP_CAT_DESCRIPTION add (type varchar2(2) default '0' not null ); --新增字段 comment on column MIC2005.QP_CAT_DESCRIPTION.type is ...
分类:数据库   时间:2021-06-22 18:17:13    阅读次数:0
Urllib.requset.Request加入请求头部
上一个随笔中报错: urllib.error.HTTPError: HTTP Error 418: 百度后,加上头部得以解决。 urllib.request.Request 功能:声明一个request对象。可自定义header等请求信息。 本次,加入一个更多参数的header。 # 导入urlli ...
分类:Web程序   时间:2021-06-22 17:57:32    阅读次数:0
Shell脚本--删除文本中指定字符开头的行
删除文本中指定字符开头的行: cat /root/1.txt | sed -e '/^WARN/d' > /root/2.txt 注意:上面红色字体为开头行的关键字 cat:查看文件 /root/filename:文件名| :管道符sed:在sed处理文件的时候,每一行都被保存在一个叫模式空间的临时 ...
分类:系统相关   时间:2021-06-22 17:54:38    阅读次数:0
Html页基础代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <title>数据可视化< ...
分类:Web程序   时间:2021-06-22 17:36:40    阅读次数:0
Centos 8.2 x64安装MariaDB(MySql)---九五小庞
简介OS: CentOS Linux release 8.2 开始清除mysql# 查看系统信息$ cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) # 查看有没有mysql$ rpm -qa | grep mysqlmysql- ...
分类:数据库   时间:2021-06-22 17:36:24    阅读次数:0
elasticSearch基本操作
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:其他好文   时间:2021-06-21 21:11:29    阅读次数:0
nacos读取不到nacos中配置信息问题
pom.xml配置 需要添加spring-boot-starter-actuator很重要不要然报错 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-co ...
分类:其他好文   时间:2021-06-21 21:11:16    阅读次数:0
06-输出
目标 格式化输出 格式化符号 f-字符串 print的结束符 输出 作用:程序输出内容给用户 print('hello Python') age = 18 print(age) # 需求:输出“今年我的年龄是18岁” 一. 格式化输出 所谓的格式化输出即按照一定的格式输出内容。 1.1 格式化符号 ...
分类:其他好文   时间:2021-06-21 20:50:55    阅读次数:0
57883条   上一页 1 ... 10 11 12 13 14 ... 5789 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!