摘要:
安装一些必要的系统工具: 添加软件源信息: 安装 Docker-ce: 启动 Docker 后台服务 阅读全文
摘要:
使用 usermod 命令 将现有的用户添加到多个次要组或附加组 # usermod -a -G GroupName UserName id 命令查看输出 # id UserName 用户添加到多个次要组中 # usermod -a -G GroupName,GroupName1 UserName 阅读全文
摘要:
aria2安装 安装 epel 源: yum install epel-release 然后直接安装: yum install aria2 -y 配置 Aria2 创建目录与配置文件 这一步需要切换到root下进行 $ su $ cd /etc/ && mkdir aria2 && cd aria2 阅读全文
摘要:
端口映射可使用-p、-P来实现: -p指定要映射的端口,一个指定端口上只可以绑定一个容器 -P将容器内部开放的网络端口随机映射到宿主机的一个端口上 端口映射支持的格式: ip:hostport:containerport #指定ip、指定宿主机port、指定容器port ip::containerp 阅读全文
摘要:
$ sudo docker run -d centos:last 8022826ebd567e2b1818e90ce33c3b68ea9aeac0286001154eb05fc2283e0238$ sudo docker exec -it 8022826ebd56 bash出现: Error response from daemon: Container 8022826ebd567e2b181... 阅读全文
摘要:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 解决: systemctl enable docker systemctl daemon-reload 阅读全文
摘要:
1. 查看Docker版本 $ docker version 它用于查看Docker的客户端和服务器版本。 2. 从Docker文件构建Docker映像 $ docker build -t image-name docker-file-location -t:它用于指定使用提供的名称来标记Docke 阅读全文
摘要:
下载源码包 --安装所需要的系统软件包 yum groupinstall -y "Development tools" yum install -y bison flex readline-devel zlib-devel 官网下载:https://www.postgresql.org/ftp/so 阅读全文
摘要:
安装U890,环境检测的时候,却提示数据库不符合要求, 解决方法: 通过修改SQLServer的版本号 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\CurrentVersion] "CurrentVersion"="1 阅读全文
摘要:
用友“设置备份计划”时提示“已经有用户使用【备份计划管理】,不能调整” USE UFSystem select * from ua_tasklog where cStation=‘登录的机器名‘ and cSub_Id=‘dp‘ DELETE from ua_tasklog where cStati 阅读全文