博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu下apache和mysql的命令
阅读量:5796 次
发布时间:2019-06-18

本文共 418 字,大约阅读时间需要 1 分钟。

    1. // Apache  
    2. //Task: Start Apache 2 Server /启动apache服务  
    3. # /etc/init.d/apache2 start  
    4. //or  
    5. $ sudo /etc/init.d/apache2 start  
    6. //Task: Restart Apache 2 Server /重启apache服务  
    7. # /etc/init.d/apache2 restart  
    8. //or  
    9. $ sudo /etc/init.d/apache2 restart  
    10. //Task: Stop Apache 2 Server /停止apache服务  
    11. # /etc/init.d/apache2 stop  
    12. //or  
    13. $ sudo /etc/init.d/apache2 stop   
    14. // Mysql  
    15. /etc/init.d/mysql start  
    16. /etc/init.d/mysql stop  
    17. /etc/init.d/mysql restart 

转载地址:http://yrbfx.baihongyu.com/

你可能感兴趣的文章
Java重写equals方法和hashCode方法
查看>>
Spark API编程动手实战-07-join操作深入实战
查看>>
H3C-路由策略
查看>>
v$archive_gap dg dataguard 断档处理 scn恢复
查看>>
Winform打包发布图解
查看>>
PDF文件怎么编辑,超简单的方法
查看>>
EasyUI基础入门之Easyloader(载入器)
查看>>
Uva 839 Not so Mobile
查看>>
程序猿必备 MyEclipse2013-2014系列
查看>>
java中ArrayList 、LinkList区别
查看>>
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
查看>>
利用rand7()构造rand10()
查看>>
MySQL 备份与恢复
查看>>
吃午饭前,按书上的代码写会儿--Hunt the Wumpus第一个版本
查看>>
easyui中combobox的值改变onchang事件
查看>>
TEST
查看>>
PAT A1037
查看>>
ReactiveSwift源码解析(三) Signal代码的基本实现
查看>>
(六)Oracle学习笔记—— 约束
查看>>
[Oracle]如何在Oracle中设置Event
查看>>