上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页
摘要: 访问ftp服务器失败,提示:ftp: connect: No route to host 一般这种情况,直接关闭192.168.59.103的防火墙,测试可以连接 #systemctl stop firewalld 说明是防火墙的问题 开启192.168.59.103防火墙,添加端口21的策略 #f 阅读全文
posted @ 2022-05-07 10:29 leihongnu 阅读(1127) 评论(0) 推荐(0) 编辑
摘要: 连接ftp失败,提示:500 OOPS: could not read chroot() list file:/etc/vsftpd/chroot_list 检查配置配置文件: #vim /etc/vsftpd/vsftpd.conf 文件为:/etc/vsftpd/chroot_list 到/et 阅读全文
posted @ 2022-05-07 09:46 leihongnu 阅读(916) 评论(0) 推荐(0) 编辑
摘要: 登录mysql 密码报错 1、修改/etc/my.cnf 添加下面的信息 skip-grant-tables 2、重启mysql 3、登录mysql 不需要输入密码, 修改root >ALTER user 'root'@'localhost' IDENTIFIED BY 'Aa123456'; 上句 阅读全文
posted @ 2022-05-06 11:27 leihongnu 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 启动容器是没有设置映射的端口号 1、停止正在运行的容器和docker 服务 #docker stop centos-mysql #systemctl stop docker (一定要停止,光停止容器无效) 2、查看容器的id #docker ps -a --no-trunc 3、进入容器目录 #do 阅读全文
posted @ 2022-05-06 10:12 leihongnu 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: docker中登录mysql报错: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) mysql服务没有启动 阅读全文
posted @ 2022-05-06 08:57 leihongnu 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1、制作mysql容器 https://www.cnblogs.com/leihongnu/p/16224988.html 2、将容器制作成镜像 #docker commit centos-mysql centos-mysql.v1 3、下载制作好的镜像 #docker save -o centos 阅读全文
posted @ 2022-05-05 17:17 leihongnu 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1、下载一个centos 2、启动centos-mysql容器 遇到问题: 容器中缺少文件:libaio.so.1、libnuma.so.1、libtinfo.so.5 在宿主机上找到文件,上传到容器中 #docker cp libtinfo.so.5 centos-mysql:/lib64/ 为了 阅读全文
posted @ 2022-05-05 16:20 leihongnu 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: yapi需要mongodb支撑 目前,CentOS 仅发行版本中的内核支持 Docker。Docker 运行在 CentOS 7 上,要求系统为64位、系统内核版本为 3.10 以上。Docker 运行在 CentOS-6.5 或更高的版本的 CentOS 上,要求系统为64位、系统内核版本为 2. 阅读全文
posted @ 2022-05-05 15:00 leihongnu 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 情况:限制用户admin访问网站 1、不分内网外的情况 修改nginx.cong,在admin用户下添加要限制的ip192.168.1.33(只允许admin在192.168.1.33的ip地址下访问) location /admin { allow 192.168.1.33; deny all; 阅读全文
posted @ 2022-05-05 09:52 leihongnu 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: 此警告的问题是受限于Linux的最大文件数限制 nginx.conf有设置文件数:10000 1、 修改/etc/security/limits.conf文件 添加下面信息 * soft noproc 65535 * hard noproc 65535 * soft nofile 65535 * h 阅读全文
posted @ 2022-04-29 10:34 leihongnu 阅读(790) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 30 下一页