上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: yum -y install ntpdate rm -f /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ntpdate pool.ntp.org date 阅读全文
posted @ 2020-01-03 10:41 Le1543 阅读(144) 评论(0) 推荐(0) 编辑
摘要: docker run --name t1 -it -p 80 --rm l/httpd:v1 (进去后开启httpd,其中-p80是要求转换这个端口,转换哪个需要inspect查看或者docker port 容器名)docker run --name t1 -it -p 81:80 --rm l/h 阅读全文
posted @ 2019-12-30 12:40 Le1543 阅读(129) 评论(0) 推荐(0) 编辑
摘要: docker image pull nginx:1.14-alpinedocker image pull busyboxdocker pull quay.io/coreos/flannel:v0.10.0-amd64docker image pull redis:4-alpinedocker run 阅读全文
posted @ 2019-12-26 15:09 Le1543 阅读(193) 评论(0) 推荐(0) 编辑
摘要: yum install -y --downloaddir=/root xxx 安装xxx同时把rpm安装到本地 yum localinstall -y xxx.rpm 安装rpm包同时把依赖关系的包也安装 1.使用YUM查找软件包 命令:yum search~ 2.列出所有可安装的软件包 命令:yu 阅读全文
posted @ 2019-12-25 14:38 Le1543 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 查看版本 https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/7/x86_64/stable/Packages/ 在https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/cento 阅读全文
posted @ 2019-12-25 13:41 Le1543 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 配置 rpm -ivh https://repo.zabbix.com/zabbix/4.2/rhel/7/x86_64/zabbix-release-4.2-2.el7.noarch.rpm 安装 yum install -y zabbix-agent 修改配置文件 vim /etc/zabbix 阅读全文
posted @ 2019-12-19 22:00 Le1543 阅读(532) 评论(0) 推荐(0) 编辑
摘要: centos7.5+mariadb 进入数据库 mysql -p 创建库 create database zabbix; 创建用户 create user 'zabbix'@'%' identified by 'zabbix'; 设置权限 grant all privileges on zabbix 阅读全文
posted @ 2019-12-19 15:12 Le1543 阅读(180) 评论(0) 推荐(0) 编辑
摘要: yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel lib 阅读全文
posted @ 2019-11-19 21:37 Le1543 阅读(136) 评论(0) 推荐(0) 编辑
摘要: pip安装 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py 阅读全文
posted @ 2019-11-19 21:29 Le1543 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 安装 yum install -y mariadb mariadb-server 开机启动服务 systemctl enable mariadb 启动服务 systemctl restart mariadb 初始化 mysql_secure_installation 第一次输入密码后 后面全部回车即 阅读全文
posted @ 2019-11-18 20:49 Le1543 阅读(83) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页