On Wed, 23 Feb 2005 09:52:39 +0100, Lorenzo Palliser Barber <[EMAIL PROTECTED]> wrote: > Thanks Pascal. > > When I install SqlServer in my Mini, following the instruccions of > http://www.mythtv.info/moin.cgi/MythOnMacOsx , i do this: > > 6. MySQL > Again, there's nothing too complicated. You only need the client > library from MySQL, so these commands turn off a lot of the parts that > the installation offers. > curl > http://mysql.mirrors.pair.com/Downloads/MySQL-4.1/mysql-4.1.9.tar.gz | > tar -xz > cd mysql-4.1.9 > ./configure --disable-static --without-debug \ > --without-server --without-geometry \ > --without-extra-tools --without-docs \ > --without-man --without-bench > make LDFLAGS="-no-undefined -Wl,-prebind,-seg1addr,0xC2000000" > sudo make install > cd .. > And the problem persist (i can�t locate the MySQL database).
Redo this entire step, but remove the --without-server part from the ./configure line. Those directions are for installation of a frontend on a mac, assuming that there is a separate backend server already in place. Since you don't have a separate backend server you'll need to install the MySQL server on your mac (and adding --without-server to the ./configure line prevents installation of the server). After you have installed MySQL you'll need to follow the instructions here to configure the mythtv database: http://www.mythtv.org/docs/mythtv-HOWTO-6.html#ss6.2 Once that's complete you'll need to edit /usr/share/mythtv/mysql.txt to set these variables: DBHostName=127.0.0.1 DBUserName=mythtv DBPassword=mythtv DBName=mythconverg That should get your frontend up and running. Brad _______________________________________________ mythtv-users mailing list [email protected] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
