问题标签 [azure-files]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
833 浏览

azure - 如何将其他文件部署到天蓝色?

我尝试将要下载的文件与我的 Web 应用程序一起部署到天蓝色。

该文件是我的项目的一部分,位于我的 VS2010 解决方案的文件夹中。在文件属性中,我都尝试了,将构建操作设置为“内容”或将“复制到输出”设置为始终。部署后,文件不存在,我得到一个 404。有什么想法吗?

问候

0 投票
1 回答
1044 浏览

c# - 从云服务中的 Azure 文件访问挂载

我使用此博客文章中的说明成功创建并手动测试了 Azure 文件中的共享。但是,如果我通过远程访问角色来创建它,我部署的云服务无法从 C# 创建挂载或访问挂载(创建或列出文件)。

0 投票
0 回答
295 浏览

azure - Azure 文件 - 409 与只读文件冲突

我知道 Azure Files 仍处于预览阶段,但请耐心等待......我的用户可以将文件上传到 Azure Files 目录,并且每隔一段时间,该文件就会在源文件系统上标记为只读。我们还有一个自动化流程来更新这些文件。当目标文件被标记为只读时,自动化过程将失败并显示 409 冲突消息。

有谁知道如何确定该文件在 Azure 文件中是否为只读文件?

我在下面附上了示例代码。在调用 UploadFromStream 期间发生错误。

0 投票
1 回答
2725 浏览

azure - 从 Azure 网站访问 Azure 文件服务

正如标题所说,我正在寻找一种直接从 azure 网站访问 azure 文件共享(预览)的方法。我不能使用任何 REST API 或类似的东西,我正在寻找将 SMB 共享直接安装到网站的可能性(通过新门户或任何其他方式)。

我找到了以下链接,据我了解,这仍在审查中(http://feedback.azure.com/forums/169385-web-apps-以前-websites/suggestions/6084609-allow-map-azure-file -share-microsoft-azure-file-s)和一个 SO 问题(可以从 Azure 网站使用新的 Azure 文件服务吗?),它没有回答我的问题。

老实说,为了提供更多细节,我的场景非常简单——我有一些网站和一些虚拟机,它们应该从 azure 文件服务访问文件。关于 VM,该方法非常简单明了,但关于网站,我目前找不到任何方法。

另一方面,无论上述问题的答案如何,通过 Azure 文件共享启用 CDN 是否有意义(或者我是否有可能)?

非常感谢你。

0 投票
2 回答
1370 浏览

azure - DSC File Resource: Unable to connect to Azure File Storage using Credential Object

I've been trying to make a DSC Script work using DSC File Resource to copy files from Azure File Storage to local as shown below

The $storageCredential is passed while invoking as shown below.

It fails to copy the contents with the following errors

An error occurs when accessing the network share with the specified credential. Please make sure the credential is correct and the network share is accessible. Note that Credential should not be specified with the local path. The related file/directory is: \sriksstore.file.core.windows.net\fabrikamfibreshare. A specified logon session does not exist. It may already have been terminated. An error occurs when accessing the network share with the specified credential. Please make sure the credential is correct and the network share is accessible. Note that Credential should not be specified with the local path. The related file/directory is: \sriksstore.file.core.windows.net\fabrikamfibreshare.

It also fails when I try to invoke using Get-Credential as mentioned in various samples, if anyone tried using DSC File resource with Azure File Storage, please help. I've double checked the credentials they are correct, interesting when I use write-verbose to print $storageCredential.Username they always output blank. I'm definitely missing something here.

0 投票
0 回答
806 浏览

c# - Azure - 将虚拟目录映射到云服务中的文件服务共享

参考:将 Azure 文件服务 CloudFileShare 映射为每个云服务实例上的虚拟目录

我尝试在 Azure 云服务中创建虚拟目录时遇到问题,并且虚拟目录映射到 Azure 文件服务。

我做了什么

1)<Runtime executionContext="elevated" />在 ServiceDefinition.csdef 中用于 webrole

2)在 WebRole.cs 我安装驱动器(如http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/27/persisting-connections-to-microsoft-azure-files.aspx中所述PaaS)我也在应用程序启动时这样做。

3) 在 WebRole.cs 中,我通过以下方式创建虚拟目录,

4) 在 WebRole.cs 中,我使用以下内容使 AppPool 在我为远程桌面创建的管理员帐户中运行,

问题:

我无法从 /asset/cms 得到任何东西。如果我尝试访问其中的文件,它会返回 500.19 ,并显示“无法访问请求的页面,因为该页面的相关配置数据无效。',特别是它指向不存在的 s:\cms\web.config。当我远程访问云服务实例并打开 IIS mgr 时,我可以看到虚拟目录已正确创建。

估计是权限问题。但我无法编辑虚拟目录的权限,因为它已映射到网络驱动器。

我怎么解决这个问题?-- 现在上述问题解决了,云服务可以访问文件服务共享了。但是,新问题 - 是否可以使用 network_service 身份来运行 AppPool?

0 投票
0 回答
1022 浏览

azure - 列出 Azure 文件服务中的文件

我已将文件上传到 Azure 文件服务帐户上的文件夹。现在我想列出这些文件。当代码到达这一行时

它关闭。没有抛出错误,所以我无法弄清楚问题所在。完整的方法如下。有没有人让这个工作?

0 投票
2 回答
32011 浏览

c# - 如何将“Azure 文件存储”与 Web 应用服务一起使用?

我一直在努力寻找一些资源来帮助解释我们如何将文件存储与 Web 应用服务一起使用。

有一些方法可以将它与旧的 Web 角色一起使用,请在此处查看(在云服务中使用 Azure 文件服务(Web 和工作角色))。

但是,“Azure Web 服务”中没有 OnStart() 方法。

0 投票
1 回答
2203 浏览

azure - Azure 文件共享。将数据库备份到已安装的驱动器

使用 Azure protal,我在文件共享(abcFileShare)下创建了一个文件夹(备份),然后将其安装在其中一台 azure 虚拟机上。

我可以将 /paste 文件复制到此驱动器,但是当我尝试使用 sql server 查询或作业将数据库备份到此共享驱动器时,它给了我一个错误:

无法打开备份设备“\xxxstorage.file.core.windows.net\abcfileshare\backup\AdventureWorks2012.BAK”。操作系统错误1326(用户名或密码不正确。)

我正在使用此 TSQL 进行备份:

不知道我做错了什么?

0 投票
1 回答
57 浏览

azure - 从辅助角色访问 AzureFileStorage 共享?

我创建了一个 Azure 存储帐户并创建了一个文件共享并将一些文件放在一个目录中。我想从 WorkerRole 访问这些文件。是否可以设置它以使其在主机云服务器和/或工作角色的刷新后仍然存在?