So I have a new VPS that only has the bare bones. Not what I was expecting at all and I may be well past my depth but I'm trying to get the essentials running. The host is Swedish and aggressively unhelpful.
uname -a output:
Linux myhostname.com 2.6.32-431.el6.i686 #1 SMP Fri Nov 22 00:26:36 UTC 2013 i686 i686 i386 GNU/Linux
So I was trying to locate and start Apache. apachectl start is unknown. lsof -nPi | grep ":80 (LISTEN)" has no output. There's no reference to httpd or apache2 in /etc/init.d/.
So I started by trying to install Apache like so:
$ yum install httpd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.sunet.se
* extras: ftp.sunet.se
* updates: ftp.sunet.se
Setting up Install Process
No package httpd available.
Error: Nothing to do
rpm -qa | grep httpd has no output so I checked /etc/yum.conf and I see httpd in exclude line:
exclude=bind-chroot courier* dovecot* exim* filesystem httpd* mod_ssl* mydns* mysql* nsd* php* proftpd* pure-ftpd* ruby* spamassassin* squirrelmail*
I'm stuck as to what to do. I'm pretty sure Apache is not present and PHP as well. MySQL is running fine.
Questions
- Since the host is ignoring my emails what would be the harm in removing
httpdfrom the ignore list? - Also if
yum.confhas no repositories listed do I need to add them?