内网开发常用开机启动
一、开机关闭防火墙和selinux
# 禁止firewall开机启动
systemctl disable firewalld.service
# 启动的时候关闭iptables
chkconfig iptables off
# 关闭selinux
永久关闭selinux,需要通过修改配置文件/etc/selinux/config。
vim /etc/selinux/config
修改SELINUX。参数可选(enforcing、permissive、disabled)
SELINUX=disabled
二、开机启动nginx
chkconfig nginx on
三、开机挂载mount光盘
# 手动挂载
mount -o loop /opt/soft/centos7.5/CentOS-7-x86_64-DVD-1804.iso /mnt/centos7.5/
# 开机启动挂载
vi /etc/fstab
编辑文件系统表
添加下面行
/opt/soft/centos7.5/CentOS-7-x86_64-DVD-1804.iso /mnt/centos7.5/ iso9660 defaults 0 0
这一行表示把光盘iso文件加载到/mnt/centos7.5/下面。
特别注意的是,我们需要及时验证一下
mount -a 进行验证,如果挂载成功
[root@dev-repo001 mnt]# mount -a
mount: /dev/loop0 写保护,将以只读方式挂载
已经挂载过则不会出现这个提示。
我们可以卸载挂载再试一下
umount /mnt/centos7.5/
四、开机启动mysql
systemctl enable mysql
五、开机启动ntp
安装好NTP之后,设置为开机自动启动,但是重启之后NTP并没有启动。
这是因为centos7已经安装了一个类似的工具chronyd。
需要先禁用chronyd。
systemctl enable ntpd
systemctl disable chronyd
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。