準備工作 下載安裝vagrant https://releases.hashicorp.com/vagrant/2.3.4/vagrant_2.3.4_windows_amd64.msi 選擇自己需要的版本傻瓜式安裝 下載安裝vartualbox https://download.virtualbo ...
準備工作
- 下載安裝vagrant
https://releases.hashicorp.com/vagrant/2.3.4/vagrant_2.3.4_windows_amd64.msi
選擇自己需要的版本傻瓜式安裝 - 下載安裝vartualbox
https://download.virtualbox.org/virtualbox/6.1.42/VirtualBox-6.1.42-155177-Win.exe
選擇自己需要的版本傻瓜式安裝 - 下載centos對應的box
https://vagrantcloud.com/search
安裝
1.vagrant init 初始化生成Vagrantfile文件
修改生成的Vagrantfile文件
config.vm.box = "centos/7"
config.vm.network "public_network"
config.vm.provider "virtualbox" do |vb|
vb.memory = "3000"
vb.name= "yyb-centos7"
vb.cpus= 2
end
2. vagrant box add centos/7 D:/box/virtualbox.box 添加box
3. vagrant box list 查看本地box
4. vagrant up 啟動
5. vagrant status 查看
6. vagrant halt 停止
訪問centos
- vagrant ssh 進入centos
- 通過root賬號登錄
sudo -i 切換到root
ip a 查看IP信息
開啟root 賬號密碼登錄
vi /etc/ssh/sshd_config
PasswordAuthentication yes
passwd 123456 修改root賬號登錄密碼為123456
systemctl restart sshd 重啟sshd服務