Skip to main content

做开源软件的人吃什么

发信人: cccpwx (暱稱太短), 信区: Military
标  题: Re: 做开源软件的人吃什么?
发信站: BBS 未名空间站 (Sun Mar 11 12:28:04 2018, 美东)

Linux不是开源的吗,为什么RedHat的服务器版那么贵?

有很多优秀的开源软件,都有第三方的服务商,软件本身不要钱,他们卖的是服务,为
开软软件的使用和维护等提供技术支持,这个是要花钱的。代表性的有mysql
enterprise,Redhat等淘宝也好,腾讯也好,他们毕竟资金雄厚,养得起技术人员,可
以随意定制碾压这些开源产品,但是还有很多中小公司,他们既不想花钱买商业产品,
又不想花钱养技术服务团队,他们想尽可能小的代价来享受到商业产品一样的可靠服务
。针对这种需要,第三方的服务方就有市场了。第三方的服务方能让有需要的企业在两
种代价里寻求平衡,并且有效控制成本他们想的是开源的嘛,不花钱,最好是拿来部署
就可以稳定可靠的工作,给他创造效益。其实几千块还是不贵的,想来我们的客户买
mysql,10多万,也没见眨眼睛啊,虽然从生产到现在从未出过问题。但哪怕有一丁点
问题,别人服务方响应的非常快。不解决问题,服务方的工作人员都要加班加点

作者:知乎用户
链接:https://www.zhihu.com/question/23916511/answer/28947397
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...