2014년 1월 8일 수요일

centos 6 에 mysql 을 yum으로 설치하기


 
## Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 ##
rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm




yum --enablerepo=remi,remi-test list mysql mysql-server






yum --enablerepo=remi,remi-test install mysql mysql-server





service mysqld start ## use restart after update
chkconfig --levels 235
mysqld on



service mysqld start ## use restart after update
chkconfig --levels 235
mysqld on






/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]





mysql -u root -p






## CREATE DATABASE ##
mysql> CREATE DATABASE webdb;

## CREATE USER
##
mysql> CREATE USER 'webdb_user'@'1.1.1.1' IDENTIFIED BY
'password123';

## GRANT PERMISSIONS ##
mysql> GRANT ALL ON webdb.*
TO 'webdb_user'@'1.1.1.1.';

## FLUSH PRIVILEGES, Tell the server TO
reload the GRANT TABLES ##
mysql> FLUSH PRIVILEGES;





방화벽 해제




#Edit /etc/sysconfig/iptables
file:
vi/etc/sysconfig/iptables

#아래 문자열 iptables 파일에 추가
# -A INPUT -m state --state NEW -m tcp
-p tcp --dport 3306 -j ACCEPT

# 방화벽 재시작
service iptables restart

# 커넥션 테스트
mysql -h dbserver_name_or_ip_address -u webdb_user -p
webdb



 

댓글 없음:

댓글 쓰기