|
At CodeProject we spend an awful lot of time playing with room heaters, or as others like to call them, "servers". Over the years we've seen it all, some of it smoking, most of it usually working just nicely until something happens.
What that something is can be hard to find so we've created a quiet place for those battle scarred and frustrated to get a little help.
cheers,
Chris Maunder
The Code Project | Co-founder
Microsoft C++ MVP
|
|
|
|
|
My company has just bought a data server and would like to start offering cloud services. I have been tasked to make the best choice of what windows server to go with. Kindly advise on which server is appropriate between Windows Server 2022 vs 2019 vs 2016. Thank you
|
|
|
|
|
Kiiza Trevour wrote: start offering cloud services.
That is an interesting statement. Can't imagine what that might mean. Hosting?
Kiiza Trevour wrote: Windows Server 2022 vs 2019 vs 2016.
Well certainly not 2022 because the developers are unlikely to have actually developed on that server. Because they spent the last year creating it, and of course 2022 wasn't out then.
|
|
|
|
|
Kiiza Trevour wrote: My company has just bought a data server and would like to start offering cloud services. I have been tasked to make the best choice of what windows server to go with. Services to other customers or something internal to the company? Sorry, but if this is for the public and you have to ask this question, you're company is not ready for it. If it's internal only... never mind.
Linux is the correct answer btw.
Jeremy Falcon
|
|
|
|
|
1. Cloud VPS
Cloud VPS is an online virtual private server provider. You can host your website on their servers and pay monthly for access to the service. Your web space is stored on their own data centers across the globe.
2. Dedicated Server
What is best way to get newyork vps?
Dedicated server is a physical computer that is dedicated to hosting websites. It comes with its own operating system and hardware. It's not shared with any other users.
3. Virtual Private Server (VPS)
Virtual Private Server is a type of cloud computing where you have root access to a server. You can install software applications and configure them however you want. Most companies offer unlimited bandwidth and disk space.
4. Shared Hosting
Shared hosting is when many people share a single server. Each user pays a certain amount each month and gets a specific amount of bandwidth and disk space. Bandwidth refers to how much data you can transfer per second. Disk Space refers to how much storage space you have.
5. Managed Hosting
Managed hosting is when someone else takes care of the maintenance of your server. You only need to worry about installing and configuring your software.
6. Reseller Hosting
Reseller hosting is when you resell services to customers who use those services themselves. For example, if you sell web hosting services, then you would provide web hosting services to customers.
7. Colocation
Colocation is when your web server is physically located at a colo center. A colo center is where internet providers store their equipment.
|
|
|
|
|
7 is the best if you want control of you own server. Otherwise it is a game of maybe.
|
|
|
|
|
|
We have an APP running in IIS.
When the process is using 500MB, the web site stopped and we have to reboot.
Any help?
|
|
|
|
|
Luis M. Rojas wrote: When the process is using 500MB, the web site stopped and we have to reboot
Which process? 500MB of what? What does "the web site stopped" mean? Have you looked at any of the server logs?
|
|
|
|
|
The dot net service which is running on iis the APP, after a few minutes says: Service not available, error 503.
|
|
|
|
|
There's a secret error somewhere in your secret code. You need to fix that.
Seriously, how do you expect anyone to help you fix a problem in code we cannot see, running on a server we have no access to, when you haven't even bothered to check the Windows event logs for the details of the error?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
There is not code my friend.
It is an APP, that is running using IIS, and the process increase memory to 500MB and stopped
|
|
|
|
|
And what precisely do you think an "APP" is made out of?
If it's a third-party app, then you need to contact the person who wrote it for support.
If it's something you've written yourself, then you need to debug it yourself, or at least provide some relevant details here.
Nobody can help you fix a problem with an "app" we can't see running on a server we can't access.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hi everyone.
I have a windows server with suspended processes. However, even with administrator privileges, I can't kill them. Everybody knows some idea without restart the server?
I used command taskkill but it doesn't work.
|
|
|
|
|
Try
taskkill /pid pid /t /f
|
|
|
|
|
It didn't work. Give me access denied.
|
|
|
|
|
Who owns the process? If it's SYSTEM, you're not going to be able to kill it.
|
|
|
|
|
It doesn't a system process, but it's a application process.
Btw, can a app when give a "exception" suspend a running process?
|
|
|
|
|
That's strange, because you can kill any process you own, even if it's suspended.
I didn't ask if is was a system process. I asked what account the process was running under. Go the Task Manager, Details tab, find the process that's suspended, and look under the "User name" column for the account that owns the process. If it shows your username, you can kill it.
|
|
|
|
|
Please provide me instruction to get free source code
|
|
|
|
|
Read this site a lot.
Then ask logical questions that are "logical" to a beginner (if you are a beginner), then get flamed by self-delusional idiots (that have vast amounts of points on this site) that tell you how stupid that they think you are, then occationally get an incredibly useful answer from a few of the old-timers here. Some try to verbally kick you. Some try to gently guide you. Wading through the idiots to get to the useful is like finding gold.
Or, you could search duckduckgo.com (which is kind of Bing blindfolded) for +"Active" +"eCommerce" +"Flutter App" .
Maybe I will buy this company and delete the accounts of the self-engrossed bullies.
|
|
|
|
|
How to send multiple message with SMTP
|
|
|
|
|
You send one message, then you send another message, and so on.
Your question makes no sense.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
You make a list of the messages that you intend to send and then you send them one at a time.
Your question makes perfect sense.
Start here: SMPP protocol with c at DuckDuckGo[^]
And then read a lot.
SMTP, I guess as you might be attempting to do, is just sending email. Not what I have done recently, but this is how I would approach it.
Thank you for asking.
|
|
|
|
|
Member 15078716 wrote: Your question makes perfect sense. This is in a servers forum and the title says SMTP server, which suggests to those understanding context, he would want to talk about the server side of things. Rather the question is about the SMTP protocol itself and presumably from a client application no less.
I also think most folks would've received this question better if he attempted to explain the derailment from the topic of the forum.
Jeremy Falcon
|
|
|
|