centos端口 防火墙centos6

springboot不使用端口的方式启动

SpringBoot项目不占用端口启动 现在很多互联网公司或者项目,都使用SpringBoot + SpringCloud,以微服务的形式来提供后台服务。而且既然是微服务,所涉及到的项目就会很多,服务器端口资源就会相当紧张。而且,其实有些项目,如定时任务等,是不需要对外提供服务,也就不需要占用服务器 ......
端口 springboot 方式

Centos7 安装 postgresql-11

参考:https://blog.csdn.net/weixin_46732884/article/details/124050982 参考:https://www.fengnayun.com/news/content/293898.html 1、添加PostgreSQL Yum存储库 yum ins ......
postgresql Centos7 Centos 11

Linux Centos 8.x系统更新修改系统日期时间

# 一、更新修改日期和时间,注意日期时间需要引号 ``` date -s 'yyyy-MM-dd HH:mm:ss' ``` # 二、只更新修改日期(年月日),时间默认是 00:00:00 ``` date -s 2022-11-15 ``` # 三、只更新修改时间(时分秒) ``` date -s ......
系统 日期 时间 Centos Linux

centos7桌面版静态路由设置

1.打开ip设置面板 2.将动态地址改为手动设置 3.在address中分别设置ip地址,子网掩码,网关路由 ......
路由 静态 桌面 centos7 centos

centos下安装docker

1、centos下安装 yum update yum install docker 2、问题 ``` "could not change group /var/run/docker.sock to docker: group docker not found": ``` ``` sudo group ......
centos docker

大疆无人机红外图片提取sdk在centos下使用

大疆无人机红外图片提取sdk再centos下使用无法编译使用,解决办法有两种 (1)使用ubuntu docker镜像,导出导入到centos. (2)先再ubuntu下编译生成可执行文件,然后使用patchelf,并结合glibc all in one 开源插件使用。 ``` $ patchelf ......
无人机 红外 centos 图片 sdk

Linux防火墙firewalld&iptables(2)iptables开放指定端口开放指定端口

# 一、CentOs6 iptables基本操作 ```bash # chkconfig --list | grep iptables 查看防火墙的服务 # chkconfig iptables off 永久关闭防火墙 #chkconfig iptables on 永久开启防火墙 # service ......
端口 iptables 防火墙 firewalld Linux

Rinetd——端口转发工具

前言 iptables 的功能当然强大,但理解与设置却有点抽象,便通过google认识了rinetd。 简介 Rinetd是为在一个Unix和Linux操作系统中为重定向传输控制协议(TCP)连接的一个工具。Rinetd是单一过程的服务器,它处理任何数量的连接到在配置文件etc/rinetd中指定的 ......
端口 工具 Rinetd

CentOS 查询端口占用情况

使用 netstat命令: shellCopy code netstat -tuln | grep <端口号> 将 <端口号> 替换为你要查询的端口号。例如,如果你要查询端口80的占用情况,可以输入: shellCopy code netstat -tuln | grep 80 上述命令将列出所有占 ......
端口 情况 CentOS

怎么在 CentOS7 中用高版本 GCC

以前是自己编译想要的 gcc 版本。从源码安装的好处是可以使用自己想用的 gcc 版本,缺点就是麻烦。 在编译 greenplum 时,发现有个通用处理方法来使用更高版本 GCC. [原文链接](https://www.softwarecollections.org/en/scls/rhscl/de ......
中用 CentOS7 版本 CentOS GCC

Linux:防火墙iptables与firewalld的启停

Linux关闭防火墙firewall和iptables命令_永久关闭iptables防火墙_红烧柯基的博客-CSDN博客 Linux防火墙——iptables以及firewalld的使用介绍_树下一少年的博客-CSDN博客 干货!Linux 防火墙配置 ( iptables 和 firewalld ......
防火墙 firewalld iptables Linux

centOS 7安装mysql5.7

前言:查看linux是32位还是64位 方法1:getconf LONG_BIT 查看 如下例子所示: 32位Linux系统显示32, 64位Linux系统显示64。最简单、快捷的方法。 方法2:uname命令查看 如下例子所示,x86_64表示64位系统, i686 i386表示32位系统。i68 ......
centOS mysql5 mysql

[转]virtualbox centos无法上网问题

原文地址 https://www.cnblogs.com/Joke-Jay/p/8215295.html virualbox里面设置nat模式 修改centos里面文件: vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 文件 ONBOOT=no改为ONB ......
virtualbox centos 问题

如何查看容器端口到宿主机端口的映射关系?

使用docker port命令进行查看 # 查看容器的ID[root@nccztsjb-node-27 ~]# docker ps | grep nginx 78e7140c0b8c goharbor/nginx-photon:v2.6.1 "nginx -g 'daemon of…" 2 mont ......
端口 宿主机 宿主 容器

linux(centos版本)下docker部署.netcore项目

准备: 1.要在Linux系统上使用Docker部署系统,你需要安装Docker引擎以及一些其他相关的软件。以下是安装步骤:安装Docker引擎: 对于Ubuntu系统,可以使用以下命令安装Docker: sudo apt-get update sudo apt-get install docker ......
netcore 版本 项目 centos docker

centos generate uuid,install libuuid-devel,compile -luuid

//install libuuid-devel sudo yum install libuuid libuuid-devel #include <iostream> #include <stdio.h> #include <uuid/uuid.h> char * get_uuid() { uuid_ ......

centos下安装docker

``` # 1. 更新yum yum update # 2. yum安装docker的依赖包 yum install -y yum-utils device-mapper-persistent-data lvm2 # 3. 配置yum源 yum-config-manager --add-repo h ......
centos docker

CentOS 7 安装 Jenkins

准备工作 首选需要安装JAVA环境 https://www.cnblogs.com/cuiyuxi/p/16174178.html 如果你的系统没有自带git,那么也需要安装一个 yum install git 安装: 第一种方法 sudo wget -O /etc/yum.repos.d/jenk ......
Jenkins CentOS

[转]端口转发

原文: https://blog.csdn.net/cw_hello1/article/details/105968359 1.在window中,进行端口转发时,使用portproxy模式下进行配置。必须使用管理员身份运行下面的命令。 2.创建一个端口转发: netsh interface port ......
端口

centos7安装后无法启动

1、Centos7开机无法正常启动? 2、centos7虚拟机进不去一直ok 3、服务器centos7开机卡住 Centos7开机无法正常启动? kernel panic 该主机硬件不兼容该系统 请更换其他版本系统尝试安装 。CentOS是免费的、开源的、可以重新分发的开源操作系统,CentOS(C ......
centos7 centos

CentOS8安装Docker报错问题解决

## 问题描述 CentOS版本:8.5.2111。 ```shell # cat /etc/redhat-release CentOS Linux release 8.5.2111 ``` 安装准备: ```shell # 安装所需软件包 sudo yum install -y yum-utils ......
CentOS8 CentOS Docker 问题

使用 VirtualBox+Vagrant 创建 CentOS7 虚拟机

## 一、准备工作 ### 1.1 软件下载 1. VirtualBox:[Downloads – Oracle VM VirtualBox](https://www.virtualbox.org/wiki/Downloads) ![image-20230805132135907](https:// ......
VirtualBox Vagrant CentOS7 CentOS

CentOS安装podman-compose

# 1. 安装python3的依赖 ``` yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libp ......
podman-compose compose CentOS podman

虚拟机 中 centos8 ens33 无ip地址 解决

![提示](https://img2023.cnblogs.com/blog/1773460/202308/1773460-20230805205357380-1501836983.png) 执行以下命令 ```shell # 查看托管状态 nmcli n # 显示 disabled 则为本文遇到的 ......
centos8 地址 centos ens 33

centos7.9 部署mongodb-4.4.18 分片集群

### 准备基本环境 名称|ip地址|cpu|内存|es监听端口 --|:--:|:--|:--|:-- redis-651|10.0.2.1|8c|64G|9200 redis-652|10.0.2.2|8c|64G|9200 redis-653|10.0.2.3|8c|64G|9200 ......
集群 centos7 mongodb centos 18

CentOS7 systemctl 管理MySQL服务

# 在/usr/lib/systemd/system/路径下创建mysql.service ]#vim /usr/lib/systemd/system/mysql.service [Unit] Description=MySQL server After=syslog.target network. ......
systemctl CentOS7 CentOS MySQL

centos7中查看指定服务是否开机自动启动

以ntpd服务为例 001、查看ntpd服务的的当前状态 [root@PC1 home]# systemctl list-unit-files | grep "ntpd" ## 查看ntpd服务 ntpd.service disabled ntpdate.service disabled 002、设 ......
centos7 centos

centos7中安装 ntp时间同步服务器

001、查看ntp服务状态 [root@PC1 home]# cat /etc/redhat-release ## 系统版本 CentOS Linux release 7.6.1810 (Core) 002、启动ntp服务 [root@PC1 home]# systemctl start ntpd ......
centos7 服务器 时间 centos ntp

centos环境tomcat配置SSL

环境: centos7.9 tomcat9 jdk1.8 # 一.阿里云申请 [免费SSL](https://yundunnext.console.aliyun.com/?spm=5176.21213303.782131.4.304053c9wUb2BP&p=cas#/certExtend/free ......
环境 centos tomcat SSL

centos 7网卡配置文件详解(ifcfg-ens33)

centos 7网卡配置文件详解(ifcfg-ens33) ``` [root@xuegod63 ~]# cat /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet BOOTPROTO=none # 等号后面写:dhcp 表示动态获取IP ......
网卡 ifcfg-ens 文件 centos ifcfg