关键术语
Lsblk:list block 列出块设备
Mount:挂载
Umount:卸载
YUM:Yollowdoy Updater Modified
挂载相关命令
配置文件:/etc/fstab
/dev/mapper/openeuler-root / ext4 defaults 1 1
挂载设备 挂载点 文件类型 挂载选项 是否检查 是否备份
lsblk:列出块设备
sr0:光盘文件
mount 挂载设备 挂载点 挂载
umount 挂载点 卸载
mount挂载属于临时挂载,重启自动卸载
下载相关
yum源配置文件:/etc/yum.repo.d/
yum配置文件:/etc/yum.conf
gpgcheck=0 来源检测
yum源分为本地源(保存在光盘中)和线上源(保存在企业软件仓库的服务器中)
yum-config-manager :yum管理器
--add 增加yum源
yum
repolist -v 列出yum源的信息
list 列出软件安装状态(Available有可获得的软件、Installed已经安装的软件、error没有可获得的软件)
-y install 安装软件
-y remove 卸载软件
lamp搭建
L:linux A:Apache M:Mysql/Mariadb P:Php/python
B/S架构 B:Brower S:Server
C/S架构 C:Client
URL:统一资源定位器(网址)
1.安装httpd、mariadb、php-fpm、php-mysqlnd
可能会有冲突的软件,卸载即可
2.开启httpd mariadb php-fpm
3.关闭selinux、设置防火墙策略让web端口开启
firewall-cmd --zone=public --add-port=80/tcp --permanent
4.测试lamp
连接服务器
设置密码:mysqladmin -uroot password 'db@1234'
5.数据库加固
删除test、可能存在匿名用户、防止若密钥
mysql_secure_installation
标签:linux,配置文件,--,卸载,lamp,yum,挂载,软件 From: https://blog.csdn.net/m0_71332744/article/details/140169101