Search found 7 matches

by bitwiz
2019/08/28 22:13:51
Forum: CentOS 7 - General Support
Topic: Can't install phpmyadmin
Replies: 11
Views: 7253

Re: Can't install phpmyadmin

I'm posting a slightly modified version of the yum command I use since I use both remi and epel repos... this avoids the package conflicts.

Code: Select all

yum --enablerepo=remi --disablerepo=epel install phpMyAdmin
by bitwiz
2018/04/08 20:58:36
Forum: CentOS 7 - Software Support
Topic: turn on the NameVirtualHost directive
Replies: 11
Views: 2900

Re: turn on the NameVirtualHost directive

You only need to specify NameVirtualHost in /etc/httpd/conf/httpd.conf

Servers host websites on port 80 (http) and port 443 (https for SSL) so our httpd.conf has these two entries:

Code: Select all

NameVirtualHost *:80
NameVirtualHost *:443
by bitwiz
2018/04/08 20:50:11
Forum: CentOS 7 - Software Support
Topic: virt-manager unable to create new guest
Replies: 5
Views: 1622

Re: virt-manager unable to create new guest

Switching virt_use_sanlock off in selinux did the trick. I restarted libvirtd afterward and now I can create new VMs again. Hope this is correct.
by bitwiz
2018/04/07 13:35:14
Forum: CentOS 7 - Software Support
Topic: turn on the NameVirtualHost directive
Replies: 11
Views: 2900

Re: turn on the NameVirtualHost directive

The line: NameVirtualHost *:80 ...turns on Apache's ability to serve websites by name on port 80. In this case, the asterisk means Apache will serve websites through any IP address enabled in networking on the server. The default config file for apache is: /etc/httpd/conf/httpd.conf At the bottom of...
by bitwiz
2018/04/07 12:48:49
Forum: CentOS 7 - Software Support
Topic: virt-manager unable to create new guest
Replies: 5
Views: 1622

Re: virt-manager unable to create new guest

It is, but huh, this is the status. Some errors in there... systemctl status libvirtd -l ● libvirtd.service - Virtualization daemon Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled; vendor preset: enabled) Drop-In: /etc/systemd/system/libvirtd.service.d └─unlimited-core.conf Active:...
by bitwiz
2018/04/06 12:19:55
Forum: CentOS 7 - Software Support
Topic: virt-manager unable to create new guest
Replies: 5
Views: 1622

Re: virt-manager unable to create new guest

I also just discovered I'm getting this error when I try to start a VM with virsh start. error: Failed to start domain [domain] error: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout e...
by bitwiz
2018/04/06 04:42:52
Forum: CentOS 7 - Software Support
Topic: virt-manager unable to create new guest
Replies: 5
Views: 1622

virt-manager unable to create new guest

On CentOS 7 I'm getting the following (cryptic) error from virt-manager as I try to create a new Virtual Machine. All updates are installed and current. Does anyone know what this means or how to debug? Unable to complete install: 'Did not receive a reply. Possible causes include: the remote applica...