Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running 产生原因: 安装 docker 后没有启动 docker 解决方法1: su root # 先切换到root用户, 再执行以下命令 systemctl enable docker # 开机自动启动docker … ... continue reading centos joyo 2021/4/12 8
CentOS7 安装 NodeJS 安装 wget yum install -y wget 下载 nodejs ndoejs 官网:https://nodejs.org/en/download/ 选择 LTS 下载即可 wget… ... continue reading centos joyo 2021/4/6 8
Nextcloud 您的数据目录可被其他用户读取 请更改权限为 0770 以避免其他用户查看目录. 错误提示语 nextcloud 您的数据目录可被其他用户读取 请更改权限为 0770 以避免其他用户查看目录. 解决办法 config.php 添加 'check_data_directory_permissi… ... continue reading centos joyo 2021/3/19 174
Web 服务器 caddy 资料收集 caddy 介绍与特点 caddy 是一个像 Apache, nginx, 或 lighttpd 的web服务器。 你要问nginx已经很好了,为什么要用caddy呢? 我觉得caddy最大的特点是用起来简单, 然后呢,它还有下面这… ... continue reading centos joyo 2021/3/15 13
The unit caddy.service has entered the 'failed' state with result 'exit-code' 修改 service(vim /usr/lib/systemd/system/caddy.service) 服务配置文件,取消注释以下三行: CapabilityBoundingSet=CAP_NET_BIND_SERVICE … ... continue reading centos joyo 2021/3/15 26
Centos docker 安装和使用 卸载旧版本 sudo yum remove docker \ docker-client \ docker-client-latest \ … ... continue reading centos joyo 2020/9/11 56
Centos 查看端口是否被使用(netstat 和 lsof) [root@VM_2_29_centos ~]# netstat -anp | grep 9090 tcp 0 0 127.0.0.1:9090 0.0.0.0:* … ... continue reading centos joyo 2020/5/21 108
Redis 5.0.7: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that m 错误提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands … ... continue reading centos joyo 2019/12/13 159
Vim 修改文件出现错误 “E45: 'readonly' option is set (add!to override)” vim 修改文件出现错误 “E45: ‘readonly‘ option is set (add ! to override)”, 其实这是权限造成的,文件设置成了只读权限,只读文件修… ... continue reading centos joyo 2019/12/13 559
Mysql cannot connect(10038) 和 配置远程登录 笔记 设置密码 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('roo… ... continue reading centos joyo 2019/9/25 387