MYSQL installation and basic management in Linux

Source: Internet
Author: User

In Linux, MYSQL installation and basic management install some necessary linux packages: [plain] yum install gcc-c ++ gcc-g77 autoconf automake zlib * fiex * libxml * ncurses-devel libmcrypt * libtool-ltdl-devel * libevent install mysql, mysql installation package needs to be downloaded by yourself, installation directory/usr/local/web/[plain] sudo mkdir-p/usr/local/web/sudo tar xzvf mysql-5.1.39.tar.gz cd mysql-5.1.39 www.2cto.com. /configure -- prefix =/usr/local/web/mysql.5.1.39 -- enable-thread-safe-client -- enable-validator -- with-big-tables -- with-client-ldflags =-all -static -- with-mysqld-ldflags =-all-static -- with-charset = utf8 -- with-collation = utf8_general_ci -- with-extra-charsets = complex make install create a mysql user group, etc. information [plain] sudo groupadd mysql sudo useradd-g mysql-s/sbin/nologin mysql sudo. /scripts/mysql_install_db -- user = mysql -- datadir =/usr/local/web/mysql.5.1.39/var www.2cto.com sudo chown-R root/usr/local/web/mysql.5.1.39 sudo chown-R mysql: mysql/usr/local/web/mysql.5.1.39/var manage MYSQL [plain] # Start mysql: sudo/usr/local/web/mysql.5.1.39/share/mysql. server start # restart mysql sudo/usr/local/web/mysql.5.1.39/share/mysql. server restart # Stop mysql sudo/usr/local/web/mysql.5.1.39/share/mysql. server stop author initphp

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.