This is a discussion on MySQL-Query-Browser Installation within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> I am currently migrating a db from SQL Server & MySQL and ? (front end yet to be decided ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I am currently migrating a db from SQL Server & MySQL and ? (front end yet to be decided upon) As I familiarise myself with MySQL populating tables etc can be quite clumbersome. After reading the MySQL site it appears the "Query Browser" is the correct tool which I've downloaded, extracted and followed the instruction for installing it... without success, it doesn't work. To clarify what I've done I've: Downloaded: mysql-query-browser-1.1.6-linux.tar.gz Extracted it using: tar -vzxf mysql-query-browser-1.1.6-linux.tar.gz In the doc directory there is a html file that explains the installation procedure under Linux... "To install MySQL Query Browser, run this command: shell> tar --directory=/opt -xzvf mysql-query-browser-version-linux.tar.gz This installs the application binary in /opt/mysql-query-browser/bin. Change into that directory and run mysql-query-browser to start the application. You can replace /opt with your desired installation path." I have done all of this and the files were extracted to /opt/mysql-query-browser as expected. The question is, how do I run the application ? -- Thanks Murph |
| ||||
| The best way is to create a symbolic link in /usr/bin that points to the binary file. This way it will run for all users from any directory: As root, type: ln -s /opt/mysql-query-browser/mysql-query-browser /usr/bin/mysql-query-browser (That should all be on one line, with a space between the two file locations) Now, to run it, type mysql-query-browser from any directory as any user. You can type as far as 'mysql-q' and press tab, to complete the filename. > I have done all of this and the files were extracted > to /opt/mysql-query-browser as expected. > > The question is, how do I run the application ? -- Mike Argy Custom Office solutions and Windows/UNIX programs |