Questions tagged «services»

守护程序是不断在后台运行的程序。他们通常为请求服务。如果您询问在线服务,请使用其他标签。

8
如何启用或禁用服务?
我读到有关如何在Ubuntu中启用和禁用服务的信息,似乎有多种管理它们的可能性。 我发现的第一种方法是update-rc.d向启动添加新服务,该服务针对/etc/init.d文件夹及其内容。 我发现的另一个是编辑.conf文件/etc/init夹中的文件。 建议启用/禁用/添加服务的方法是什么?为什么? 您能否给出一个简短的防弹逐步示例,说明如何在Ubuntu中添加服务以及启用和禁用该服务?
821 upstart  services 



12
如何重新启动Apache?
我从SLES切换到Ubuntu,现在我想重新启动本地服务器。在SLES中,我使用了: rcapache2 restart 但这似乎在Ubuntu中不起作用。:( 如何重新启动Apache?
249 server  apache2  services 

16
如何重启网络服务?
我尝试使用 sudo service networking restart 和 sudo /etc/init.d/network restart 但是它们都使窗口管理器崩溃,并且我无法再使用键盘输入X。 当我使用该/etc/init.d/方法时,它抱怨说我应该使用服务实用程序 e.g. service networking restart 但是它崩溃了。 是否有重新启动网络的GUI方法?

4
如何配置服务以在启动时运行
我有一个守护程序,如果我使用以下service命令手动启动它,它将运行良好: ricardo@ricardo-laptop:~$ sudo service minidlna start * Starting minidlna minidlna [ OK ] 但是未将其配置为在PC重新启动时自动启动。 即使没有人登录到PC,如何将其配置为自动启动?

23
延长笔记本电脑和笔记本电脑电池寿命的提示
存在这个问题是出于历史利益。我们鼓励您保持其答案,但请理解,Ask Ubuntu通常不允许“大名单”问题,并且会根据FAQ将其关闭。 通过禁用各种服务和安装各种程序包,可以大大延长笔记本计算机或上网本在电池上的使用时间。 人们有什么窍门或技巧可以使电池多出一两个小时?


5
Chkconfig替代Ubuntu Server?
我已经习惯了在Redhat / RHEL平台上管理服务启动,chkconfig尽管这似乎不是Debian / Ubuntu方式-如何在Ubuntu上更新系统服务的运行级别信息? 最终寻找的等效项: chkconfig --add <service> chkconfig --level 345 <service> on chkconfig --del <service>
144 server  services 


2
systemctl和服务命令之间的区别
systemd为我们提供了systemctl命令套件,主要用于使服务在引导时启动。我们还可以借助来启动,停止,重新加载,重新启动和检查服务状态systemctl。 我们能做到的,例如sudo systemctl enable service_name,并且service_name会在开机时自动启动。我们还可以禁用在启动时无法启动的服务。 service和systemctl命令之间唯一systemctl可用于在运行时启用服务启动的区别吗?我们可以systemctl在任何服务上使用吗?还有哪些其他显着差异?



2
“服务”和“ /etc/init.d/”之间有什么区别?
一段时间以来,我一直在Ubuntu发行版和非发行版上管理服务器的安装-我已经/etc/init.d/为重新启动服务进行了调整。现在我收到此消息: root@tatooine:~# /etc/init.d/mysql status Rather than invoking init scripts through /etc/init.d, use the service(8) utility, e.g. service mysql status Since the script you are attempting to invoke has been converted to an Upstart job, you may also use the status(8) utility, e.g. status mysql mysql start/running, process 14048 这似乎是在Ubuntu的最新LTS中带来的-为什么?有什么不好的?和/etc/init.d/之间有什么区别?service/etc/init.d/
113 upstart  services 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.