Rumah pangkalan data tutorial mysql 在MacOS下的安装MySQL5.0.15

在MacOS下的安装MySQL5.0.15

Jun 07, 2016 pm 04:04 PM
can i macos Pasang

You can install MySQL on Mac OS X 10.2.x (“ Jaguar ”) and up using a Mac OS X binary package in PKG format instead of the binary tarball distribution. Please note that older versions of Mac OS X (for example, 10.1.x) are not supported by

You can install MySQL on Mac OS X 10.2.x (“Jaguar”) and up using a Mac OS X binary package in PKG format instead of the binary tarball distribution. Please note that older versions of Mac OS X (for example, 10.1.x) are not supported by this package.

The package is located inside a disk image (<font face="新宋体">.dmg</font>) file that you first need to mount by double-clicking its icon in the Finder. It should then mount the image and display its contents.

Note: Before proceeding with the installation, be sure to shut down all running MySQL server instances by either using the MySQL Manager Application (on Mac OS X Server) or via mysqladmin shutdown on the command line.

To actually install the MySQL PKG file, double-click on the package icon. This launches the Mac OS X Package Installer, which guides you through the installation of MySQL.

Due to a bug in the Mac OS X package installer, you may see this error message in the destination disk selection dialog:

You cannot install this software on this disk. (null)
Salin selepas log masuk

If this error occurs, simply click the <FONT face=新宋体>Go Back</FONT> button once to return to the previous screen. Then click <FONT face=新宋体>Continue</FONT> to advance to the destination disk selection again, and you should be able to choose the destination disk correctly. We have reported this bug to Apple and it is investigating this problem.

The Mac OS X PKG of MySQL installs itself into <FONT face=新宋体>/usr/local/mysql-<EM class=replaceable><CODE>VERSION and also installs a symbolic link, <FONT face=新宋体>/usr/local/mysql</FONT>, pointing to the new location. If a directory named <FONT face=新宋体>/usr/local/mysql</FONT> exists, it is renamed to <FONT face=新宋体>/usr/local/mysql.bak</FONT> first. Additionally, the installer creates the grant tables in the <FONT face=新宋体>mysql</FONT> database by executing mysql_install_db after the installation.

The installation layout is similar to that of a tar file binary distribution; all MySQL binaries are located in the directory <FONT face=新宋体>/usr/local/mysql/bin</FONT>. The MySQL socket file is created as <FONT face=新宋体>/tmp/mysql.sock</FONT> by default.

MySQL installation requires a Mac OS X user account named <FONT face=新宋体>mysql</FONT>. A user account with this name should exist by default on Mac OS X 10.2 and up.

If you are running Mac OS X Server, you have a version of MySQL installed. The versions of MySQL that ship with Mac OS X Server versions are shown in the following table:

Mac OS X Server Version MySQL Version
10.2-10.2.2 3.23.51
10.2.3-10.2.6 3.23.53
10.3 4.0.14
10.3.2 4.0.16
10.4.0 4.1.10a

This manual section covers the installation of the official MySQL Mac OS X PKG only. Make sure to read Apple's help information about installing MySQL: Run the “Help View” application, select “Mac OS X Server” help, do a search for “MySQL,” and read the item entitled “Installing MySQL.

For pre-installed versions of MySQL on Mac OS X Server, note especially that you should start mysqld with safe_mysqld instead of mysqld_safe if MySQL is older than version 4.0.

If you previously used Marc Liyanage's MySQL packages for Mac OS X from http://www.entropy.ch, you can simply follow the update instructions for packages using the binary installation layout as given on his pages.

If you are upgrading from Marc's 3.23.xx versions or from the Mac OS X Server version of MySQL to the official MySQL PKG, you also need to convert the existing MySQL privilege tables to the current format, because some new security privileges have been added.

If you would like to automatically start up MySQL during system startup, you also need to install the MySQL Startup Item. For MySQL 5.0, it is part of the Mac OS X installation disk images as a separate installation package. Simply double-click the MySQLStartupItem.pkg icon and follow the instructions to install it.

Note that the Startup Item need be installed only once! There is no need to install it each time you upgrade the MySQL package later.

The Startup Item for MySQL 5.0 is installed into <FONT face=新宋体>/Library/StartupItems/MySQLCOM</FONT>. (Before MySQL 4.1.2, the location was <FONT face=新宋体>/Library/StartupItems/MySQL</FONT>, but that collided with the MySQL Startup Item installed by Mac OS X Server.) Startup Item installation adds a variable <FONT face=新宋体>MYSQLCOM=-YES-</FONT> to the system configuration file <FONT face=新宋体>/etc/hostconfig</FONT>. If you would like to disable the automatic startup of MySQL, simply change this variable to <FONT face=新宋体>MYSQLCOM=-NO-</FONT>.

On Mac OS X Server, the default MySQL installation uses the variable <FONT face=新宋体>MYSQL</FONT> in the <FONT face=新宋体>/etc/hostconfig</FONT> file. The MySQL AB Startup Item installer disables this variable by setting it to <FONT face=新宋体>MYSQL=-NO-</FONT>. This avoids boot time conflicts with the <FONT face=新宋体>MYSQLCOM</FONT> variable used by the MySQL AB Startup Item. However, it does not shut down a running MySQL server. You should do that yourself.

After the installation, you can start up MySQL by running the following commands in a terminal window. You must have administrator privileges to perform this task.

If you have installed the Startup Item:

shell> <STRONG class=userinput><CODE>sudo /Library/StartupItems/MySQLCOM/MySQLCOM start</CODE></STRONG>
(Enter your password, if necessary)
(Press Control-D or enter "exit" to exit the shell)
Salin selepas log masuk

If you don't use the Startup Item, enter the following command sequence:

shell> <STRONG class=userinput><CODE>cd /usr/local/mysql</CODE></STRONG>
shell> <STRONG class=userinput><CODE>sudo ./bin/mysqld_safe</CODE></STRONG>
(Enter your password, if necessary)
(Press Control-Z)
shell> <STRONG class=userinput><CODE>bg</CODE></STRONG>
(Press Control-D or enter "exit" to exit the shell)
Salin selepas log masuk

You should be able to connect to the MySQL server, for example, by running <FONT face=新宋体>/usr/local/mysql/bin/mysql</FONT>.

Note: The accounts that are listed in the MySQL grant tables initially have no passwords.

You might want to add aliases to your shell's resource file to make it easier to access commonly used programs such as mysql and mysqladmin from the command line. The syntax for tcsh is:

alias mysql /usr/local/mysql/bin/mysql
alias mysqladmin /usr/local/mysql/bin/mysqladmin
Salin selepas log masuk

For bash, use:

alias mysql=/usr/local/mysql/bin/mysql
alias mysqladmin=/usr/local/mysql/bin/mysqladmin
Salin selepas log masuk

Even better, add <FONT face=新宋体>/usr/local/mysql/bin</FONT> to your <FONT face=新宋体>PATH</FONT> environment variable. For example, add the following line to your <FONT face=新宋体>$HOME/.tcshrc</FONT> file if your shell is tcsh:

setenv PATH ${PATH}:/usr/local/mysql/bin
Salin selepas log masuk

If no <font face="新宋体">.tcshrc</font> file exists in your home directory, create it with a text editor.

If you are upgrading an existing installation, please note that installing a new MySQL PKG does not remove the directory of an older installation. Unfortunately, the Mac OS X Installer does not yet offer the functionality required to properly upgrade previously installed packages.

To use your existing databases with the new installation, you'll need to copy the contents of the old data directory to the new data directory. Make sure that neither the old server nor the new one is running when you do this. After you have copied over the MySQL database files from the previous installation and have successfully started the new server, you should consider removing the old installation files to save disk space. Additionally, you should also remove older versions of the Package Receipt directories located in <font face="新宋体">/Library/Receipts/mysql-<em class="replaceable"><code>VERSION.pkg.


Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn

Alat AI Hot

Undresser.AI Undress

Undresser.AI Undress

Apl berkuasa AI untuk mencipta foto bogel yang realistik

AI Clothes Remover

AI Clothes Remover

Alat AI dalam talian untuk mengeluarkan pakaian daripada foto.

Undress AI Tool

Undress AI Tool

Gambar buka pakaian secara percuma

Clothoff.io

Clothoff.io

Penyingkiran pakaian AI

AI Hentai Generator

AI Hentai Generator

Menjana ai hentai secara percuma.

Artikel Panas

Repo: Cara menghidupkan semula rakan sepasukan
1 bulan yang lalu By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Kristal tenaga dijelaskan dan apa yang mereka lakukan (kristal kuning)
2 minggu yang lalu By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: Cara mendapatkan biji gergasi
1 bulan yang lalu By 尊渡假赌尊渡假赌尊渡假赌

Alat panas

Notepad++7.3.1

Notepad++7.3.1

Editor kod yang mudah digunakan dan percuma

SublimeText3 versi Cina

SublimeText3 versi Cina

Versi Cina, sangat mudah digunakan

Hantar Studio 13.0.1

Hantar Studio 13.0.1

Persekitaran pembangunan bersepadu PHP yang berkuasa

Dreamweaver CS6

Dreamweaver CS6

Alat pembangunan web visual

SublimeText3 versi Mac

SublimeText3 versi Mac

Perisian penyuntingan kod peringkat Tuhan (SublimeText3)

Bagaimana untuk mengemas kini versi terbaru Bybit Exchange? Adakah terdapat kesan jika tidak dikemas kini? Bagaimana untuk mengemas kini versi terbaru Bybit Exchange? Adakah terdapat kesan jika tidak dikemas kini? Feb 21, 2025 pm 10:54 PM

Cara untuk mengemas kini pertukaran Bybit berbeza mengikut platform dan peranti: Mudah Alih: Semak kemas kini dan pasang di App Store. Klien Desktop: Semak kemas kini dalam menu Bantuan dan pasang secara automatik. Laman web: Anda perlu mengakses laman web rasmi secara manual untuk kemas kini. Kegagalan untuk mengemas kini pertukaran boleh membawa kepada kelemahan keselamatan, batasan fungsional, isu keserasian dan mengurangkan kecekapan pelaksanaan transaksi.

Platform manakah yang boleh memuat turun apl pertukaran Upbit? Platform manakah yang boleh memuat turun apl pertukaran Upbit? Sep 09, 2024 pm 07:20 PM

Apl pertukaran Upbit boleh dimuat turun pada platform iOS, Android dan Windows. Nota: Sentiasa muat turun daripada sumber rasmi untuk mengelakkan perisian hasad.

Pintu Masuk Laman Web Rasmi Software COINSUPER Exchange Pintu Masuk Laman Web Rasmi Software COINSUPER Exchange Feb 21, 2025 pm 10:39 PM

Pintu masuk laman web rasmi Coinsuper Exchange: https://www.coinsuper.com. Saluran muat turun pelanggan adalah: klien Windows, klien macOS, dan mudah alih (iOS/Android). Pendaftaran memerlukan e-mel, nombor telefon bimbit dan kata laluan, dan anda perlu melengkapkan pengesahan nama sebenar sebelum anda boleh berdagang. Platform ini menyediakan pelbagai urus niaga aset digital, termasuk bitcoin, ethereum, dan lain -lain, dengan kadar yuran urus niaga sebanyak 0.1% untuk kedua -dua pesanan dan penerima. Perlindungan keselamatan termasuk penyimpanan dompet sejuk, pengesahan dwi-faktor, pengubahan wang haram dan anti-keganasan langkah pembiayaan, dan dengan keselamatan awam

Pemasangan Laman Web Rasmi Bitget (Panduan Pemula 2025) Pemasangan Laman Web Rasmi Bitget (Panduan Pemula 2025) Feb 21, 2025 pm 08:42 PM

Bitget adalah pertukaran cryptocurrency yang menyediakan pelbagai perkhidmatan perdagangan termasuk perdagangan tempat, perdagangan kontrak dan derivatif. Ditubuhkan pada tahun 2018, pertukaran itu beribu pejabat di Singapura dan komited untuk menyediakan pengguna dengan platform perdagangan yang selamat dan boleh dipercayai. Bitget menawarkan pelbagai pasangan perdagangan, termasuk BTC/USDT, ETH/USDT dan XRP/USDT. Di samping itu, pertukaran mempunyai reputasi untuk keselamatan dan kecairan dan menawarkan pelbagai ciri seperti jenis pesanan premium, perdagangan leverage dan sokongan pelanggan 24/7.

Pakej pemasangan OUYI OKX disertakan secara langsung Pakej pemasangan OUYI OKX disertakan secara langsung Feb 21, 2025 pm 08:00 PM

Ouyi Okx, pertukaran aset digital terkemuka di dunia, kini telah melancarkan pakej pemasangan rasmi untuk menyediakan pengalaman perdagangan yang selamat dan mudah. Pakej pemasangan OKX OUYI tidak perlu diakses melalui penyemak imbas. Proses pemasangan adalah mudah dan mudah difahami.

Portal rasmi muat turun Ouyi Exchange Portal rasmi muat turun Ouyi Exchange Feb 21, 2025 pm 07:51 PM

Ouyi, juga dikenali sebagai Okx, adalah platform perdagangan cryptocurrency terkemuka di dunia. Artikel ini menyediakan portal muat turun untuk pakej pemasangan rasmi Ouyi, yang memudahkan pengguna memasang klien OUYI pada peranti yang berbeza. Pakej pemasangan ini menyokong sistem Windows, Mac, Android dan iOS. Selepas pemasangan selesai, pengguna boleh mendaftar atau log masuk ke akaun OUYI, mula membuat kriptografi perdagangan dan nikmati perkhidmatan lain yang disediakan oleh platform.

Pautan Pemasaran Pemasangan Pendaftaran Laman Web Gate.io Pautan Pemasaran Pemasangan Pendaftaran Laman Web Gate.io Feb 21, 2025 pm 08:15 PM

Gate.io adalah platform perdagangan cryptocurrency yang sangat terkenal yang dikenali sebagai pemilihan token yang luas, yuran transaksi yang rendah dan antara muka yang mesra pengguna. Dengan ciri -ciri keselamatan lanjutan dan perkhidmatan pelanggan yang cemerlang, Gate.io menyediakan peniaga dengan persekitaran perdagangan cryptocurrency yang boleh dipercayai dan mudah. Jika anda ingin menyertai Gate.io, sila klik pautan yang disediakan untuk memuat turun pakej pemasangan pendaftaran rasmi untuk memulakan perjalanan perdagangan cryptocurrency anda.

Bagaimana untuk membuka langkah persediaan selepas memuat turun perisian pertukaran YoBit Bagaimana untuk membuka langkah persediaan selepas memuat turun perisian pertukaran YoBit Sep 09, 2024 pm 03:21 PM

Selepas memuat turun perisian pertukaran YoBit, diperlukan lima langkah untuk membuka tetapan: 1. Muat turun perisian 2. Buka zip pakej perisian 4. Konfigurasikan tetapan (bahasa, zon masa, pasangan dagangan; , keselamatan, dsb.); 5. .Antara muka tersuai (carta garisan K, carta kedalaman, dsb.). Selepas melengkapkan langkah di atas, anda boleh mula menggunakan perisian pertukaran YoBit.

See all articles