Installation du système
Bases de données
Creation bases postgresql
[root@ecampusdev lib]# su - postgres
-bash-4.1$ psql
psql (8.4.13)
Saisissez « help » pour l'aide.
postgres=# create database uportal4;
postgres=# create USER uportal with password 'monmotdepasse';
CREATE ROLE
postgres=# grant all privileges on database uportal4 to uportal;
GRANT
postgres-# \q
-bash-4.1$ exit
Autoriser connection tcp/ip a postgresql
Il faut ouvrir le port 5432 (tcp et udp) dans iptables
Modification de /var/lib/pgsql/data/pg_hba.conf et /var/lib/pgsql/data/postgresql.conf
GIT
git config --global user.name "Gaboret"
git config --global user.mail "Christophe.Gaboret@tem-tsp.eu"
cd ~/.ssh/
ssh-keygen -t rsa -C "Christophe.Gaboret@tem-tsp.eu"
more ~/.ssh/id_rsa.pub
On rentre sa cle publique sur son compte dans https://github.com/settings/ssh
ssh -T git@github.com
Hi Gaboret! You've successfully authenticated, but GitHub does not provide shell access.