| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 22 Dec 2025 02:35:38 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090130102958
location: https://web.archive.org/web/20090130102958/https://mysql5.darwinports.com/
server-timing: captures_list;dur=0.452375, exclusion.robots;dur=0.032641, exclusion.robots.policy;dur=0.024295, esindex;dur=0.010147, cdx.remote;dur=1560.382750, LoadShardBlock;dur=1955.857270, PetaboxLoader3.datanode;dur=1715.587032, PetaboxLoader3.resolve;dur=197.522017
x-app-server: wwwb-app210-dc8
x-ts: 302
x-tr: 3544
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app210; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Mon, 22 Dec 2025 02:35:39 GMT
content-type: text/html
x-archive-orig-date: Fri, 30 Jan 2009 10:28:37 GMT
x-archive-orig-server: Apache
x-archive-orig-vary: Accept-Encoding
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Fri, 30 Jan 2009 10:29:58 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_7_20090130063634_crawl100-c/51_7_20090130102744_crawl103.arc.gz
server-timing: captures_list;dur=0.511063, exclusion.robots;dur=0.018057, exclusion.robots.policy;dur=0.008717, esindex;dur=0.010379, cdx.remote;dur=61.221793, LoadShardBlock;dur=552.006192, PetaboxLoader3.resolve;dur=729.828309, PetaboxLoader3.datanode;dur=189.590892, load_resource;dur=399.872129
x-app-server: wwwb-app210-dc8
x-ts: 200
x-tr: 1080
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Mysql5 version 5.0.67 - How to Download and Install on Mac OS X
|
|||||||||
Friday the 30th of January, 2009 |
|||||||||
mysql5 most recent diffversion 5.0.67
Scroll down toward the bottom of the page to get installation instructions for mysql5. The raw portfile for mysql5 5.0.67 is located here: https://mysql5.darwinports.com/dports/databases/mysql5/Portfile Find related portfiles with the unique DarwinPorts.com search feature. Check for any related Fink projects here: pdb.finkproject.org/pdb/package.php/mysql5 # $Id: Portfile 39951 2008-09-14 02:38:18Z ryandesign PortSystem 1.0 Name: mysql5 Version: 5.0.67 revision 1 set branch [join [lrange [split ${version} .] 0 1] .] Homepage: https://www.mysql.com/ Category: databases Platform: darwin Maintainers: ryandesign distname mysql-${version} use_parallel_build yes Description: Multithreaded SQL database server Long Description: MySQL is an open-source, multi-threaded SQL database with a command syntax very similar to mSQL. master_sites https://distfiles.macports.org/${dist_subdir} https://mysql.mirrors.pair.com/Downloads/MySQL-${branch}/ https://mysql.he.net/Downloads/MySQL-${branch}/ https://mysql.orst.edu/Downloads/MySQL-${branch} https://mysql.oss.eznetsols.org/Downloads/MySQL-${branch}/ https://mirrors.sunsite.dk/mysql/Downloads/MySQL-${branch}/ https://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-${branch}/ https://ftp.plusline.de/mysql/Downloads/MySQL-${branch}/ checksums md5 7164483a5ffb8f7aa59b761c13cdbd6e sha1 168090a4698a3a5efa2f2c9380a4352d4433d377 rmd160 05d38a5f8d91cb4dac1ee446af96b28163bd3722 depends_lib port:zlib port:openssl set major_version [strsed ${version} {s/\..*$//}] set mysql mysql${major_version} set libdir ${prefix}/lib/${mysql} set bindir ${libdir}/bin set dbdir ${prefix}/var/db/${mysql} set sysconfdir ${prefix}/etc/${mysql} set mysqluser mysql patchfiles patch-mysql_secure_installation.sh.diff post-patch { reinplace s% } configure.args --mandir=${prefix}/share/man --infodir=${prefix}/share/info --localstatedir=${dbdir} --libdir=${libdir} --bindir=${bindir} --includedir=${prefix}/include/${mysql} --datadir=${prefix}/share/${mysql} --sysconfdir=${sysconfdir} --with-zlib-dir=${prefix} --with-openssl=${prefix} --with-extra-charsets=complex --with-federated-storage-engine --with-unix-socket-path=${prefix}/var/run/${mysql}/mysqld.sock --with-mysqld-user=${mysqluser} --without-bench --enable-thread-safe-client Variant: server { # Create a startupitem to start/stop the server startupitem.create yes startupitem.start "${prefix}/share/${mysql}/mysql/mysql.server start" startupitem.stop "${prefix}/share/${mysql}/mysql/mysql.server stop" } pre-destroot { # Some directories we must have in all cases xinstall -m 755 -d ${destroot}${sysconfdir} destroot.keepdirs-append ${destroot}${sysconfdir} # Setup only for server if { [variant_isset server] } { addgroup ${mysqluser} set gid [existsgroup ${mysqluser}] adduser ${mysqluser} gid=${gid} realname=MySQL\ Server # Some directories we must have only if we're running as a server xinstall -m 755 -o root -d ${destroot}${prefix}/var/run xinstall -m 755 -o ${mysqluser} -g ${mysqluser} -d ${destroot}${dbdir} ${destroot}${prefix}/var/run/${mysql} destroot.keepdirs-append ${destroot}${dbdir} ${destroot}${prefix}/var/run/${mysql} } } post-destroot { delete ${destroot}${prefix}/mysql-test # Fix paths in manpages and sample configuration files foreach manpage [glob -type f ${destroot}${prefix}/share/man/man\[1-9\]/*] { reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${manpage} } foreach samp_conffile [glob -type f ${destroot}${prefix}/share/${mysql}/mysql/my-*.cnf] { reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${samp_conffile} } # Symlink mysql binaries into bin directory, with ${major_version} appended to the name foreach f [glob -tails -directory ${destroot}${bindir} my*] { ln -sf ${bindir}/${f} ${destroot}${prefix}/bin/${f}${major_version} } } post-install { if { [variant_isset server] } { ui_msg "******************************************************" ui_msg "* In order to setup the database, you might want to run" ui_msg "* sudo -u ${mysqluser} mysql_install_db5" ui_msg "* if this is a new install" ui_msg "******************************************************" } } livecheck.check regex livecheck.url https://dev.mysql.com/ livecheck.regex >GA (${major_version}\\.\[0-9.\]+)< If you haven't already installed Darwin Ports, you can find easy instructions for doing so at the main Darwin Ports page. Once Darwin Ports has been installed, in a terminal window and while online, type the following and hit return:
% cd /opt/local/bin/portslocation/dports/mysql5You will then be prompted for your root password, which you should enter. You may have to wait for a few minutes while the software is retrieved from the network and installed for you. Y ou should see something that looks similar to: - Make sure that you do not close the terminal window while Darwin Ports is working. Once the software has been installed, you can find further information about using mysql5 with these commands: % man mysql5 Where to find more information:
This website is back-ended by DB5, the best database in the business,
|
![]() |
![]() Digg mysql5 on MacOSX
Other Helpful SitesMacOSForgeDebian Packages MacPorts - SVN Freshports - FreeBSD Fink Package List RPM for MacOSX Port Categories
aqua
archivers audio benchmarks cad comms cross databases devel editors emulators games genealogy gnome gnustep graphics irc java kde lang math multimedia net news palm perl python ruby science security shells sysutils textproc www x11 xfce zope
Current CVS DownloadsDarwin Ports Current :nightly CVS snapshot OpenDarwin CVSWeb SSH Key Gen |
|||||||
| |



