中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

systemctl

時間:2019-08-13

linux命令大全_linux命令大全進(jìn)程_linux命令大全

系統(tǒng)服務(wù)管理器指令

systemctl命令 是系統(tǒng)服務(wù)管理器指令,它實(shí)際上將 service 和 chkconfig 這兩個命令組合到一起。

任務(wù)

舊指令

新指令

使某服務(wù)自動啟動

chkconfig –level 3 httpd on

systemctl enable httpd.service

使某服務(wù)不自動啟動

linux命令大全_linux命令大全_linux命令大全進(jìn)程

chkconfig –level 3 httpd off

systemctl disable httpd.service

檢查服務(wù)狀態(tài)

service httpd status

systemctl status httpd.service (服務(wù)詳細(xì)信息) systemctl is-active httpd.service (僅顯示是否 Active)

顯示所有已啟動的服務(wù)

chkconfig –list

systemctl list-units –type=service

啟動某服務(wù)

linux命令大全進(jìn)程_linux命令大全_linux命令大全

service httpd start

systemctl start httpd.service

停止某服務(wù)

service httpd stop

systemctl stop httpd.service

重啟某服務(wù)

service httpd restart

systemctl restart httpd.service

1.啟動nfs服務(wù)

linux命令大全_linux命令大全_linux命令大全進(jìn)程

systemctl start nfs-server.service

2.設(shè)置開機(jī)自啟動

systemctl enable nfs-server.service

3.停止開機(jī)自啟動

systemctl disable nfs-server.service

4.查看服務(wù)當(dāng)前狀態(tài)

systemctl status nfs-server.service

5.重新啟動某服務(wù)

systemctl restart nfs-server.service

linux命令大全_linux命令大全進(jìn)程_linux命令大全

6.查看所有已啟動的服務(wù)

systemctl list -units --type=service

開啟防火墻22端口

iptables -I INPUT -p tcp --dport 22 -j accept

如果仍然有問題linux命令大全,就可能是SELinux導(dǎo)致的

關(guān)閉SElinux:

修改/etc/selinux/config文件中的SELINUX=””為disabledlinux命令大全,然后重啟。

徹底關(guān)閉防火墻:

sudo systemctl status firewalld.service
sudo systemctl stop firewalld.service          
sudo systemctl disable firewalld.service
微信捐贈支付寶捐贈

微信捐贈