skip to Main Content

make: pg_config: Not a directory make: *** No rule to make target 'installcheck' – Ubuntu

I installed postgres version 13 from source code using wget https://ftp.postgresql.org/pub/source/v13.5/postgresql-13.5.tar.gz && tar -xvf postgresql-13.5.tar.gz && rm -f postgresql-13.5.tar.gz ./configure --enable-debug --enable-cassert --prefix=$(pwd) CFLAGS="-ggdb -Og -fno-omit-frame-pointer" make install It installed sucessfully and I tried installing AGE using git clone https://github.com/apache/age.git…

VIEW QUESTION

SSL VirtualHost showing test page – Apache

I am using Apache httpd and have the following VirtualHost configuration: <VirtualHost *:443> ServerName www.test.site ServerAlias test.site DocumentRoot /var/www/test.site/html ErrorLog /var/www/test.site/log/error.log CustomLog /var/www/test.site/log/requests.log combined SSLEngine on SSLCertificateFile /etc/pki/tls/certs/ca.crt SSLCertificateKeyFile /etc/pki/tls/private/ca.key <Directory /var/www/html> AllowOverride none Order Allow,Deny Allow from all </Directory>…

VIEW QUESTION
Back To Top
Search