Software » PostgreSQL 8.1
Catégorie:  
   
PostgreSQL 8.1
Publié le 06/01/2006 @ 12:49:28,
Par cauet
Voilà que je veux installer postgres 8.1..

Je reprendre un ancien de PV de notre cher rfr :


# All other connections by UNIX sockets
local all all ident sameuser
#
# All IPv4 connections from localhost
host all all 127.0.0.1 255.255.255.255 ident sameuser


par


# All other connections by UNIX sockets
local all all md5
#
# All IPv4 connections from localhost
host all all 127.0.0.1 255.255.255.255 md5


Voilà, que je veux redémarrer le serveur..
Je me ramasse :

dns:/etc/postgresql/8.1/main# /etc/init.d/postgresql-8.1 restart
Stopping PostgreSQL 8.1 database server: main.
Starting PostgreSQL 8.1 database server: mainPassword:
Password:
Password:
Password:
Password:
Password:
Password:
Password:
Password:
(CTRL^C)
dns:/etc/postgresql/8.1/main#
dns:/etc/postgresql/8.1/main#



J'ai essayé tous les passwords.. aucun ne marche (root, mes anciens users postgres 7.1..)

Bref, que faire ?
Merci
   
PostgreSQL 8.1
Publié le 06/01/2006 @ 13:21:39,
Par rfr
Tu peux nous donner le contenu de ton script de démarage? En fait, ce que tu devrais donner, c'est le password du user que debian a crée lors de l'installation (je suppose que c'est une debian).

Sinon, tu remets la ligne

host all all 127.0.0.1 255.255.255.255 ident
histoire de voir si ça marche et on en reparle après ...
To die is a time consuming activity, it often takes a lifetime (but some are faster than others ... though)
   
PostgreSQL 8.1
Publié le 07/01/2006 @ 00:32:23,
Par cauet
J'matte à ca Lundi :smile:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 11:49:55,
Par cauet
Voilà, ce coup ci je dois y garder :banzai:


host all all 127.0.0.1 255.255.255.255 ident

# TYPE DATABASE USER CIDR-ADDRESS METHOD

# "local" is for Unix domain socket connections only
local all all ident sameuser
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5


Je vais essayer avec:

host all all 127.0.0.1 255.255.255.255 ident

   
PostgreSQL 8.1
Publié le 18/01/2006 @ 11:59:57,
Par cauet
Pour les autres:

http://www.coagul.org/article.php3?id_article=314

super article apparament.. on verra dans 15 mins :ddr555:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 13:35:45,
Par cauet

Ben ca marche po..

# Database administrative login by UNIX sockets

# All other connections by UNIX sockets


host all all 127.0.0.1 255.255.255.255 ident

# TYPE DATABASE USER CIDR-ADDRESS METHOD

# "local" is for Unix domain socket connections only
host all all 127.0.0.1 255.255.255.255 md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5



rfr? :whistle:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 13:36:23,
Par cauet
j'ai essayé avec md5 (tutoriel) et ident (rfr powaa) aucun ne fonctionne.
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 13:58:27,
Par cauet
Bon, ouf !
J'ai fais un joli mix de notre ancien PV, et là, ca marche.

Mais je dois faire cela:

dns:/usr/share/phppgadmin/conf# /etc/init.d/postgresql-8.1 start
Starting PostgreSQL 8.1 database server: mainPassword:
dns:/usr/share/phppgadmin/conf#

CTRL+C pour killer la demande de password, mais pourtant le serveur est lancé.
Me demande à quoi sert ce truc..

J'ai peur au prochain reboot d'un non rédémarrage.. ou d'une message pass sur l'écran local du serveur.. :heink:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 13:59:59,
Par gizmo
Tu ne te connectes qu'à distance?
Concept vivant.
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 15:39:52,
Par cauet
a?
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 16:11:30,
Par gizmo
à la db...
Concept vivant.
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 17:00:02,
Par cauet
non, que en local.. :ohwell:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 17:11:20,
Par rfr
Post un peu le contenu du fichier /etc/init.d/postgres qu'on voit ce qu'il fait...

Reponse demain, pas d'adsl à la maison pour le moment :sad:
To die is a time consuming activity, it often takes a lifetime (but some are faster than others ... though)
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 18:15:41,
Par cauet
#!/bin/bash

. /usr/share/postgresql-common/init.d-functions

VERSION=8.1

case "$1" in
start)
start $VERSION
;;
stop)
stop "$VERSION"
;;
restart)
restart "$VERSION"
;;
force-reload | reload)
reload $VERSION
;;
status)
status $VERSION
;;
autovac-start)
autovac_start $VERSION
;;
autovac-stop)
autovac_stop $VERSION
;;
autovac-restart)
autovac_restart $VERSION
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload|status|autovac-start|autovac-stop|autovac-restart}"
exit 1
;;
esac

exit 0
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 20:44:28,
Par ovh
Poste le contenu de ça aussi :
/usr/share/postgresql-common/init.d-functions
:grin:
Je n'ai rien à voir avec www.ovh.com
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 21:27:46,
Par pipo
Poste un peu ton /etc/shadow et /etc/passwd stp.

./Make sex | ( . ) ( . ) | Je n'ai rien à voir avec Zion l'informaticien gay
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 21:28:57,
Par cauet
Poste le contenu de ça aussi :
/usr/share/postgresql-common/init.d-functions
:grin:


J'allais le dire :grin:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 21:31:03,
Par cauet
Poste un peu ton /etc/shadow et /etc/passwd stp.



/etc/shadow

pipo:*:1pi2po52le9:0:9ner99dz99:7:::

/etc/passwd

pipo:x:6:12:man:/dev/null


:ddr555:
   
PostgreSQL 8.1
Publié le 18/01/2006 @ 21:34:53,
Par pipo


/etc/shadow

pipo:*:1pi2po52le9:0:9ner99dz99:7:::

/etc/passwd

pipo:x:6:12:man:/dev/null



:ddr555:


Ouééé :dawaballoon: je suis un garçon :dawa:
./Make sex | ( . ) ( . ) | Je n'ai rien à voir avec Zion l'informaticien gay
   
PostgreSQL 8.1
Publié le 19/01/2006 @ 11:48:31,
Par cauet
T'a une idée pour cette e"'"' de demande de password rfr? cai pénible :kiki:
Répondre - Catégorie:  
Informaticien.be - © 2002-2024 AkretioSPRL  - Generated via Kelare
The Akretio Network: Akretio - Freedelity - KelCommerce - Votre publicité sur informaticien.be ?