. NET Cross-platform Journey: The 2nd ASP Web core site running on Linux in a production environment

Source: Internet
Author: User

Today we launched the 2nd ASP. NET Core site running on Linux in a production environment. This is a simple Web API site that invokes programs installed on a Linux server by means of a command line to complete the operation. Previously used by Nodejs, now replaced by ASP. NET Core, the main code is as follows:

 var  psi = new   ProcessStartInfo (command, arguments) {redirectstandardoutput  = true  Span style= "color: #000000;"    >, Redirectstandardinput  = true   = true   UseShellExecute /span>= false  };  using     (var  process = Process.Start (psi)) { Request.Body.CopyTo (process.    Standardinput.basestream); Process.    Standardinput.dispose ();  return   process. Standardoutput.readtoend ();}  

Deployed in the same way as the 1th ASP. NET core site running on Linux, see. NET Cross-platform Journey: Launch the first ASP-only Web core site running on Linux in a production environment

. NET Cross-platform Journey: The 2nd ASP Web core site running on Linux in a production environment

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.