摘要: LNMP环境搭建wordpress 安装mysql # cd /tmp/# wget -i https://dev.mysql.com/mysql57-community-release-el7-10.noarch.rpm# yum -y install mysql57-community-rele 阅读全文
posted @ 2021-03-09 00:11 破碎的屋檐 阅读(64) 评论(0) 推荐(0) 编辑
摘要: PHP # cd /etc/yum.repos.d/ # yum -y install epel-release # yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm # yum -y install php7 阅读全文
posted @ 2021-03-09 00:10 破碎的屋檐 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Mysql安装yum 1.安装及修改初始密码 # cd /etc/yum.repos.d/ # yum install -y epel-release ​ # yum -y install wget # wget https://repo.mysql.com/mysql57-community-re 阅读全文
posted @ 2021-03-09 00:09 破碎的屋檐 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Nginx安装yum 一: # setenforce 0 # systemctl stop firewalld //尽量使用国内源 # yum install -y epel-release # cd /etc/yum.repos.d/ # yum install -y nginx # killal 阅读全文
posted @ 2021-03-09 00:04 破碎的屋檐 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Apache(yum) Apache和Nginx对比 Nginx相对于Apache: 高并发响应性能非常好(单台万级并发连接30000-50000/s(简单静态页)) 反向代理性能非常好(可用于负载均衡) 内存和CPU占用率低(为Apache的1/5-1/10) 功能较Apache少(常用功能均有) 阅读全文
posted @ 2021-03-09 00:02 破碎的屋檐 阅读(333) 评论(0) 推荐(0) 编辑
摘要: jumpserver环境配置及下载 1.环境配置 # setenforce 0 # systemctl stop firewalld ​ //修改字符集 # localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8 # export LC_ALL=zh_CN.UTF-8 阅读全文
posted @ 2021-03-08 23:57 破碎的屋檐 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 无标题 cat /etc/redhat-release scp -r root@10.10.10.10:/opt/soft/mongodb /opt/soft/ # arping IP # ping -c 1000 -i 0.01 www.baidu.com //判断丢包率 # cd - 回上一级 阅读全文
posted @ 2021-03-08 23:50 破碎的屋檐 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1.vsftpd安装配置 1.1环境需求 服务器系统:CentOS7,vsftpd 客户端:win10,xftp客户端或浏览器 关防火墙、selinux 1.2安装epel源 # curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.al 阅读全文
posted @ 2021-03-06 23:16 破碎的屋檐 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 常见的日志文件(系统、进程、应用程序) /var/log/messages 记录Linux操作系统常见的系统和服务错误信息/var/log/boot.log 记录了系统在引导过程中发生的事件,就是Linux系统开关自检过程显示的信息​/var/log/lastlog 记录最后一次用户成功登录的事件, 阅读全文
posted @ 2021-03-05 23:30 破碎的屋檐 阅读(88) 评论(0) 推荐(0) 编辑
摘要: PXE服务器实现linux安装自动部署 实验环境准备: 1、Centos7:192.168.6.233 2、若干台预安装的Centos虚拟机 Centos7 pxe准备: 1、关闭防火墙 2、关闭selinux 3、配置yum源 实验步骤: 1、安装dhcp、tftp、http、syslinux y 阅读全文
posted @ 2021-03-04 17:08 破碎的屋檐 阅读(225) 评论(0) 推荐(0) 编辑