# 關(guān)機
shutdown -h now
# 重啟
reboot
修改啟動級別
# 按照該文件所說的,runlevels被targets所取代陡蝇,即CentOS7采用加載target的方式來替代之前的啟動級別哮肚。其中有兩個重要的target:multi-user.target與graphical.target。它們分別表示運行級別中的3與5級別允趟。
# 通過systemctl get-default可獲得默認啟動的target
# 通過systemctl set-default設(shè)置默認啟動的target
# 修改為多用戶狀態(tài)
systemctl set-default multi-user.target
# 修改為圖形界面執(zhí)行:
systemctl set-default graphical.target
# 修改為多用戶狀態(tài)
init 3
# Linux分為7個啟動級別:
0 - 系統(tǒng)停機狀態(tài)
1 - 單用戶工作狀態(tài)
2 - 多用戶狀態(tài)(沒有NFS)
3 - 多用戶狀態(tài)(有NFS)
4 - 系統(tǒng)未使用,留給用戶
5 - 圖形界面
6 - 系統(tǒng)正常關(guān)閉并重新啟動
查看版本
cat /etc/centos-release
[root@dataxwebtest01 ~]# cat /etc/centos-release
CentOS Linux release 7.6.1810 (Core)
安裝常用工具包
yum -y install lrzsz vim gcc gcc-c++ net-tools wget ntp
# 主要是Development Tools工具組
yum -y groups install "Development Tools"
# 查看工具包
yum groups info "Development Tools"
修復(fù)中文亂碼
# 是否安裝中文包
locale -a |grep "zh_CN"
# 安裝中文語言包
yum groupinstall "fonts" -y
# 查看當(dāng)前系統(tǒng)語言環(huán)境:
echo $LANG
locale
# 修改配置文件
vim /etc/locale.conf
LANG="zh_CN.utf8"
# 重新加載配置文件
source /etc/locale.conf
# 驗證是否成功
date
查看修改時區(qū)
# 1涣楷、查看時間各種狀態(tài):timedatectl
[root@localhost ~]# timedatectl
Local time: 二 2001-09-11 11:30:11 CST
Universal time: 二 2001-09-11 03:30:11 UTC
RTC time: 三 2020-11-25 06:34:37
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes #NTP已經(jīng)啟用
NTP synchronized: no #尚未完成過一次NTP同步
RTC in local TZ: no
DST active: n/a
# 將硬件時鐘調(diào)整為與本地時鐘一致, 0 為設(shè)置為 UTC 時間: timedatectl set-local-rtc 1
timedatectl set-local-rtc 0
# 設(shè)置系統(tǒng)時區(qū)為上海:timedatectl set-timezone Asia/Shanghai
timedatectl set-timezone Asia/Shanghai
# 安裝ntp
[root@dusk local]# yum -y install ntp
#通過阿里云時間服務(wù)器校準(zhǔn)時間
[root@dusk local]# ntpdate ntp1.aliyun.com
1 Jul 15:21:43 ntpdate[10821]: adjust time server 120.25.115.20 offset 0.472932 sec
[root@dusk local]# date
2020年 07月 01日 星期三 15:21:46 CST
# 開啟自動同步時間
timedatectl set-ntp true
# 設(shè)置開機自動啟動
systemctl enable ntpd
find
# 根據(jù)文件名查找文件 profile
[root@ckdev local]# find / -name profile
/etc/profile
/etc/lvm/profile
/etc/dconf/profile
/var/lib/docker/overlay2/ff2d17b8058299af72b87f73e0fef8f8385b80f0f691c1e01e977e456a3453e3/diff/etc/profile
/var/lib/docker/overlay2/ff2d17b8058299af72b87f73e0fef8f8385b80f0f691c1e01e977e456a3453e3/diff/var/local/ldb-toolchain/lib/clang/13.0.1/include/profile
/usr/share/dconf/profile
/usr/include/c++/4.8.2/profile
/usr/src/kernels/3.10.0-1160.76.1.el7.x86_64.debug/include/config/branch/profile
# 根據(jù)文件名查找文件 simkai.ttf
[root@ckdev local]# find / -name simkai.ttf
PS
# 查看進程
ps -ef|grep redis
ps -ef|grep jenkins
SSH免密登錄配置
# 創(chuàng)建系統(tǒng)用戶总棵,并修改用戶的密碼
useradd atguigu
passwd atguigu
echo "atguigu:pYIvA5iB7u6cRO8I" | chpasswd
# 密碼:pYIvA5iB7u6cRO8I
# 分配root權(quán)限給用戶
# 配置 sudo 免密
sed -i '$aatguigu ALL=(ALL) NOPASSWD: NOPASSWD: ALL' /etc/sudoers
sed -i 's/Defaults requirett/#Defaults requirett/g' /etc/sudoers
# hadoop102上生成公鑰和私鑰
[atguigu@hadoop102 .ssh]$ ssh-keygen -t rsa
# 將hadoop102公鑰拷貝到要免密登錄的目標(biāo)機器上
[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop102
[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop103
[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop104
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者