Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 01:41 AM
08-06-2004 01:41 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 02:22 AM
08-06-2004 02:22 AM
SolutionAlmost any rpm can be found at rpmfind.net
Also Red Hat has copies of its certified mysql releases well hidden on its site.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2004 10:51 AM
08-08-2004 10:51 AM
Re: Mysql
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 03:03 AM
08-18-2004 03:03 AM
Re: Mysql
you it is really pretty simple to compile things together.
download the source then,
(I PREFER THIS LOCATION )
./configure --prefix=/usr/local/mysql
by default rpms general shove crap into /sbin/ or /usr/sbin/
/usr/local is for anything I install above and beyond the base RH9.
If you must, RH9 packages on the CD's MYSQL I am just not sure which version.. I general get the latest SRC from http://www.mysql.com/ SNAPSHOTs. I prefer STABLE4 for now until the PHP libs and apache libs withit.
see my compile script here..
#!/bin/bash
wget http://www.mysql.com/get/Downloads/MySQL-4.0/mysql-4.0.18.tar.gz/from/http:
//mirror.services.wisc.edu/mysql/
tar -xzvf mysql-4,0.18.tar.gz
cd mysql-4.0.18
./configure --prefix=/usr/local/mysql
make
make install
Pretty simple cut and paste installation.. You may need to modify it to check current mysql revision level. I rebuild my SNORT box periodically and have to modify the version level parameter to "wget" and "tar extract" the correct file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 03:04 AM
08-18-2004 03:04 AM
Re: Mysql
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2004 06:30 PM
08-22-2004 06:30 PM
Re: Mysql
MySQL rpm is available in the RH9 CDBundle. itself.If you have not installed mySQL at the time of OS installation you can easily install it using the addremove program .It will prompt you corresponding CD which contains the RPM Package for mysql
regards
SK