北京交通大学云平台实验虚拟机踩坑
Posted HL Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了北京交通大学云平台实验虚拟机踩坑相关的知识,希望对你有一定的参考价值。
本地软件
本配置过程使用到Windows软件即版本为:
-
Xshell 7
-
Xftp 7
-
Navicat Premium 15
所有配置过程需要本机连接校园网,或挂校园网VPN
安装完毕的环境:
虚拟机1:python3
虚拟机2:mysql5.7
配置网络环境
注意:
- 用xftp连接直接下载修改文件,或者网页连接,或者用vi(系统初始没有装vim)
联网
上述操作完成后,到实验虚拟机网页连接,需要输入校园网账号, 网站连接(10.10.43.3)
换源
/etc/apt/sources.list
# 阿里云源
deb http://mirrors.aliyun.com/ubuntu bionic main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-updates main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-backports main multiverse restricted universe
# 更新源
sudo apt update
sudo apt upgrade
安装python3
sudo apt install python3 # 安装python3
sudo apt install python3-pip # 装包使用pip
如果apt-get异常关闭,可能会被强制加锁,解决方法是查询进程,杀掉现在占用的进程
问题:E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
安装MySQL,并配置可以远程登录
虚拟机初始建立有root和clab两个用户,初始密码一致,root用户有最高权限。
# 安装mysql-server, 在该源下,apt获取版本为5.7
sudo apt install mysql-server
mysql #root用户免密
2003 - Can’t connect to MySQL
两步解决2003错误代码
-
注释bind_address,不然好像只是本地可登录
-
给root用户设置密码, 或新建用户,新建用户需要Grant语句赋权,修改plugin
成功远程连接
防火墙
# 查看防火墙状态
sudo ufw status
output: inactive
# 激活防火墙
sudo ufw enable
# 激活之后一定要开启22端口,否则之后再也连不上就
ufw allow 22
ufw allow 80
ufw allow 3306
# 以上是常用三个端口
以上是关于北京交通大学云平台实验虚拟机踩坑的主要内容,如果未能解决你的问题,请参考以下文章