CentOS – Config
- Démarrage automatique du service apache:
$systemctl enable httpd $systemctl is-enabled httpd systemctl is-enabled httpd
- autoriser port http
firewall-cmd --permanent --zone=public --add-service=http
- Insallation Postgre (https://wiki.postgresql.org/wiki/YUM_Installation)
nano /etc/yum.repos.d/CentOS-Base.repo
- Section « update » ajouter la ligne « exclude=postgresql* »
yum localinstall http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm yum list postgres yum install postgresql93-server.x86_64 service postgresql-9.3 initdb chkconfig postgresql-9.3 on #initdb /usr/pgsql-9.3/bin/postgresql93-setup initdb #autostart chkconfig postgresql-9.3 on systemctl is-enabled postgresql-9.3
Laisser un commentaire