新裝的centos7 4網絡卡防火牆時區設定

2021-10-21 18:01:27 字數 1804 閱讀 3990

備註:本文件是基於centos7.4作業系統而寫

[root@localhost ~]# cat /etc/redhat-release 

centos linux release 7.4.1708 (core)

[root@localhost asia]# uname -a

linux localhost.localdomain 3.10.0-693.el7.x86_64 #1 smp tue aug 22 21:09:27 utc 2017 x86_64 x86_64 x86_64 gnu/linux

重啟網絡卡

systemctl restart network

systemctl stop network

systemctl start network

檢視防火牆狀態

停止防火牆

永久禁止防火牆

systemctl status firewalld

systemctl stop firewalld

systemctl firewalld disable

#設定系統時區為「中國.上海」

cp /usr/share/zoneinfo/asia/shanghai /etc/localtime

#同步系統時間

ntpdate cn.pool.ntp.org

#同步系統時間和硬體時間,可以使用hwclock命令

#以系統時間為基準,修改硬體時間

[root@localhost ~]# hwclock --systohc<== sys(系統時間)to(寫到)hc(hard clock)

[root@localhost ~]# hwclock -w

#以硬體時間為基準,修改系統時間

[root@localhost ~]# hwclock --hctosys

[root@localhost ~]# hwclock -s

postgres=# select now();

now

-------------------------------

2020-08-09 00:44:25.664692-07

(1 row)

postgres=# show time zone;

timezone

------------

us/pacific

(1 row)

postgres=# set time zone 'prc'

postgres-# ;

setpostgres=# show time zone;

timezone

----------

prc(1 row)

postgres=# select now();

now

-------------------------------

2020-08-09 15:45:22.285182+08

(1 row)

postgres=#

要想永久生效到pgdata下的postgresql.conf配置裡修改兩項

log_timezone = 'prc'

timezone = 'prc'

修改好重啟pg或者reload重新查詢登入生效

pg_ctl restart -d /usr/local/pgsql/data

或者pg_ctl reload

centos 7 4 網絡卡不見了,遠端無法登陸

虛擬機上安裝了兩台centos7,用的是同乙個iso源,突然間第一台的ip不見了,之前一直有的,兩台mac位址也不一樣。1.ifconfig 命令檢視網路配置發現沒有網絡卡 2.ifconfig a 命令檢視網絡卡配置詳細資訊,發現網絡卡ens33一直在,只是沒有配置ip.3.解決方法 參考 0.臨...

centOS 7 4 關閉防火牆

systemctl stop firewalld.service 停止firewall systemctl startfirewalld.service 啟動firewall systemctl disable firewalld.service 禁止firewall開機啟動 systemctl e...

Centos7 4防火牆firewalld相關操作

啟動 systemctl start firewalld 檢視狀態 systemctl status firewalld 停止 systemctl disable firewalld 禁用 systemctl stop firewalld 啟動乙個服務 systemctl start firewal...