yadianna 发表于 2017-7-8 10:44:39

在Mac上开启自带的Apache,httpd服务

  下面演示的是Mac自带的httpd服务
启动httpd服务
  AppledeMacBook-Pro:python2_zh apple$ sudo apachectl start
  AppledeMacBook-Pro: python2_zh apple$ ps -ef | grep httpd

04488   1   08:22下午 ??         0:00.07 /usr/sbin/httpd -D FOREGROUND
7044924488   08:22下午 ??         0:00.00 /usr/sbin/httpd -D FOREGROUND
50144943481   08:22下午 ttys000    0:00.00 grep httpd

  AppledeMacBook-Pro:python2_zh apple$
关闭httpd服务
  AppledeMacBook-Pro:python2_zh apple$ sudo apachectl stop
  AppledeMacBook-Pro:python2_zh apple$ ps -ef | grep httpd

50144843481   08:22下午 ttys000    0:00.00 grep httpd

重启httpd服务
  AppledeMacBook-Pro:python2_zh apple$ sudo apachectl restart
页: [1]
查看完整版本: 在Mac上开启自带的Apache,httpd服务