网站首页 站内搜索

搜索结果

查询Tags标签: files,共有 470条记录
  • Windows安装jmeter

    一、安装java环境下载java11Download the Latest Java LTS Free 一路next即可,可根据个人爱好更换安装路径 配置环境变量系统变量JAVA_HOMEC:\Program Files\Java\jdk-11.0.13\Path%JAVA_HOME%\bin C:\Program Files\Common Files\Oracle\Java\javapathcmd测试java是否成…

    2022/6/24 5:22:19 人评论 次浏览
  • MySQL glibc 方式安装

    一 软件包介绍 mysql-5.7.31-linux-glibc2.12-x86_64.tar.gz 说明:通用linux下的二进制包,已编译好,只需放到相应的安装目录里即可 操作系统:centos7.6 - 依赖库安装 shell> yum install libaio 二 安装步骤 创建mysql用户 useradd -rs mysql /sbin/nologinid …

    2022/6/21 2:20:04 人评论 次浏览
  • python selenium 自动更新浏览器驱动文件

    说明实现原理是当使用的chromedriver.exe与当前Chrome浏览器版本不一致时会抛出异常, 在异常信息中会包含当前Chrome版本信息和Chrome浏览器安装地址信息,通过捕获异常信息, 正则匹配就可以过滤出Chrome版本号,然后再去官方动态下载对应版本的驱动并解压就可以了 前提…

    2022/6/17 1:22:57 人评论 次浏览
  • postgresql14安装时遇到的问题

    正常安装,一路点下一步, 最后弹出报错. 参考教程: https://www.cnblogs.com/ives/p/postgresql.html https://baijiahao.baidu.com/s?id=1727811450138750190&wfr=spider&for=pc 主要操作如下:切换到安装目录下的bin目录 管理员权限执行如下命令。initdb "…

    2022/6/16 2:21:20 人评论 次浏览
  • 【IDL】使用SPAWN启动路径中带有空格的文件

    直接利用SPAWN启动外部程序或文件时,如果路径中含有空格,则启动失败。如下边的例子,我们想打开D:\Temp\Program Files\test.txt文件,则会弹出错误提示,从错误提示可以看出,系统自动将空格后边的路径截断了: IDL> spawn, start D:\Temp\Program Files\test.txt …

    2022/6/14 23:20:47 人评论 次浏览
  • 【SQLServer】找出是哪个用户安装了SQLServer

    进入安装目录:C:\Profram Files\Microsoft SQL Server\110\Setup Bootstrap\Log\<Installation Date>可以看到打开文件,查找LogonUser

    2022/6/13 6:21:07 人评论 次浏览
  • ssis SQL Server Integration Services

    SQL Server Integration Services SQL Server Integration Services is a platform for building enterprise-level data integration and data transformations solutions. Use Integration Services to solve complex business problems by copying or downloading file…

    2022/6/11 2:21:19 人评论 次浏览
  • c++ 读取特定路径下文件夹及文件名的方法

    #include <vector> #include <fstream> #include <string> #include <sstream> #include <iostream> #include <io.h>/// <summary> /// 读取指定路径下所有文件名及子目录下文件名 /// </summary> /// <param name=&…

    2022/6/3 1:21:44 人评论 次浏览
  • Reclaim space after drop database or tables via deleting the generated binlog files

    1.sudo -i;2.cd /var/lib/mysql/;ls -lct; 3.Delete binlog filesrm -rf binlog.* 4.ls -lct; 5.Then check the space via df -h; As the above snapshot illustrates that /dev/sda5 has emptied more and spare more space.

    2022/5/27 23:22:38 人评论 次浏览
  • configure: error: cannot find MySQL header files under /usr/local/mysql/lib/

    64位centos7.4系统上编译PHP5.6.32报错: cd /usr/local/src/php-5.6.32./configure \ --prefix=/usr/local/php \ --with-apxs2=/usr/local/httpd/bin/apxs \ --with-config-file-path=/usr/local/php/etc \ --with-mysql=/usr/local/mysql/lib \ --with-libxml-dir \ --w…

    2022/5/27 2:21:52 人评论 次浏览
  • python2.7环境下APScheduler定时任务案例

    注意版本:依赖包下载地址: https://pypi.org/project/futures/#files

    2022/5/27 1:22:32 人评论 次浏览
  • 安装PG数据库后,PG Admin后出现解决the application server could not be contected

    首先按照网上的方法, 1.以管理员身份运行PG Admin 2. 找到C:\Users\你的用户名\AppData\Roaming\pgAdmin ,删除所有文件夹里面所有文件 3.在 C:\Program Files\PostgreSQL\10\pgAdmin 4\web 找到config_distro.py文件,然后把下列代码复制粘贴替换掉原来的: SERVER_MOD…

    2022/5/12 19:27:54 人评论 次浏览
  • PLSQL Developer 连接Linux 下Oracle的安装与配置

    转至: 一、下载 下载地址:http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html 这是Oracle Instant Client的下载首页,有很多种版本可供下载。 但要注意第三方工具如:PL/SQL Developer和Toad的版本,32位的要对应32位的OracleInst…

    2022/5/3 19:13:51 人评论 次浏览
  • 使用 jQuery 实现文件上传

    <!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width…

    2022/5/2 23:16:06 人评论 次浏览
  • Linux_pip3安装包超时:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='file

    pip3 install django 报错如下: Collecting django Downloading https://files.pythonhosted.org/packages/c3/68/b63abc009adee25c1bd266b3740e173eab656608cf21641594a37e02cf57/Django-3.2.13-py3-none-any.whl (7.9MB) 5% |?? | …

    2022/4/30 7:13:17 人评论 次浏览
扫一扫关注最新编程教程