By francis_hao    Apr 10,2017 在使用CentOS 7的时候,首次登陆会出现新建一个perl5文件夹的提示,删除该文件后,之后登陆还是会出现该提示并新建了perl5文件夹. 经过查找资料[参考1],找到不新建此文件夹的办法.只需要将/etc/profile.d/perl-homedir.sh文件中的PERL_HOMEDIR=1改为PERL_HOMEDIR=0即可. 原因是perl会默认为每个用户加载local::lib,如果你不需要则无需加载.而用户登陆时会执行/et…
之前部署Jenkins没有遇到过这个问题,百度也找不到相关内容,无奈用过google翻译了一下,显示内存不足,上到服务器查询df -h 发现use% 100% 由于日志等文件导致服务器磁盘空间满了,引发此问题.…
问题:使用docker启动容器时,报错如下 zh@debian:~/testPath$ docker-compose up redis Starting testpath_redis_1 ... done Attaching to testpath_redis_1 redis_1 | redis_1 | Welcome to the Bitnami redis container redis_1 | Subscribe to project updates by watching https:/…
启动hadoop时,报错“mkdir: cannot create directory ‘/soft/hadoop-2.7.3/logs’: Permission denied” 注:/soft/hadoop-2.7.3为hadoop的安装目录,具体目录因人而异 原因:/soft目录的用户权限为root,需要修改为centos用户权限 注:centos为本机的用户名,具体用户名因人而异 解决办法: 1.切换到root用户 su root 2.递归修改/soft目录的用户权限 chown -R c…
FAILED: Error in metadata: MetaException(message:Got exception: org.apache.hadoop.ipc.RemoteException org.apache.hadoop.hdfs.server.namenode.SafeModeException: Cannot create directory /user/hive/warehouse/page_view. Name node is in safe mode. 在安装hive…
Compress a Folder/Directory via Perl5 tested in Windows, Mac OS X, Ubuntu16.04 #!/usr/bin/perl #压缩指定目录 #nultiple folder use IO::Dir; use Archive::Tar; use v5.16; die "Give me some Folder\n" if ! @ARGV; &tar_bz2(@ARGV); sub tar_bz2 { my @hays…
往Linux系统中上传文件时候,我们经常会使用FTP连接Linux,也经常会使用mkdir命令来创建目录.最近发现用mkdir创建目录时提示550 Create directory operation failed(创建目录失败).需要改一个配置文件即可. [root@cc ~]# vi /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of t…
分析原因: 例如:java web项目 上传图片创建文件夹cd /data/apps/static-web/sjk/driver/attachment/编号/文件名称.jpg 在创建文件目录 /data/apps/static-web/sjk/driver/attachment报HTTP Status 500 - Unable to create directory 处理方式: cd /data/apps/static-web/sjk/driver/ chown -R nobody:nobody…
在cygwin下运行: ssh-keygen -C "634772208@qq.com" -t rsa 时,出现如下错误: cygwin Could not create directory '/home/Administrator/.ssh' 解决方案: In addition to answer by diannal, if you don't have a passwd file under etc folder in Cygwin root folder, then you c…
前言 最近深度学习Ultra-Fast-Lane-Detection/INSTALL.md at master · cfzd/Ultra-Fast-Lane-Detection (github.com)需要安装opencv c++,于是准备安装.于是按照OpenCV: Installation in Linux官网一顿操作,好像是成功了.但是在安装成功,进行软链接的时候 # First you need to install OpenCV C++. # After installation, m…