Installing SQL on Linux VPS

LittleZ

Guppy
I got stuck while installing SQL on my Linux VPS the error, is in bold and Im not to sure what to do, install libstdc++ or any other ideas?

[root@ninny mysql-standard-4.1.21-pc-linux-gnu-i686-icc-glibc23]# scripts/mysql_install_db --user=mysq
Installing all prepared tables
./bin/mysqld: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: Noh file or directory
./bin/mysql_create_system_tables: line 663: 14386 Broken pipe cat
<<END_OF_DATA
use mysql;
set table_type=myisam;
$c_d
$i_d

$c_h
$i_h

$c_u
$i_u

$c_f
$i_f

$c_t
$c_c

$c_ht
$c_hc
$c_hr
$c_hk

$c_tzn
$i_tzn
$c_tz
$i_tz
$c_tzt
$i_tzt
$c_tztt
$i_tztt
$c_tzls
$i_tzls
END_OF_DATA

Installation of system tables failed!

Examine the logs in ./data for more information.
You can also try to start the mysqld daemon with:
./bin/mysqld --skip-grant &
You can use the command line tool
./bin/mysql to connect to the mysql
database and look at the grant tables:
 
There seems to be a problem creating symbolic links, or am I doing something silly?

[root@ninny local]# ls -s /usr/local/mysql-max-5.0.24a-linux-i686-glibc23 mysql
ls: mysql: No such file or directory
/usr/local/mysql-max-5.0.24a-linux-i686-glibc23:
total 92
20 COPYING 4 configure 4 man 4 support-files
8 EXCEPTIONS-CLIENT 4 data 4 mysql-test 4 tests
8 INSTALL-BINARY 4 docs 4 scripts
4 README 4 include 4 share
4 bin 4 lib 4 sql-bench
[root@ninny local]#
 
Back
Top