Bonjour,

Je n'arrive pas à lancer le script " mysql_install_db " afin de contruire ma base et mes tables car il me sort une erreur alors que mon install c'est bien passée.

Mon fichier de configuration

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS="-O3" CXX=gcc CXXFLAGS="-O3 -felide-constructors -fno-exceptions -fno-rtti" \
         ./configure --prefix=/usr/local/mysql-5.0.22 \
        --localstatedir=/data \
        --enable-assembler \
        --enable-shared \
        --with-mysqld-ldflags=-rdynamic \
        --with-charset=latin1 \
        --with-mysqld-user=mysql \
        --with-openssl \
        --with-csv-storage-engine \
        --with-archive-storage-engine \
        --with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock
apres un make puis un make install je tente d'intaller la base mysql :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
[root@localhost mysql]# ls
bin  include  info  lib  libexec  man  mysql-test  share  sql-bench
[root@localhost mysql]# cd bin/
[root@localhost bin]# ./m ysql_install_db
Didn't find /usr/local/mysql/data/bin/mysqld
You should do a 'make install' before executing this script
[root@localhost bin]#
hum une idée ????