TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Making Server with open source?

2 点作者 hiteshtr超过 11 年前
My organization currently own a server from Fujitsu with cent-OS 6, but Redhat hinder us to install open source software by saying that they will not provide support if we install patches and software's from untested sources. So want to know what is the best list of open source software’s to implement a server with Ubuntu which should have mail server, firewall or watch-guard, ldap and webserver.

2 条评论

akbar501超过 11 年前
Mail: Postfix (my go to SMTP server). However, a lot of people like Exim as well, but I&#x27;ve never got into it. Sendmail is powerful, but unwieldy. Postfix is very simple to configure a basic email server, especially b&#x2F;c RedHat does such a great job with the defaults. However, be careful with security if you expose your server to the Internet.<p>Firewall: IPTables if you&#x27;re running a firewall on the box. However, if you&#x27;re running a firewall edge of network, then I&#x27;d go with a dedicated solution like Shoreline, Smoothwall or ClarkConnect.<p>LDAP: OpenLDAP. By itself, OpenLDAP is not difficult. However, as you add layers to it like TLS and Kerberos, etc. then the configuration becomes obtuse.<p>Web server: Nginx (the current king), but Apache is still a strong choice. Nginx works great with the newer frameworks where you&#x27;re running it as a proxy for your application server plus as a high performance static file server. Apache is still solid if you&#x27;re developing in PHP.
评论 #7120483 未加载
phantom_oracle超过 11 年前
Does Redhat offer a list of packages you can install from some type of app store?<p>You should firstly find out what they mean by &quot;untested sources&quot;, as this could mean building code from source&#x2F;tarballs and not using their 1-click installer for software (where a lot of the software will likely be open source in any case).