liunx
文章平均质量分 60
廖振飞 ——3
这个作者很懒,什么都没留下…
展开
-
nginx负载均衡
安装nginx 启动nginx ./nginx vim /usr/local/nginx/conf/nginx.conf upstream web-server{ ip_hash; server 192.168.134.133; server 192.168.134.134; server { listen 80; server_name localhost; location /{ proxy_pass http://web-server; root html; index index.html原创 2022-05-22 21:44:07 · 251 阅读 · 0 评论 -
centos 7安装zabbix4
升级系统组件到最新的版本 1 yum-y update 2 关闭selinux vi/etc/selinux/config 把SELINUX=enforcing改为SELINUX=disabled 设置后需要重启才能生效 setenforce 0 #临时关闭命令 getenforce #检测selinux是否关闭,Disabled 为关闭 firewall-cmd--state systemctl...原创 2022-05-09 11:10:51 · 165 阅读 · 0 评论 -
liunx配置虚拟主机
第一步:创建发布目录和发布文件。 mkdir -p /www/{web/,blog/} [root@localhost www]# echo "welcome to xfalge's web-server">>web/index.html [root@localhost www]# echo "welcome to xfalge's blog-server">>blog/index.html 第二步:修改主配置文件: cd /usr/local/nginx/conf/ vim n.原创 2022-05-09 10:52:19 · 107 阅读 · 0 评论 -
liunx centos7 搭建wordpress 网站
1:安装apache yum install httpd -y 开启服务 systemctl start httpd.service 重启服务 systemctl restart httpd.service 设置开机启动 systemctl enable httpd.service 开启80端口 firewall-cmd --add-service=http --permanent firewall-cmd --add-service=https --permanent firewall.原创 2022-05-09 10:38:28 · 177 阅读 · 0 评论 -
liunx论坛安装
先安装apache和mysql,在安装php,安装完后安装论坛 1;下载安装包 wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_UTF8.zip 2、解压 Discuz! X3.2软件包 unzip Discuz_X3.2_SC_UTF8.zip 3、解压缩得到如下三个文件: upload 这个目录下面的所有文件是我们需要上传到服务器上的可用程序文件; readme 目录为产品介绍、授权、安装、升级、转换以及版本更新日志说明;原创 2022-04-25 10:34:31 · 114 阅读 · 0 评论