MySQL5.7.28 二进制安装
- 基于Centos7.6
1.清理MariaBD环境(MariaDB与MySQL可能会有冲突)
rpm -qa |grep mariadb
1.路径规划与创建
数据文件存储位置 /data/mysql/data
日志文件存储位置 /data/logs/mysql
binlog文件存储位置 /data/mysql
缓存目录位置 /dta/tmp
1.创建docker macvlan虚拟网卡
假设宿主机网段为192.168.3.x网段,基础镜像为ubuntu20.04。
1.在虚拟机配置中添加网卡
2.系统中配置IP
1 | root@ubuntu20041-server:~# ip a |
1. Python是一门解释型语言?
我初学Python时,听到的关于Python的第一句话就是,Python是一门解释性语言,我就这样一直相信下去,直到发现了*.pyc文件的存在。如果是解释型语言,那么生成的*.pyc文件是什么呢?c应该是compiled的缩写才对啊!
python解释器在加载 .py 文件中的代码时,会对内容进行编码(默认ascill)
ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言,其最多只能用 8 位来表示(一个字节),即:2**8 = 256-1,所以,ASCII码最多只能表示 255 个符号。
Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. It is helpful to think of variables as containers that hold information. Their sole purpose is to label and store data in memory. This data can then be used throughout your program.
1.安装python解释器
1 | https://www.python.org/ 选择适合的操作系统版本下载安装即可 |
1 | SQL> select instance_name,status,database_status from v$instance; |