Mono 4.0 已经发布,二进制包已经准备好,具体的发布说明参见:http://www.mono-project.com/docs/about-mono/releases/4.0.0/. 今天在Mac上更新了Mono 4 和Xamarin Studio 5.9。
使用Xamarin Studio 创建了一个asp.net mvc 项目:
模版使用的是5.2.0 版本的,目标框架是Mono/.NET 4.5,我通过Nuget 更新到了5.2.3 , 更新包的过程中需要调整下web.config System.Web.Mvc的版本从5.2.0 更新为5.2.3。
运行起来,看到下面的页面
在MAC当在调试运行时出现类似如下的问题
System.UnauthorizedAccessException Access to the path "/Library/Frameworks/Mono.framework/Versions/4.0.0/etc/mono/registry" is denied.
这时需要针对目录做权限配置:
sudo mkdir /Library/Frameworks/Mono.framework/Versions/4.0.0/etc/mono/registry
sudo chmod g+rwx /Library/Frameworks/Mono.framework/Versions/4.0.0/etc/mono/registry
通过这个示例说明Mono 4.0 已经完整支持ASP.NET MVC 5了。之前的Mono 3.12.1 版本可以支持ASP.NET MVC 2-4,如果是要在Mono上运行ASP.NET MVC 5,建议使用Mono 4.0.1版本。
本文链接:Mono 4.0 Mac上运行asp.net mvc 5.2.3,转载请注明。
可以在apache的httpd.conf配置文件中配置apache自带的程序rotatelogs的功能。
rotatelogs是一个配合Apache管道日志功能使用的简单程序,
参考资料:http://httpd.apache.org/docs/current/mod/mod_log_config.html
1 每天生成新日志
CustomLog "|/usr/sbin/rotatelogs /etc/httpd/logs/access_log_%Y-%m-%d 86400 480" combined
2 日志超过一定大小生成新日志
CustomLog "|/usr/sbin/rotatelogs /etc/httpd/logs/access_log_%Y-%m-%d 5M" combined
3 rotatelogs语法
rotatelogs [ -l ] logfile [ rotationtime [ offset ]] | [ filesizeM ]
logfile
- 它加上基准名就是日志文件名。如果logfile中包含"%",则它会被视为用于
strftime()
的格式字符串;否则它会被自动加上以秒为单位的".nnnnnnnnnn"后缀。这两种格式都表示新的日志开始使用的时间。 rotationtime
- 日志文件滚动的以秒为单位的间隔时间。
offset
- 相对于UTC的时差的分钟数。如果省略,则假定为"0"并使用UTC时间。比如,要指定UTC时差为"-5小时"的地区的当地时间,则此参数应为"
-300
"。 filesizeM
- 指定以
filesizeM
文件大小滚动,而不是按照时间或时差滚动。 - 在 Windows 下的设置例子如下:
# 限制错误日志文件为 1M
ErrorLog "|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M"
# 每天生成一个错误日志文件
#ErrorLog "|bin/rotatelogs.exe logs/error-%Y-%m-%d.log 86400"
# 限制访问日志文件为 1M
CustomLog "|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 1M" common
# 每天生成一个访问日志文件
#CustomLog "|bin/rotatelogs.exe logs/access-%Y-%m-%d.log 86400" common
本文链接:限制Apache日志access.log文件大小,转载请注明。
没有评论:
发表评论