Linux 如何启动关闭 X 服务?

Linux 如何启动关闭 X 服务?,第1张

1、利用ntsysv命令进行设置。

2、终端命令下输入ntsysv 回车。

3、利用命令行chkconfig命令进行设置,Chkconfig--list:将目前的各项服务状态栏显示出来--level:设置某个服务在该LEVEL下启动或者关闭

4、单独查看某一服务是否开机启动的命令 :chkconfig --list 服务名单独开启某一服务的命令 chkconfig 服务名 on 单独关闭某一服务的命令;chkconfig 服务名 off。

5、用户自定义开机程序(/etc/rc.d/rc.local)可以将书写的shell script文件放入其中,或者数据库的自动,was等等,比如让数据库开机自启。

命令:service \x0d\x0a Service 服务名 strart开启stop restart\x0d\x0a 如:service sshd start\x0d\x0aFTP服务的开启及关闭\x0d\x0aservice vsftpd start/stop/restart\x0d\x0achkconfig 服务名 on 开机时自动开启服务\x0d\x0achkconfig _list 查看服务状态\x0d\x0a\x0d\x0a自己总结的

Linux 启动、关闭、重启网络服务的两种方式:

1、使用service脚本来调度网络服务,如:

启动 service network start;

关闭 service network stop;

重启 service network restart;

2、直接执行网络服务的管理脚本,如:

启动 /etc/init.d/network  start;

关闭 /etc/init.d/network  stop;

重启 /etc/init.d/network  restart。

扩展资料

linux其他服务相关命令介绍:

1、linux显示所有服务的运行状态命令

service --status-all

chkconfig --list

2、linux查看单个服务的运行状态命令

service iptables status

3、linux查看服务启动状态,是否开机自动启动命令

chkconfig --list servicename


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/6195657.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存