1. nginx nginx [engine x] is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server. 从niginx基本介绍上看到Other HTTP server features中有一项: FLV and MP4 streaming; 可知nginx也支持流媒体. 2. brew brew又叫Homebrew,是Mac中的一款软件包管理工具,通过brew可…
问题 在 Mac 上通过 brew install mysql 安装的的MySQL使用基本MySQL命令重启会失败: mysql.server stop mysql.server start mysql.server restart 输出显示会提示成功,但是使用的时候会报错,不能使用. ERROR 2002 (HY000): Can not connect to local MySQL server through socket '/tmp/mysql.sock' (2) 解决方法 启动使用My…
准备工作 新版的 Mac OS 内置了Apache 和 PHP,我的系统版本是OS X 10.9.3,可以通过以下命令查看Apache和PHP的版本号: httpd -v Server version: Apache/2.2.26 (Unix) Server built: Dec 10 2013 22:09:38 php --version PHP 5.4.24 (cli) (built: Jan 19 2014 21:32:15) Copyright (c) 1997-2013 The PHP…
1.安装mysql #brew install mysql 报错 Error: The following directories are not writable by your user: /usr/local/lib You should change the ownership of these directories to your user. sudo chown -R $(whoami) /usr/local/lib 意思是 您应该将这些目录的所有权更改为您的用户 执行以下命令设置…
一.打开mac控制台 $ brew install mysql 二.启动mysql服务 $ mysql.server start 三.初始化mysql配置 1 rainMacBook-Pro:~ comet$ mysql_secure_installation 2 3 Securing the MySQL server deployment. 4 5 Connecting to MySQL using a blank password. 6 7 VALIDATE PASSWORD PLUGIN…
Fix XAMPP Apache Not Starting Because Port 80 In Use XAMPP中Apache服务器无法启动,出现该问题的最常见原因是由于默认端口号80可能已被其他程序(如Skype,Teamviewer等)使用. 得到了以下消息,其中说明了另一个程序使用的80端口 I can not start Apache because of the problem mentioned below. I can not understand how to solve i…
需求背景:比如我们有一个存储文件的web服务器,一般通过url可直接访问到:http://127.0.0.1/uploads/test.rar,如果我们需要限制别人的访问,可以通过添加lua脚本来控制url访问权限,以下是实现步骤. 安装LuaJIT 下载地址:http://luajit.org/download.html tar zxf LuaJIT-2.1.0-beta2.tar.gz cd LuaJIT-2.1.0-beta2 make PREFIX=/usr/local/luajit m…