天天看点

Linux Common Commandservice命令启动redis脚本直接启动redis脚本开机自启动

# soft link
cd /usr/local/bin 
ln -fs /usr/local/mysql/bin/mysql mysq  || ln -fs /usr/local/mysql/bin/mysql /usr/local/bin/mysql

# 创建全局可执行命令
echo 1 >> run 
chmod + x run
ln -s {absolutePath}/run /usr/local/bin/{defineName}

find {path} -name {filename}

cat /etc/*release*

grep text -r folder |grep xx |grep xx  // regex text

# centos 7 up use firewall default

# 查看防火墙状态
firewall-cmd    --state

firewall-cmd --reload #重启firewall
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动

systemctl  stop   firewalld.service
systemctl  start   firewalld.service
# forbidden auto start when computer start
systemctl   disable   firewalld.service

# 查看 firewall 已开放端口
firewall-cmd --list-ports
firewall-cmd --zone=public --add-port=80/tcp --permanent
命令含义:

–zone #作用域

–add-port=80/tcp #添加端口,格式为:端口/通讯协议

–permanent #永久生效,没有此参数重启后失效

# Iptable 防火墙服务需要自己安装

yum install  iptables-services

systemctl  start  iptables.service

systemctl  status  iptables.service

# 增加开放端口
vi /etc/sysconfig/iptables 
# 增加规则
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

systemctl restart iptables.service #重启防火墙使配置生效

systemctl enable iptables.service #设置防火墙开机启动

最后重启系统使设置生效即可。

systemctl start iptables.service #打开防火墙

systemctl stop iptables.service #关闭防火墙


           

service systemctl 命令详解

systemd 是 Linux 下的一款系统和服务管理器, 检视和控制systemd的主要命令是systemctl。

systemctl 控制单元时,通常须要使用单元文件的全名,包括扩展名(比如 sshd.service)

马上激活单元:

systemctl start <单元>

马上停止单元:

# systemctl stop <单元>
重新启动单元:

# systemctl restart <单元>
又一次载入配置:

# systemctl reload <单元>
输出单元执行状态:

# 很好用的命令 输出 mysql, iptables 等状态
$ systemctl status <单元> 

# 禁用一个单元(禁用后,间接启动也是不可能的):
 systemctl mask <单元>

# 取消禁用
systemctl unmask <单元>


           

service 对比 systemctl

1.service命令

service命令其实是去/etc/init.d目录下,去执行相关程序

service命令启动redis脚本

service redis start

直接启动redis脚本

/etc/init.d/redis start

开机自启动

update-rc.d redis defaults

其中脚本需要我们自己编写

2.systemctl命令

systemd是Linux系统最新的初始化系统(init),作用是提高系统的启动速度,尽可能启动较少的进程,尽可能更多进程并发启动。

systemd对应的进程管理命令是systemctl

1)systemctl命令兼容了service

即systemctl也会去/etc/init.d目录下,查看,执行相关程序

继续阅读