Ubuntu16.04下安装Nginx

sudo apt-get install nginx
提示 ImportError: No module named 'ConfigParser'。

原因:python3中并没有ConfigParser这个模块,为了遵循pep 8的标准,已经改名为configparser了。
解决方案:
cd /usr/bin/
有个文件叫做pycompile,还有个文件叫做py3compile,前者遵循的是python2的语法,而我们使用pip的时候使用的就是pycompile,我们只需要用py3compile中的内容覆盖pycompile中的内容,这样的话就解决这个问题了
启动命令:service nginx start
停止命令:service nginx stop
重启命令:service nginx restart
查看服务状态:systemctl status nginx.service

Server Configuration
/etc/nginx: The nginx configuration directory. All of the Nginx configuration files reside here.
/etc/nginx/nginx.conf: The main Nginx configuration file. This can be modified to make changes to the Nginx global configuration.
/etc/nginx/sites-available/: The directory where per-site "server blocks" can be stored. Nginx will not use the configuration files found in this directory unless they are linked to the sites-enabled directory (see below). Typically, all server block configuration is done in this directory, and then enabled by linking to the other directory.
/etc/nginx/sites-enabled/: The directory where enabled per-site "server blocks" are stored. Typically, these are created by linking to configuration files found in the sites-available directory.
/etc/nginx/snippets: This directory contains configuration fragments that can be included elsewhere in the Nginx configuration. Potentially repeatable configuration segments are good candidates for refactoring into snippets.

Server Logs
/var/log/nginx/access.log: Every request to your web server is recorded in this log file unless Nginx is configured to do otherwise.
/var/log/nginx/error.log: Any Nginx errors will be recorded in this log.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • NAME dnsmasq - A lightweight DHCP and caching DNS server....
    ximitc阅读 7,956评论 0 0
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,828评论 19 139
  • 愿望:下午六点前写完案例分析。 结果:按时交作业。 在某种程度上得到放松 障碍:时间不够,无法完成。 计划:提高自...
    再见你好_8260阅读 1,477评论 0 0
  • 关于写作的书,很多人写过书评,赶上优惠比较大,也买了一本。粗粗读完,对自己最有启发的是: 一、触发。对经验的事物,...
    明光照耀阅读 2,854评论 0 1
  • 作者:小锋子日期:2016-6-6 Grunt学习笔记 王福朋的博客 读书:JavaScript Web 应用开发...
    小锋子_Gruad阅读 1,112评论 0 1

友情链接更多精彩内容