作为DBA帐号登录,查看他的权限。 set linesize 200;col privs_type format a10;col username format a20;col table_name format a35;col column_name format a25;col PRIVILEG ...
分类:
数据库 时间:
2020-04-14 17:04:00
阅读次数:
74
先用命令找到httpd.conf文件在哪 默认配置文件: vim /etc/httpd/conf/httpd.conf 然后找到项目的路径 把里面的AllowOverride None改成AllowOverride All 最后在项目路径里面添加一个.htaccess文件,内容如下 最后再添加一个4 ...
分类:
Web程序 时间:
2020-04-14 16:39:00
阅读次数:
73
一、准备 1.修改字符集localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8export LC_ALL=zh_CN.UTF-8echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf 2.关闭selinux和防火墙getenforce ...
分类:
其他好文 时间:
2020-04-14 16:33:43
阅读次数:
85
import nmap nm = nmap.PortScanner() nm.scan(hosts="192.168.1.1/24", arguments="-n -sP -PE") nm.all_hosts() import telnetlib tm = telnetlib.Telnet(host ...
分类:
编程语言 时间:
2020-04-14 10:41:56
阅读次数:
68
https://answers.microsoft.com/en-us/windows/forum/all/deleting-fonts-from-windows-10-that-dont-appear-in/29fa48b1-080a-4fa7-9fd2-e8c9690562e5 C:\Users ...
分类:
其他好文 时间:
2020-04-14 09:17:47
阅读次数:
125
// Copyright 2016 2020 The excelize Authors. All rights reserved. Use of // this source code is governed by a BSD style license that can be found in / ...
分类:
其他好文 时间:
2020-04-13 22:29:26
阅读次数:
98
1 4.6.1 分区表基本操作 2 1.引入分区表(需要根据日期对日志进行管理) 3 /user/hive/warehouse/log_partition/20170702/20170702.log 4 /user/hive/warehouse/log_partition/20170703/2017 ...
分类:
其他好文 时间:
2020-04-13 22:23:13
阅读次数:
56
#include <stdio.h> union data{ int n; char ch; short m; }; int main(){ union data a; printf("%d, %d\n", sizeof(a), sizeof(union data) ); a.n = 0x40; p ...
分类:
其他好文 时间:
2020-04-13 19:28:53
阅读次数:
65
禁用tcp6 跑docker的时候发现映射端口之后的端口竟然是tcp6,这是因为ipv6没有关闭而docker默认使用tcp6的原因,所以我要把tcp6关闭,关闭方法如下: 方法 1 编辑文件/etc/sysctl.conf, net.ipv6.conf.all.disable_ipv6 =1 ne ...
分类:
其他好文 时间:
2020-04-13 12:05:22
阅读次数:
156
1 安装stress yum install stress sysstat 2 模拟cpu运行 stress --cpu 1 --timeout 600 3 查看负载均衡 watch -d uptime 4 查询CPU占用情况 mpstat -P ALL 5 5 查询具体的cpu占用进程 发现是st ...
分类:
其他好文 时间:
2020-04-13 10:25:26
阅读次数:
164