在ubuntu中从DOCKER启用WEB服务
程序员文章站
2024-01-21 21:09:10
...
最近在EC2主机中启用了一个ubuntu20.4容器。试着把启动一个DOCKER服务的过程记录一下。
ubuntu初始root密码
安装完Ubuntu后忽然意识到没有设置root密码,不知道密码自然就无法进入根用户下。
到网上搜了一下,原来是这么回事:
Ubuntu的默认root密码是随机的,即每次开机都有一个新的root密码。
解决方法:
我们可以在终端输入命令“sudo passwd”,然后输入当前用户的密码后"Enter"。
终端会提示我们输入新的密码并确认,此时的密码就是root新密码。
修改成功后,输入命令 su root,再输入新的密码就ok了。
具体操作如下:
[email protected]:~$ sudo passwd
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
[email protected]:~$
[email protected]:~$ su -
Password:
[email protected]:~#
若输入exit命令,则从root退回到普通用户
原文链接:https://blog.csdn.net/frank_jb/article/details/50927088
安装DOCKER
https://gist.github.com/wdullaer/f1af16bd7e970389bad3
wget -O - https://gist.githubusercontent.com/wdullaer/f1af16bd7e970389bad3/raw/install.sh | bash or
wget -O - https://bit.ly/docker-install | bash (if you trust wdullaer and me ????)
安装V2
https://toutyrater.github.io/basic/vmess.html
sudo docker pull */*-core
sudo docker run -d --restart always --name * -v /etc/*:/etc/* -p 16823:16823 */*-core * -config=/etc/*/config.json
上一篇: C++ 全局变量
下一篇: 在vue store 中定义全局变量