linux命令
关闭防火墙:
systemctl stop firewalld
|
永久禁用防火墙(使其在重启后也不会自动启动):
systemctl disable firewalld
|
临时禁用SELinux(进入Permissive模式):
setenforce 0
|
永久禁用SELinux:
sudo sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
# 或者使用文本编辑器手动编辑该文件
g:表示全局替换(global)。如果省略这个标志,并且一行中有多个匹配的模式,那么默认情况下 sed 只会替换每行中的第一个匹配。但是,加上 g 后,sed 会替换每行中的所有匹配。
|
1.1.1、查看防火墙和selinux的状态:
systemctl status firewalld #查看防火墙状态
getenforce #这个命令将返回SELinux的当前模式(Enforcing、Permissive或Disabled)。
sestatus #这个命令将提供SELinux的详细状态报告。
|
1.2.1、查看解压后的路径:
ls -ld /opt/depadv/depadmin/postgresql-11.3
或者:
cd /opt/depadv/depadmin
ls
pwd
|
——