网站首页 站内搜索

搜索结果

查询Tags标签: 80,共有 316条记录
  • 报错“nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)”

    启动nginx出现: [root@WALKER sbin]# ./nginx nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already i…

    2022/4/26 7:12:45 人评论 次浏览
  • 基操--杀死widows端口占用进程

    杀死windows端口占用进程 1.打开cmd命令窗口.输入令,根据端口号查找对应的进程号 netstat -ano I findstr 80 (80是你要 查的端口号) 2.据进程号寻找进程名称 tasklist | findstr 9268 (9268是查找端口号后, 这个端口号生成的编号) 3.杀死进程. taskkill -PID 9268 -F

    2022/4/25 7:14:49 人评论 次浏览
  • docker容器的IPV6处理。

    https://forums.docker.com/t/solution-docker-ipv6-and-docker-compose-woes/97852 就我而言,我的 daemon.json 中有这个:{"ipv6": true,"fixed-cidr-v6": "fd00::/80" }和!!!需要自定义 iptables 规则。ip6tables -t nat -A POSTROU…

    2022/4/22 6:12:44 人评论 次浏览
  • 解决nginx+vue--502的问题

    当前的nginx配置如下:server {listen 80;server_name localhost;location / {root /usr/share/nginx/html;index index.html index.htm;}location @router{rewrite ^(.+)$ /index.html last;} }遇到的问题是,当访问 http://localhost:80的时候是可以的,但访问…

    2022/4/21 7:18:41 人评论 次浏览
  • yum安装Nginx并支持TCP代理

    安装命令 sudo yum install epel-release -y sudo yum install nginx nginx-mod-stream -y systemctl status nginx systemctl start nginx修改配置文件 vim "/etc/nginx/nginx.conf" 在http模块下添加 TCP方向代理 stream {upstream harbor-80 {server 172.1…

    2022/4/18 7:14:11 人评论 次浏览
  • 用c语言编程读取80*25分辨率的BMP图片中的文字图像以字符点阵的形式显示

    用c语言编程读取80*25分辨率的BMP图片中的文字图像以字符点阵的形式显示。 写这个程序之前得了解一下BMP位图文件的一些基础知识 前提知识: 一、24位BMP(bitmap)文件基本结构: 14字节文件头 + 40字节信息头 + 位图像素数据(一个像素3个字节:蓝色分量(1字节)、绿色分量(…

    2022/4/16 12:12:40 人评论 次浏览
  • JavaScript 中搜索数组的四种方法 作者:沐鸣代理

    介绍 沐鸣代理认为我们经常需要在JavaScript中处理存储在数组中的数据。有个常见的任务就是搜索数组以查找它是否包含满足特定搜索条件的单个(或多个)值。根据任务目标,你可能需要关注用于确认的布尔值、数组中值的位置索引或包含所有搜索结果的单独数组。 在ECMAScrip…

    2022/4/12 17:13:16 人评论 次浏览
  • 2022.3.21 21:56 洛谷P1055

    C: (80分) #include <stdio.h>int main() {char a[14] = {0};int b = 0, c = 1;//x - xxx - xxxxx - xfor (int i = 0; i < 13; i++){scanf("%c", &a[i]);if (a[i] != - && i < 12){b += (a[i] - 48) * c;c++;}}if ((b % 11) == (a[12]…

    2022/3/21 23:32:52 人评论 次浏览
  • linux 安装nginx

    转载于:博主文章 1.先安装gcc-c++编译器 yum install gcc-c++ yum install -y openssl openssl-devel 2.再安装pcre包 yum install -y pcre pcre-devel 3.再安装zlib包 yum install -y zlib zlib-devel 下面进行nginx的安装 1.在/usr/local/下创建文件nginx文件 mkdir /us…

    2022/3/8 7:15:51 人评论 次浏览
  • php-1

    做了一个简单的列表网页<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>张雨豪-数据表</title> </head> <body><table ><tr><td colspan="5" ali…

    2022/3/7 1:15:47 人评论 次浏览
  • 通过Nginx代理一台服务器 实现多个域名访问同一IP地址

    问题描述需要实现的是 多个域名访问同一服务器ip:80端口 默认http://域名.com是80端口 在项目中需要使用域名访问,不可能让人使用一串难输入的数字去访问你的网站解决方法这里就需要用到nginx代理服务 以下贴主要配置server{listen 80;server_name www.域名.com;index i…

    2022/3/6 7:16:59 人评论 次浏览
  • linux 查看端口是否被占用

    1、使用lsoflsof -i:端口号查看某个端口是否被占用lsof -i:802、使用netstatnetstat -anp|grep 80 3、netstat常用命令netstat -ntlp //查看当前所有tcp端口 netstat -ntulp |grep 80 //查看所有80端口使用情况 netstat -an | grep 3306 //查看所有3306端口使用情况…

    2022/3/4 7:19:48 人评论 次浏览
  • Rancher入门到精通-docker: Error response from daemon: manifest for rancher/rancher:2.5.12 not found: mani

    docker: Error response from daemon: manifest for rancher/rancher:2.5.12 not found: manifest unknown: manifest unknown.docker run -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher:2.5.12执行命令报错Docker Hub 登录hub 查询 rancherdocker ru…

    2022/3/3 6:17:46 人评论 次浏览
  • Codeforces #80 Div1 D 分块 题解

    题目:Problem - D - Codeforces 本题目思路以分块思想为框架,而具体实现却也卡了我很久,思路参见2014年国家队集训论文集中王悦同的《根号算法——不只是分块》。 太多技巧和方法需要掌握了,路漫漫其修远兮!1 #include<iostream>2 #include<algorithm>3 …

    2022/3/1 6:22:58 人评论 次浏览
  • Nginx做非80端口转发

    安装nginx https://www.cnblogs.com/JiHC/p/15936349.html 修改nginx配置文件whereis nginx vi /usr/local/nginx/conf/nginx.conf 我的配置upstream tomcat{server localhost:8080;}server {listen 80;server_name tomcat.fahaxiki.top;location / {proxy_pass h…

    2022/2/27 7:30:25 人评论 次浏览
扫一扫关注最新编程教程