- Install MySQL
yum install mysql-server php-mysql
How to configure MySQL on Fedora 13
- Set the MySQL service to start on boot
chkconfig --levels 235 mysqld on - Start the MySQL service
service mysqld start - Log into MySQL
mysql -u root - Set the root user password for all local domains
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('new-password');
SET PASSWORD FOR 'root'@'hostname' = PASSWORD('new-password');
SET PASSWORD FOR 'root'@'127.0.0.1' = PASSWORD('new-password');
- Drop the Any user
DROP USER ''@'localhost';
DROP USER ''@'hostname';
DROP USER ''@'%'; - Drop the test database
DROP DATABASE test; - Exit MySQL
exit - ----------------------------------------------------------------
Install MySQL Database 5.1 (5.1.52) on Fedora 13/14, CentOS 5.5, Red Hat (RHEL) 5.5/6
1. Change root user
su - ## OR ## sudo -i
2. Install Remi repository
Fedora
## Remi Dependency on Fedora 14 rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-rawhide.noarch.rpm rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-rawhide.noarch.rpm ## Remi Dependency on Fedora 13, 12, 11, 10, 9, 8 rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm ## Fedora 14 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-14.rpm ## Fedora 13 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-13.rpm ## Fedora 12 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-12.rpm ## Fedora 11 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-11.rpm ## Fedora 10 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-10.rpm ## Fedora 9 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-9.rpm ## Fedora 8 ## rpm -Uvh http://rpms.famillecollet.com/remi-release-8.rpm
CentOS and Red Hat (RHEL)
## Remi Dependency on CentOS and Red Hat (RHEL) rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
3. Check Available MySQL versions
Fedora 14
yum list mysql
Fedora 14, (13, 12, 11, 10, 9, 8, 7), CentOS 5.5 and Red Hat (RHEL) 5.5
yum --enablerepo=remi list mysql
Loaded plugins: changelog, fastestmirror, presto, refresh-packagekit ... remi | 3.0 kB 00:00 remi/primary_db | 106 kB 00:00 Available Packages mysql.i686 5.1.52-1.fc14.remi remi mysql-server.i686 5.1.52-1.fc14.remi remi
4. Update or Install MySQL 5.1 (5.1.50)
Fedora 14
yum install mysql mysql-server
Fedora 13 (12, 11, 10, 9, 8, 7), CentOS 5.5 and Red Hat (RHEL) 5.5
yum --enablerepo=remi install mysql mysql-server
... Dependencies Resolved ============================================================================================== Package Arch Version Repository Size ============================================================================================== Installing: mysql i686 5.1.52-1.fc14.remi remi 881 k mysql-server i686 5.1.52-1.fc14.remi remi 8.8 M Installing for dependencies: mysql-libs i686 5.1.52-1.fc14.remi remi 1.2 M perl-DBD-MySQL i686 4.017-1.fc14 fedora 137 k perl-DBI i686 1.613-1.fc14 fedora 775 k Transaction Summary ============================================================================================== Install 5 Package(s) Total download size: 12 M Installed size: 33 M Is this ok [y/N]: y Downloading Packages: Setting up and reading Presto delta metadata Processing delta metadata Package(s) data still to download: 12 M (1/5): mysql-5.1.52-1.fc14.remi.i686.rpm | 881 kB 00:00 (2/5): mysql-libs-5.1.52-1.fc14.remi.i686.rpm | 1.2 MB 00:00 (3/5): mysql-server-5.1.52-1.fc14.remi.i686.rpm | 8.8 MB 00:04 (4/5): perl-DBD-MySQL-4.017-1.fc14.i686.rpm | 137 kB 00:00 (5/5): perl-DBI-1.613-1.fc14.i686.rpm | 775 kB 00:00 ---------------------------------------------------------------------------------------------- Total 1.5 MB/s | 12 MB 00:07 warning: rpmts_HdrFromFdno: Header V3 DSA/SHA1 Signature, key ID 00f97f56: NOKEY remi/gpgkey | 2.6 kB 00:00 ... Importing GPG key 0x00F97F56: Userid : Remi Collet <RPMS@FamilleCollet.com> Package: remi-release-14-6.fc14.remi.noarch (installed) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-remi Is this ok [y/N]: y Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Warning: RPMDB altered outside of yum. Installing : mysql-libs-5.1.52-1.fc14.remi.i686 1/5 WARNING : This MySQL RPM is not an official Fedora/Redhat build and it overrides the official one. Don\'t file bugs on Fedora Project nor Redhat. Use dedicated forums http://forums.famillecollet.com/ Installing : perl-DBI-1.613-1.fc14.i686 2/5 Installing : mysql-5.1.52-1.fc14.remi.i686 3/5 Installing : perl-DBD-MySQL-4.017-1.fc14.i686 4/5 Installing : mysql-server-5.1.52-1.fc14.remi.i686 5/5 Installed: mysql.i686 0:5.1.52-1.fc14.remi mysql-server.i686 0:5.1.52-1.fc14.remi Dependency Installed: mysql-libs.i686 0:5.1.52-1.fc14.remi perl-DBD-MySQL.i686 0:4.017-1.fc14 perl-DBI.i686 0:1.613-1.fc14 Complete!
5. Start MySQL server and autostart MySQL on boot
/etc/init.d/mysqld start ## use restart after update ## OR ## service mysqld start ## use restart after update chkconfig --levels 235 mysqld on
6. MySQL Secure Installation
- Set (Change) root password
- Remove anonymous users
- Disallow root login remotely
- Remove test database and access to it
- Reload privilege tables
Start MySQL Secure Installation with following command
/usr/bin/mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we\'ll need the current password for the root user. If you\'ve just installed MySQL, and you haven\'t set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. Set root password? [Y/n] Y New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] Y ... Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] Y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] Y ... Success! Cleaning up... All done! If you\'ve completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL!
mysqladmin -u root password [your_password_here] ## Example ## mysqladmin -u root password myownsecrectpass
7. Connect to MySQL database (localhost) with password
mysql -u root -p ## OR ## mysql -h localhost -u root -p
8. Create Database, Create MySQL User and Enable Remote Connections to MySQL Database
This example uses following parameters:- DB_NAME = webdb
- USER_NAME = webdb_user
- REMOTE_IP = 10.0.15.25
- PASSWORD = password123
- PERMISSIONS = ALL
## 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;
Enable Remote Connection to MySQL Server –> Open MySQL Port (3306) on Iptables Firewall (as root user again)
1. Edit /etc/sysconfig/iptables file:
nano -w /etc/sysconfig/iptables
2. Add following line before COMMIT:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
3. Restart Iptables Firewall:
service iptables restart ## OR ## /etc/init.d/iptables restart
4. Test remote connection:
mysql -h dbserver_name_or_ip_address -u webdb_user -p webdb
No comments:
Post a Comment