SQL Server安装报错 错误代码 0x84C90001 SQL Server 安装程序遇到以下错误:将设置 SQLCOLLATION 保存到配置文件 C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20210726_151451\ConfigurationFile.ini 时出错。错误代码 0x84C90001。解决办法:右键使用管理员权限打开setup.exe安装运行程序...
Could not find a version that satisfies the requirement django-haystack django 3.2.4安装django-haystack 3.0出现报错解决办法:pip3 install setuptools-scmpip3 install django-haystack
Oracle literal does not match format string 使用UiPath 操作Oracle的时候,插入数据出现报错:literal does not match format string原因是插入的日期为字符串格式,转换为日期格式就好了to_date('2021-07-08 14:49:04' , 'yyyy-mm-dd hh24:mi:ss')
解决Windows Server服务器,远程桌面断开连接后,自动化程序运行失败的问题 创建python文件CloseRDP.py:# -*- coding: GBK -*-import osqs = os.popen("query session")s = qs.read()print(s)FindResult = s.find('>rdp-tcp#')print(FindResult)if FindResult == -1: print('RDP远程桌面连接未发现')else: CommandString = "tscon " + s[s
Linux上使用pip 安装mysqlclient 时遇到报错 mysql_config not found 前言Linux上使用pip 安装mysqlclient 时遇到报错 mysql_config not found主要原因是缺少依赖包:mysql-devel遇到问题使用pip 安装 mysqlclientpip3 install mysqlclient出现报错/bin/sh: 1: mysql_config: not foundTraceback (most recent call last): File "<string>", line 1, in <module&
django+uwsgi+nginx,静态文件加载不出来 在setting.py中配置:STATIC_ROOT = '/usr/xx/mysite/static'/usr/xx/mysite为项目目录,mysite为项目名,在项目目录下创建static文件夹nginx默认配置文件目录"/etc/nginx/sites-enabled/default"upstream django { server 127.0.0.1:8001;}server { listen 80 default_server; listen [::]:80 default_
关闭“Chromium 未正确关闭”提示 平时使用,意外关闭Chrome浏览器后再次打开会有此提示,手动关闭就好了。但是自动化流程遇到后,可能会造成一些麻烦,需要关闭此提示框。在Chrome浏览器安装目录下找到Preferences文件:一般在:C:\Users\你的用户名\AppData\Local\Chromium\User Data\Default\这个目录下面。打开Preferences文件,查找到:“exit_type”:“crash”改为:“exit_type”:“Normal”保存并关闭。右键 Pref
自动化遇到chrome提示您的连接不是私密连接 自动化过程中因抓包、证书、未加密等原因导致谷歌浏览器提示遇到这个提示,自动化做起来会绕弯子,所以直接在此页面上用键盘敲thisisunsafe(不是在输入框,直接在页面上硬输就行),以后就不会提示啦。...
uipath 包含有效空格,但不能对成员{http://schemas.microsoft.com/netfx/2009/xaml/activities}写入xml:space = preserver 解决办法:使用文本文档打开该文件,将其标注值的出错位置的多余空格删除。双空格改为单空格。
hadoop:ssh免密登录 一、安装SSH:sudo apt install ssh二、生成公钥和私钥:hadoop@master:/$ ssh-keygen -t rsa -P ""Generating public/private rsa key pair.Enter file in which to save the key (/home/slave1/.ssh/id_rsa): Created directory '/home/slave1/.ssh'.Your identification has been
hadoop:Permanently added ‘ubuntu‘ (ECDSA) to the list of known hosts sudo vim etc/ssh/ssh_config# StrictHostKeyChecking ask 去掉注释,并改为noStrictHostKeyChecking no
hadoop:ssh: connect to host localhost port 22: Connection refused 安装ssh:sudo apt-get install openssh-server启动ssh:service ssh start
启动hadoop:JAVA_HOME is not set and could not be found. 检查java配置:java -version检查java环境变量配置:export检查hadoop/etc/hadoop/hadoop-env.sh中JAVA_HOME配置:找到export JAVA_HOME=进行添加你的java路径,如下:export JAVA_HOME=/usr/local/java
but there is no HDFS_NAMENODE_USER defined 报错:Starting namenodes on [ubuntu]ERROR: Attempting to operate on hdfs namenode as rootERROR: but there is no HDFS_NAMENODE_USER defined. Aborting operation.Starting datanodesERROR: Attempting to operate on hdfs datanode as rootERROR: but there is no
WARNING: HADOOP_SECURE_DN_USER has been replaced by HDFS_DATANODE_SECURE_USER. 根据提示:将hadoop/sbin/路径下start-dfs.sh ,stop-dfs.sh两个文件中的:HADOOP_SECURE_DN_USER=hdfs替换为:HDFS_DATANODE_SECURE_USER=hdfs
superset创建管理员账号遇到的问题 问题一:输入flask fab create-admin时,错误:Error: No such command "fab"如果你用了Virtualenv,那检查你当前是否在虚拟环境下执行。问题二:输入flask fab create-admin时,错误:Could not import "superset.superset"进入python3.8/site-packages/superset/bin目录下执行:python superset fab create-admin问题三:输入p
virtualenv: error: unrecognized arguments: --no-site-packages 如果你加了参数: --no-site-packages才出现的这个错误,那可以去掉了。因为virtualenv早就默认这个参数了
解决pip3 install waring ‘The script xxx is installed in ‘/home/xxx/bin‘ which is not on PATH‘ 前提:执行pip3 install virtualenv出现WARNING错误,如下:WARNING: The script virtualenv is installed in ‘/home/local/bin’ which is not on PATH.Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.解决办法:ec