Results 1 to 3 of 3
Hey guys,
I am trying install mysql on fedora core 2.0 but i get the following messages. I thought Installed correttly, but I was wrong. I can't see mysqladmin command, ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-05-2004 #1Just Joined!
- Join Date
- Aug 2004
- Posts
- 42
mysql installing problem using RPM
Hey guys,
I am trying install mysql on fedora core 2.0 but i get the following messages. I thought Installed correttly, but I was wrong. I can't see mysqladmin command, plus if i type mysql on the terminal i get command not found.
Any hints or any idea with this messages.
suresh
[root@localhost local]# rpm --install MySQL-server-4.0.21-0.i386.rpm
warning: MySQL-server-4.0.21-0.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f 5
Installing all prepared tables
041005 17:44:51 Warning: Asked for 196608 thread stack, but got 126976
041005 17:44:51 /usr/sbin/mysqld: Shutdown Complete
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h localhost.localdomain password 'new-password'
See the manual for more instructions.
NOTE: If you are upgrading from a MySQL <= 3.22.10 you should run
the /usr/bin/mysql_fix_privilege_tables. Otherwise you will not be
able to use the new GRANT command!
Please report any problems with the /usr/bin/mysqlbug script!
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at https://order.mysql.com
[root@localhost local]# myql
-bash: myql: command not found
[root@localhost local]# mysql
-bash: mysql: command not found
[root@localhost local]# mysqld start
041005 17:45:26 Warning: Asked for 196608 thread stack, but got 126976
041005 17:45:26 Can't start server: Bind on TCP/IP port: Address already in use
041005 17:45:26 Do you already have another mysqld server running on port: 3306 ?
041005 17:45:26 Aborting
041005 17:45:26 mysqld: Shutdown Complete
- 10-06-2004 #2Linux Newbie
- Join Date
- Apr 2004
- Posts
- 158
Hi,
Are you upgrading or is this a new install?
You also need the mysql-4.xxx rpm (client stuff, like mysql...)
Regards
Jonas
- 10-19-2004 #3Linux Enthusiast
- Join Date
- Jun 2002
- Location
- San Antonio
- Posts
- 621
It seems mysql is still running on your machine. Run:
killall safe_mysqld && killall mysqld
If that doesn't work, then -9 them:
killall -9 safe_mysqld; killall -9 mysqld
After you do that, mysqld should start up. In order to run mysql, you need to install MySQL-clients-4.0.21.rpm
Let us know if that works.
Best,
SamuelI respectfully decline the invitation to join your delusion.


Reply With Quote
