学习共91篇
个人学习记录
openstack基础配置与安装-北梦の博客置顶

openstack基础配置与安装

准备工作 虚拟机/服务器两台 使用系统为CentOS7,部分过程有RedHat 前期预备 以下内容两台节点都需要操作 1.更换yum源 检查该源的指定软件包 [root@localhost ~]# yum list | grep net-tools ne...
北梦的头像-北梦の博客SVIP北梦3个月前
06171

Linux【yum源】一键换源(全)

中国教育网海外 bash <(curl -sSLk https://cdn.b52m.cn/static/linuxsource.sh) bash <(curl -sSLk https://cdn.b52m.cn/static/linuxsource.sh) --edu bash <(curl -sSLk https://cd...
北梦的头像-北梦の博客SVIP北梦4个月前
02291
Linux: LAMP/LNMP-北梦の博客

Linux: LAMP/LNMP

1.事前准备(安装 wget) yum -y install wget 2.下载源码一键安装包(约1.5G) 我的源官方直连 wget https://could.b52m.cn/d/Cloud_Drive/%E7%B3%BB%E7%BB%9F%E9%95%9C%E5%83%8F/lnmp/lnmp2.1...
北梦的头像-北梦の博客SVIP北梦1个月前
0391
Linux:DNS-北梦の博客

Linux:DNS

安装dns服务器 yum install -y bind 过程参考 [root@localhost ~]# yum install -y bind 正在更新 Subscription Management 软件仓库。 无法读取客户身份 This system is not registered with a...
北梦的头像-北梦の博客SVIP北梦3个月前
01701

Linux_云计算专业实训II朱雄军试卷_个人解题步骤

给一台rhel8主机基于nat方式手工配置网络参数并用远程登录软件登录主机 # 修改网卡配置文件 [root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens160 # 在文件中添加或修改以下内...
北梦的头像-北梦の博客SVIP北梦7个月前
0821

ENSP常用命令

一、华为设备命令视图 华为设备的常用命令视图 用户视图 <Huawei> 系统视图 <Huawei>system-view/sys [Huawei] 接口视图 <Huawei>system-view/sys [Huawei]interface/int Ethernet0/0/...
北梦的头像-北梦の博客SVIP北梦7个月前
0411

python_小作业_24.6.20

1.定义一个Box类,有width, height, depth三个属性,init()和get_Volume()(求体积)两个方法。其中init()方法用于获得初始化属性值,width, height, depth分别为5,6,7. (1)定义get_Volume()...
北梦的头像-北梦の博客SVIP北梦7个月前
0231

Python_模拟银行对接mysql_24.6.14

1.创建数据库和数据表 import pymysql CREATE_SCHEMA_SQL = 'CREATE SCHEMA bank' CREATE_TABLE_SQL = '''CREATE TABLE account( account_id varchar(20) not null, account_passwd char(6) not...
北梦的头像-北梦の博客SVIP北梦7个月前
0391

Python-pymysql删除

import pymysql zwy = pymysql.connect(host='localhost', user='root', password='123456789', db='world') cursor = zwy.cursor() zwy.commit() delete_sql = 'delete from student where sna...
珊瑚海的头像-北梦の博客珊瑚海7个月前
0121

Python-pymysql修改

import pymysql zwy = pymysql.connect(host='localhost', user='root', password='123456789', db='world') cursor = zwy.cursor() zwy.commit() update_sql = '''update student set sname = ...
珊瑚海的头像-北梦の博客珊瑚海7个月前
0111

Python-pymysql插入

import pymysql zwy = pymysql.connect(host='localhost', user='root', password='123456789', db='world') cursor = zwy.cursor() insert_many_sql = [('01', 'zwy', 'n'), ('02', 'yxj', 'n'...
珊瑚海的头像-北梦の博客珊瑚海7个月前
051

Python-pymysql建表

import pymysql zwy = pymysql.connect(host='localhost', user='root', password='123456789', db='world') cursor = zwy.cursor() create_sql = '''create table student ( sid char(10), sna...
珊瑚海的头像-北梦の博客珊瑚海7个月前
0101