上一页 1 ··· 4 5 6 7 8
摘要: 1、vim install_docker.sh #!/bin/bash#discription : This script is install docker #wrter by mslinux function check_net_cf_repo () { DOMAIN_ADDRESS=mirro 阅读全文
posted @ 2020-09-08 09:45 宝英姐姐 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1、下载 rpm包 wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm2、 yum localinstall mysql57-community-release-el7-8.noarch.rpm 3、查看是 阅读全文
posted @ 2020-08-28 17:47 宝英姐姐 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1、查看密码 grep "password" /var/log/mysqld.log 2、进入数据库,输入密码 mysql -u root -p 密码为: (Qpe:Gjrr82y 3、设置简单密码为123456 set global validate_password_policy=0; set 阅读全文
posted @ 2020-08-28 17:39 宝英姐姐 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 安装Oracle 需要的软件 将链接放下面了 如找不到请联系或者评论我 链接:https://pan.baidu.com/s/10bknxq3hUo79l97T3kGsPg 提取码:e23h 安装部署oracle 安装前注意 1、剩余内存空间必须大于120MB 2、交换空间必须大于150MB 1配置 阅读全文
posted @ 2020-08-25 13:33 宝英姐姐 阅读(948) 评论(0) 推荐(0) 编辑
摘要: centos7 Gitlab搭建 1.安装依赖包 yum install -y curl policycoreutils-pythonopenssh-server 出现以下 证明成功 2.将SSH服务设置成开机自启动 systemctl enable sshd 3.启动SSH服务 systemctl 阅读全文
posted @ 2020-08-25 11:31 宝英姐姐 阅读(180) 评论(0) 推荐(0) 编辑
摘要: docker启动报错-WARNING: IPv4 forwarding is disabled. Networking will not work. 启动docker.sh时候出现以下错误 原因是因为linux内核转发的问题 编辑 /etc/sysctl.conf文件 vi /etc/sysctl. 阅读全文
posted @ 2020-08-25 10:03 宝英姐姐 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 系统安装后的初始化操作: 1.关闭ipv6: echo "alias net-pf-10 off" >> /etc/modprobe.confecho "alias ipv6 off" >> /etc/modprobe.confchkconfig ip6tables off 2.关闭selinux: 阅读全文
posted @ 2020-08-24 17:27 宝英姐姐 阅读(1920) 评论(2) 推荐(1) 编辑
摘要: 脚本如下 #!/bin/bashsoft=znxd-xxjyzt-master_bz.wardockername=znxd-xxjyzt-master_bz#######################################################docker run -d --n 阅读全文
posted @ 2020-08-24 17:26 宝英姐姐 阅读(390) 评论(1) 推荐(0) 编辑
摘要: 代码 如下 <html lang="en"><head> <meta charset="UTF-8"> <title>为我小宝贝写的迷宫小游戏</title><link rel="shortcut icon" type="image/x-icon" href="bitbug_favicon.ico" 阅读全文
posted @ 2020-08-24 16:44 宝英姐姐 阅读(393) 评论(1) 推荐(0) 编辑
摘要: import timefor i in range(0,101,2): time.sleep(0.2) num = i // 2 per = '\r %s %% : %s'%(i,'*'*num) print(per,end='',flush=True)模拟进度 突然想起他休假带我回家的某一天午休我 阅读全文
posted @ 2019-08-08 09:32 宝英姐姐 阅读(543) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8