码迷,mamicode.com
首页 >  
搜索关键字:log_file    ( 603个结果
Excel RCE on macOS
背景 该漏洞最初由Pieter Ceelen发现。如果安装时启用 ,可实现悄无声息执行命令。 查看打开文件的默认程序,可以看到 文件默认用Excel打开 POC,打开计算器测试 反弹shell测试 总结 默认配置的Excel一般会有宏的提示,对于安全意识不高的群体仍然存在一定的风险。 参考 http ...
分类:系统相关   时间:2019-11-18 18:42:22    阅读次数:112
mysql日志:redo log、binlog、undo log 区别与作用
一、redo log 重做日志 作用:确保事务的持久性。防止在发生故障的时间点,尚有脏页未写入磁盘,在重启mysql服务的时候,根据redo log进行重做,从而达到事务的持久性这一特性。 内容:物理格式的日志,记录的是物理数据页面的修改的信息,其redo log是顺序写入redo log file ...
分类:数据库   时间:2019-11-18 16:51:14    阅读次数:120
MySQL同步故障:" Slave_SQL_Running:No" 两种解决办法
进入slave服务器,运行: mysql> show slave status\G ....... Relay_Log_File: localhost-relay-bin.000535 Relay_Log_Pos: 21795072 Relay_Master_Log_File: localhost- ...
分类:数据库   时间:2019-11-18 13:04:29    阅读次数:85
ClusterId read in ZooKeeper is null 处理
ClusterId read in ZooKeeper is null. Re-running the program after fixing issue 1 will result in the following error in the log file (Oddly logged at I ...
分类:其他好文   时间:2019-11-17 01:14:39    阅读次数:143
关键词提取、TF-IDF
TF-IDF TF-IDF统计的是词库所有词的出现频率与在文件级出现频率的倒数的对数乘积。 TF:即词语出现的频率。 IDF:记每个词出现的文件数为 file_i,总文件数为file_num,IDF[I] = log(file_num/(1+file_i)) TF-IDF = TF * IDF 1 ...
分类:其他好文   时间:2019-11-15 14:00:32    阅读次数:56
sql慢查询工具(配置代码)
# 在mysql的配置文件/etc/mysql/mysql.conf.d/mysqld.cnf[mysqld]中配置懒查询 slow_query_log = ON # 是否已经开启慢查询 long_query_time = 1 # 慢查询统计标准, 超过1秒 slow_query_log_file ...
分类:数据库   时间:2019-11-14 00:00:16    阅读次数:118
Oracle报错
1.报错:ORA-01516: nonexistent log file, data file, or temporary file "o1_mf_tms5_tab_twindexes.dbf"解决方法1,先关闭数据库SQL> shutdown immediate 报错SQL> shutdown a ...
分类:数据库   时间:2019-11-08 10:54:35    阅读次数:137
oracle学习篇:六、重做(Redo)
重做(Redo)和撤销(Undo)是oracle的重要特性,用以保证事务的可恢复性和可撤销性。 6.1 Redo的作用 在数据库中,Redo的功能主要通过3个组件来实现:Redo Log Buffer、LGWR后台进程和Redo Log File(在归档模式下,Redo Log File最终会写出为 ...
分类:数据库   时间:2019-11-04 11:58:38    阅读次数:86
MySQL慢查询—开启慢查询
一、简介 开启慢查询日志,可以让MySQL记录下查询超过指定时间的语句,通过定位分析性能的瓶颈,才能更好的优化数据库系统的性能。 二、参数说明 slow_query_log 慢查询开启状态slow_query_log_file 慢查询日志存放的位置(这个目录需要MySQL的运行帐号的可写权限,一般设 ...
分类:数据库   时间:2019-11-03 11:13:08    阅读次数:121
Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
mysql> show slave status \G Slave_IO_Running: No Slave_SQL_Running: Yes Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 1236 Last_IO_Error: Got fatal ...
分类:其他好文   时间:2019-10-30 18:22:46    阅读次数:391
603条   上一页 1 ... 4 5 6 7 8 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!