
Linux
文章平均质量分 79
Ray Chan
这个作者很懒,什么都没留下…
展开
-
Linux上传下载百度网盘文件
百度云盘连接授权1、安装pipyum install python-pip2、安装bypypip install bypy3、安装resuest (如果需要,python3以上版本不需要)pip install requests4、执行命令bypy info5、 复制显示的网址到浏览器,浏览器会反馈给授权码,将授权码复制到Linux当前位置,回车后等待授权完成。基本操作指令1、显示百度云上通过bypy文件夹下的所有文件bypy lis..原创 2020-11-16 16:18:25 · 2015 阅读 · 0 评论 -
python pip安装库下载过慢和下载超时(Windows和Linux)
Windows配置方法方法一此方法为临时使用其他代理源安装python库,以安装python库requests库使用清华国内源为例:pip install requests -i https://pypi.tuna.tsinghua.edu.cn/simple常用的国内源如下:清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https:原创 2020-11-16 11:48:28 · 423 阅读 · 0 评论 -
服务器安装neo4j,访问时出现某某地址拒绝了你的请求
# 修改54行,去掉改行的#,可以远程通过ip访问neo4j数据库dbms.connectors.default_listen_address=0.0.0.0原创 2020-11-06 15:48:18 · 1369 阅读 · 0 评论 -
Linux安装neo4j时报Address x.x.x.x:xxxx is already in use, cannot bind to it.错误
问题描述在服务器安装neo4j时,出现以下错误:2020-11-06 07:17:40.981+0000 ERROR Failed to start Neo4j: Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@7e2f86e6' was successfully initialized, but failed to start. Please see the attache原创 2020-11-06 15:38:18 · 934 阅读 · 0 评论 -
/etc/profile配置文件内容注释说明(shell脚本)
该配置文件是红帽7版本的,对于不同的版本主要内容都是相同的。# /etc/profile# System wide environment and startup programs, for login setup# Functions and aliases go in /etc/bashrc# It's NOT a good idea to change this file unless yo...原创 2018-05-14 23:14:45 · 15355 阅读 · 0 评论