asp.net - finding the server spec. on which my website runs -


I have to figure out what the details of the processor of the server are. I should know what type of processor, OS, RAM etc. I got an answer from a web hosting company: "This is a shared hosting server, it has a dual processor (Quad Core Xon 2.8) 16 GB RAM, mirror 300 GB SAS 15 drive"

I webhosting How can I tell those details on the other server without the company?

Thank you, Jesse

You need SSH access if it is paid for hosting They are likely to give you SSH access. From there, you can input these commands:

OS: uname -arv

CPU: cat / proc / cpuinfo

Memory: cat / proc / meminfo

HDD: df

Note that It only works for Unix type OS.

Edit: For ASP.NET

Just phpinfo (); In PHP

  & lt; Html & gt; & Lt; Top & gt; & Lt; Title & gt; & Lt; / Title & gt; & Lt; / Head & gt; & Lt; Body & gt; @ ServerInfo.GetHtml () & lt; / Body & gt; & Lt; / Html & gt;  

Comments