linux下常见错误记录

2021/6/3 7:23:28

本文主要是介绍linux下常见错误记录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.linux 安装 Redis 进到 utils 目录下执行 ./install_server.sh 时提示报错:

This systems seems to use systemd.
Please take a look at the provided example service unit files in this directory, and adapt and install them. Sorry!

解决方案:

  a) vi ./install_server.sh

  b) 注释如下代码

#bail if this system is managed by systemd
#_pid_1_exe="$(readlink -f /proc/1/exe)"
#if [ "${_pid_1_exe##*/}" = systemd ]
#then
#       echo "This systems seems to use systemd."
#       echo "Please take a look at the provided example service unit files in this directory, and adapt and install them. Sorry!"
#       exit 1
#fi

  c) 再次执行./install_server.sh

2. CentOS7:ifconfig command not found解决

解决方案:

  yum install net-tools -y



这篇关于linux下常见错误记录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程