配置防火墙问题 最近在服务器上部署项目时遇到了用ip访问不了的问题, 在一个纯洁的unbantu环境中 需要先安装防火墙 sudo apt install firewalld 然后启动防火墙 systemctl restart firewalld 我出现了防火墙被锁定的提示 Failed to re ...
分类:
其他好文 时间:
2021-03-06 14:21:48
阅读次数:
0
1. 我用的是桥接上网: 2. 连接外部电脑网络与之对应: 3. 编辑网路配置 : vi /etc/sysconfig/network-scripts/ifcfg-ens33 下图需要配置标注的地方 重启:systemctl restart network.serice 4. 查询配置时候成功 输入 ...
分类:
系统相关 时间:
2021-03-04 13:26:12
阅读次数:
0
在企业中,数据库密码复杂度极高。偶尔会忘记数据库管理员的密码,在这种情况下如何保证数据不丢失情况下,并且重置数据库管理员的密码呢?下文将会以MySQL 5.7.26版本为例进行介绍。 1. 关闭数据库 [root@templates ~]# systemctl stop mysqld [root@t ...
分类:
数据库 时间:
2021-03-03 12:22:25
阅读次数:
0
root用户登录服务器 22端口修改为22525,22端口也打开,以防新端口设置有问题,登录不上服务器 向防火墙中添加修改的端口 systemctl start firewalld firewall-cmd --zone=public --add-port=22/tcp --permanent fi ...
分类:
系统相关 时间:
2021-02-23 14:06:08
阅读次数:
0
步骤1、修改mysql配置文件 [root@localhost ~]# vi /etc/my.cnf 在底部添加一行 skip-grant-tables 保存退出 重启mysql [root@localhost ~]# systemctl restart mysqld 步骤2、将root密码置空 [ ...
分类:
数据库 时间:
2021-02-22 12:44:28
阅读次数:
0
关防火墙(master 和 work 执行) systemctl stop firewalld systemctl disable firewalld 关SeLinux(master 和 work 执行) # 查看状态 [root@192 ~]# getenforce Enforcing # 临时关 ...
分类:
其他好文 时间:
2021-02-22 12:44:14
阅读次数:
0
1、背景: 启动MariaDB服务,通过python远程访问数据库失败,查询MariaDB日志(systemctl status mariadb)报错信息为: user: 'unauthenticated' host: '192.168.1.8' (This connection closed no ...
分类:
数据库 时间:
2021-02-17 14:04:16
阅读次数:
0
gitlab环境搭建,卸载,汉化 环境搭建 安装依赖软件 yum -y install policycoreutils openssh-server openssh-clients postfix 设置postfix开机自启,并启动,postfix支持gitlab发信功能 systemctl ena ...
分类:
其他好文 时间:
2021-02-03 10:36:52
阅读次数:
0
1.确认redis在后台开启 2.开放端口号6379 systemctl stop firewalld systemctl mask firewalld ...
分类:
其他好文 时间:
2021-02-02 11:24:29
阅读次数:
0
打开21端口,出现“”错误,如:firewall-cmd --zone=public --permanent --add-port=21/tcp 说明防火墙没打开 解决办法: 执行:systemctl status firewalld查看防火墙 执行:systemctl start firewall ...
分类:
其他好文 时间:
2021-02-02 11:00:25
阅读次数:
0