Loading
0

Linux下常见命令集合

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
前言:在Linux系统使用过程中,很多常见命令使用方法是会的,但长时间不使用很容易忘记,本文章将记录常见的Linux下的命令使用方法,本文主要以centos7为载体。
1、Centos下查看当前系统版本:
命令:cat /etc/redhat-release
显示:

[root@blog-tag-gg ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[root@blog-tag-gg ~]#

2、Centos7查看服务器状态
命令:systemctl status mysqld.service (将mysqld更换为您自己的服务名)
重启服务:systemctl restart mysqld.service
停止服务:systemctl stop mysqld.service

[root@blog-tag-gg ~]# systemctl status mysqld.service
● mysqld.service - LSB: start and stop MySQL
   Loaded: loaded (/etc/rc.d/init.d/mysqld; bad; vendor preset: disabled)
   Active: active (running) since Mon 2021-02-08 13:50:35 CST; 3 weeks 0 days ago
     Docs: man:systemd-sysv-generator(8)
  Process: 3160 ExecStart=/etc/rc.d/init.d/mysqld start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/mysqld.service
           ├─3225 /bin/sh /www/server/mysql/bin/mysqld_safe --datadir=/www/server/data --pid-file=/www/server/data/iZ...
           └─4323 /www/server/mysql/bin/mysqld --basedir=/www/server/mysql --datadir=/www/server/data --plugin-dir=/w...

Feb 08 13:50:29 iZb0piaopr2dw1Z systemd[1]: Starting LSB: start and stop MySQL...
Feb 08 13:50:35 iZb0piaopr2dw1Z mysqld[3160]: Starting MySQL......[  OK  ]
Feb 08 13:50:35 iZb0piaopr2dw1Z systemd[1]: Started LSB: start and stop MySQL.

3、查看模拟进程或服务的ID号
命令:pidof 服务名

[root@blog-tag-gg ~]# pidof mysqld
4313

4、Linux下结束进程树
命令:killall nginx

[root@blog-tag-gg ~]# pidof nginx
3365 3364 3355
[root@blog-tag-gg ~]# killall nginx
[root@blog-tag-gg ~]# pidof nginx
[root@blog-tag-gg ~]#

5、查看系统负载
命令:uptime
还可以用top命令,但uptime更简洁。

[root@blog-tag-gg ~]# uptime
 15:44:56 up  1:30,  1 user,  load average: 0.00, 0.03, 0.35

6、last命令查看登录系统的信息
命令:last

[root@blog-tag-gg ~]# last
root     pts/0        192.168.0.100   Mon Mar  1 14:16   still logged in
root     pts/0        192.168.0.100   Mon Mar  1 14:15 - 14:16  (00:00)
reboot   system boot  3.10.0-957.5.1.e Mon Mar  1 22:14 - 15:53  (-6:-20)
root     pts/0        192.168.0.100   Mon Mar  1 13:58 - down   (00:16)
root     pts/0        192.168.0.100   Mon Mar  1 13:56 - 13:57  (00:00)
root     pts/0        192.168.0.100   Mon Mar  1 13:53 - 13:56  (00:03)













 
技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-3-35887-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:Linux系统如何更改SSH远程登录端口的详细方法
下一篇:-bash: sosreport: command not found解决方法