在docker中创建images的语句记录:
#创建语句
mutou$ docker run -d --name=lamp -p 680:80 -p 63306:3306 -p 6443:443 -v /Users/mutou/hack/lamp/mysql_data:/mysql tutum/lamp
#进入images的语句:
mutou$ docker exec -it lamp /bin/bash
进行数据库的配置
mysql_secure_installation //初始化数据库
按下回城键你会看见结尾如下的对话。
Enter current password for root (enter for none):<–初次运行直接回车
Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车
New password: <– 设置root用户的密码
Re-enter new password: <– 再输入一次你设置的密码
Remove anonymous users? [Y/n] <– 是否删除匿名用户,回车
Disallow root login remotely? [Y/n] <–是否禁止root远程登录,回车
Remove test database and access to it? [Y/n] <– 是否删除test数据库,回车
Reload privilege tables now? [Y/n] <– 是否重新加载权限表,回车
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
初始化MariaDB完成,接下来测试登录
centos安装
docker run -it centos /bin/bash
安装git
https://www.cnblogs.com/liaojie970/p/6253404.html
网友评论