Results 1 to 2 of 2
Threaded View
-
20th Nov 2011, 01:07 PM #1OPMemberWebsite's:
leech4ever.comInstall MySQL 5.5.17 on CentOS 6
MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases. This is guide, howto install or upgrade MySQL Community Server latest and greatest version 5.5.17 on Fedora 16, 15, 14 13, 12, 11, 10, 9, 8, CentOS 6/5.7 and Red Hat (RHEL) 6.1/6/5.7.
Note: If you are upgrading MySQL (from earlier version), then make sure that you backup (dump and copy) your database and configs. And remember run mysql_upgrade command.
Login Via SSH and run Commands below
Step 1 : Install Remi repository
Code:rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
Code:yum --enablerepo=remi,remi-test list mysql mysql-server
Code:yum --enablerepo=remi,remi-test install mysql mysql-server
Code:service mysqld start
Code:chkconfig --levels 235 mysqld on
Set (Change) root password
Remove anonymous users
Disallow root login remotely
Remove test database and access to it
Reload privilege tables
Code:/usr/bin/mysql_secure_installation
mysqladmin -u root password [your_password_here]
## Example ##
mysqladmin -u root password myownsecrectpass
mysql -u root -p
## OR ##
mysql -h localhost -u root -p
This example uses following parameters:
DB_NAME = webdb
USER_NAME = webdb_user
REMOTE_IP = 10.0.15.25
PASSWORD = password123
PERMISSIONS = ALLCode:## CREATE DATABASE ## mysql> CREATE DATABASE webdb; ## CREATE USER ## mysql> CREATE USER 'webdb_user'@'10.0.15.25' IDENTIFIED BY 'password123'; ## GRANT PERMISSIONS ## mysql> GRANT ALL ON webdb.* TO webdb_user@'10.0.15.25'; ## FLUSH PRIVILEGES, Tell the server TO reload the GRANT TABLES ## mysql> FLUSH PRIVILEGES;
Code:nano -w /etc/sysconfig/iptables
Code:-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
Code:service iptables restart
mysql -h dbserver_name_or_ip_address -u webdb_user -p webdbifirstdoz Reviewed by ifirstdoz on . Install MySQL 5.5.17 on CentOS 6 MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases. This is guide, howto install or upgrade MySQL Community Server latest and greatest version 5.5.17 on Fedora 16, 15, 14 13, 12, 11, 10, 9, 8, CentOS 6/5.7 and Red Hat (RHEL) 6.1/6/5.7. Note: If you are upgrading MySQL (from earlier version), then make sure that you backup (dump and copy) your database and configs. And remember run mysql_upgrade command. Login Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Replacing MySQL with MariaDB in a CentOS VPS
By NewEraCracker in forum Technical and Security TutorialsReplies: 14Last Post: 30th Jan 2012, 11:39 PM -
How To Install Apache with MySQL and PHP on Linux CentOS
By enetcloud in forum Tutorials and GuidesReplies: 3Last Post: 21st Aug 2011, 01:11 PM -
how to install ftp on centos
By -={MINDFREAK}=- in forum Technical Help Desk SupportReplies: 3Last Post: 12th Jun 2011, 04:50 PM -
[How To] Lighttpd With PHP5 And MySQL On CentOS 5.2
By DLow in forum Tutorials and GuidesReplies: 3Last Post: 10th Jun 2010, 08:31 AM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...