kudu

Deploying ASP.NET vNext beta 2 on Azure with Kudu

对着背影说爱祢 提交于 2019-12-02 05:52:09
According to this blog post , I can deploy vNext apps to Azure using Kudu. I've successfully tried it with vNext beta 1. However, it does not work with vNext beta 2. Why can't I deploy with vNext beta 2? I thought the whole idea with vNext is that everything (including the CLR) is downloaded as NuGet packages. NPNelson I just ran into this problem today and the following worked for me: Set the following environment variables (app settings) in your Azure Web Site: SCM_KRE_Version 1.0.0-beta2 SCM_KRE_CLR CoreCLR Clarification SCM_KRE_CLR defaults to the "full" clr, only set SCM_KRE_CLR to

kudu-master服务启动失败

我是研究僧i 提交于 2019-12-02 03:15:49
执行service kudu-master start , 提示启动失败failed。 进入报错日志目录 (cd /var/log/kudu/),看到报错信息(vim kudu-master.ERROR 或 vim kudu-master.FATAL)如下: Log file created at: 2019/10/23 19:04:52 Running on machine: cdh01.itcast.cn Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg F1023 19:04:52.290035 6258 master_main.cc:74] Check failed: _s.ok() Bad status: IO e rror: Failed to load FS layout: could not load /var/lib/kudu/master/data/block_manage r_instance: existing data was written using the 'log' block manager; cannot restart w ith a different block manager 'file' without reformatting 解决步骤: 1.

Preventing staging site restart during a swap

瘦欲@ 提交于 2019-12-01 17:24:48
From how I understand it, the only reason a staging site would require restart is if there exists app settings or connection strings configured as slot settings. Although this doesn't always seem to be true. One of our applications will restart regardless. I have used Powershell cmdlets to be sure that there are no slot settings "hidden" from the Portal (because apparently this is a thing). What other factors can determine whether the staging site will be restarted during a swap? (I posted this on the kudu GitHub repository , but haven't heard back) EDIT: In response to Byron's answer: I have

Visual Studio Online Build treats git output as errors

删除回忆录丶 提交于 2019-12-01 08:19:51
My build in Visual Studio Online tries to deploy my Azure web site via Kudu . The script works fine, and deployment goes through, but VSO treats git output as errors for some reason, and declares the whole build failed. Take a look at the screenshot below. Some details: This is a "new scripted" build, not a XAML-defined one. Build definition has just one step, which executes a PowerShell script, which runs F# FAKE (not sure if this is relevant). When I run the same script on my local machine, I don't see any "strange" output, including the [K at the end of each line. After running on my local,

metabse 集成 presto 数据分析

一曲冷凌霜 提交于 2019-12-01 07:28:27
上一篇记录了怎么安装 presto 引擎集成 kudu 数据( presto 安装集成 kudu ),现在需要将数据展示出来,供其他的研究人员做数据分析,这里比较好用的工具是 metabse,可以集成多种数据库。 使用起来也是很方便的,这里使用docker安装:docker run -d -p 3000:3000 --name metabase metabase/metabase 然后我们可以在浏览器输出 ip:3000,可以获取这样的页面,然后我们添加数据源,这里我添加presto的kudu,其他的添加起来也很方便 其他的就是对表数据的操作了,然后好像没什么好细说的,什么聚合,过滤等等的数据操作 当然你也可以选择直接写sql的方式: 这里就简单介绍一下这个工具,希望产品自己可以用用这个工具,分析数据,导出数据,如果数据比较复杂那么维护一个大表吧,比如通过 presto 接入多个数据源,然后让使用方玩数据吧! 这里就简单介绍一下 metabse 的安装和使用,为把数据从 kudu -> presto -> metabse 画上句号! 未完待续! 参考: https://metabase.com/ 来源: oschina 链接: https://my.oschina.net/u/2277632/blog/3103311

Visual Studio Online Build treats git output as errors

风流意气都作罢 提交于 2019-12-01 05:53:35
问题 My build in Visual Studio Online tries to deploy my Azure web site via Kudu. The script works fine, and deployment goes through, but VSO treats git output as errors for some reason, and declares the whole build failed. Take a look at the screenshot below. Some details: This is a "new scripted" build, not a XAML-defined one. Build definition has just one step, which executes a PowerShell script, which runs F# FAKE (not sure if this is relevant). When I run the same script on my local machine,

如何在CDH中安装Kudu&Spark2&Kafka

丶灬走出姿态 提交于 2019-12-01 02:44:43
1.概述 在CDH的默认安装包中,是不包含Kafka,Kudu和Spark2的,需要单独下载特定的Parcel包才能安装相应服务。本文档主要描述在离线环境下,在CentOS6.5操作系统上基于CDH5.12.1集群,使用Cloudera Manager通过Parcel包方式安装Kudu、Spark2和Kafka的过程。 内容概括 Kudu安装 Spark2安装 Kafka安装 服务验证 测试环境 操作系统版本:CentOS6.5 CM和CDH版本5.12.1 使用CM管理员admin用户 操作系统采用root用户操作 前置条件 CDH集群运行正常 2.Kudu安装 CDH5.12.1打包集成Kudu1.4,并且Cloudera提供官方支持。不再需要安装Kudu的csd文件,安装完Kudu,Impala即可直接操作Kudu。 以下安装步骤描述如何使用Cloudera Manager来安装和部署Kudu1.4 2.1Kudu的Parcel部署 1.从Cloudera官网下载Kudu的Parcel包,下载地址如下 http://archive.cloudera.com/kudu/parcels/5.12.1/KUDU-1.4.0-1.cdh5.12.1.p0.10-el6.parcel http://archive.cloudera.com/kudu/parcels/5.12.1

ASP.NET Core app not working after publish to Azure

只愿长相守 提交于 2019-11-30 21:22:22
I have an ASP.NET Core app which is running fine locally. However, when I publish (Web Deploy) the site to Azure, I get a 403 : You do not have permission to view this directory or page . I have a default controller and a route defined in Startup.cs : app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller}/{action}/{id?}", defaults: new { controller = "Home", action = "Index" }); }); The folder structure after web deploy to Azure looks like: |_ home |_ site |_ wwwroot (contains DLL's and files specified through 'publishOptions' in project.json) |_ wwwroot (the contents

ASP.NET Core app not working after publish to Azure

删除回忆录丶 提交于 2019-11-30 17:18:19
问题 I have an ASP.NET Core app which is running fine locally. However, when I publish (Web Deploy) the site to Azure, I get a 403 : You do not have permission to view this directory or page . I have a default controller and a route defined in Startup.cs : app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller}/{action}/{id?}", defaults: new { controller = "Home", action = "Index" }); }); The folder structure after web deploy to Azure looks like: |_ home |_ site |_ wwwroot

why babel stores .babel.json in USERPROFILE path

僤鯓⒐⒋嵵緔 提交于 2019-11-30 03:00:25
问题 I'm running a nodejs app on azure web apps and i'm trying to integrate babel using npm in it. The problem is that babel is trying to acccess a file at %USERPROFILE% named .babel.json, a file that doesn't exist. This is most likely installed by: npm install -g babel On azure web apps, i can't seem to find it at all (even after running npm install -g babel in kudu for the site). I copied the file in %USERPROFILE% myself to %USERPROFILE% using kudu but on web app restart the file disappears. Is