mysql服务启动关闭

service mysqld status 查看mysql状态
    mysqld is stopped 说明mysql服务是停止状态
    mysqld is running 说明mysql服务是启动状态
chkconfig --list 查看所有的服务启动状态
chkconfig --list xxx 查看xxx的服务启动状态

shutdown -r now 表示现在重启计算机
vmware虚拟机linux切换命令行界面和图形化界面
ctrl + alt + F3 或者 init 3 切换命令行模式
ctrl + alt +F1 切换图形界面模式

防火墙

1:查看防火状态
systemctl status firewalld
service  iptables status
2:暂时关闭防火墙
systemctl stop firewalld
service  iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off
4:重启防火墙
systemctl enable firewalld
service iptables restart  
5:永久关闭后重启
//暂时还没有试过
chkconfig iptables on 

或者尝试

关闭防火墙命令:systemctl stop firewalld.service
开启防火墙:systemctl start firewalld.service
关闭开机自启动:systemctl disable firewalld.service
开启开机启动:systemctl enable firewalld.service

亲测效果较好:
rhel6关闭防火墙的方法为:
service iptables status 查看当前防火墙状态
1. 永久性生效
开启:chkconfig iptables on
关闭:chkconfig iptables off
2. 即时生效,重启后失效
开启:service iptables start
关闭:service iptables stop
rhel7关闭防火墙的方法为:
systemctl status firewalld 查看当前防火墙状态
1. 永久性生效
开启:systemctl enable firewalld
关闭:systemctl disable firewalld
2. 即时生效,重启后失效
开启:systemctl start firewalld
关闭:systemctl stop firewalld
java -version 查看本机运行的jdk版本

关机及重启

关机:
  shutdown -h now  #立刻关机重启,工作中常用
  shutdown -h +1    #1分钟后关机
  init 0
  halt                        #立即停止系统,需要人工关闭电源
  halt -p                    #
  poweroff      #立即停止系统,并且关闭电源
重启:
  reboot      #工作中常用
  shutdown -r now      #工作中常用
  shutdown -r +1   #一分钟后重启
  init 6
注销:
  logout
  exit      #工作中常用
  ctrl+d     #工作中常用

关闭进程

ps -ef|grep Tong
kill -9 85897


UID PID    PPID      C  STIME    TTY       TIME         CMD
zzw 14124   13991    0  00:38    pts/0     00:00:00    grep --color=auto dae
 
UID      :程序被该 UID 所拥有
PID      :就是这个程序的 ID 
PPID    :则是其上级父程序的ID
C          :CPU使用的资源百分比
STIME :系统启动时间
TTY     :登入者的终端机位置
TIME   :使用掉的CPU时间。
CMD   :所下达的是什么指令

赋权限

赋予文件权限
chmod u+x test.sh  #拥有者可以执行
chmod 777 test.sh   #任何人可执行

删除文件权限
chmod a-x test.sh   #删除任何人的执行权限