Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - samazgor

Pages: [1]
1
Apache / Re: Thinks that domain already exists on serve - doesn't
« on: May 29, 2015, 10:08:50 AM »
i can add subdomain in the domain area that's for sure.

2
MySQL / Re: How to update mysql from 5.1 to 5.6
« on: May 26, 2015, 08:55:57 PM »
Hope this might help -

1) Create full database backup (In case mysql server break we have backup to restore).

Code: [Select]
mysqldump --events --all-databases | gzip > /home/alldatabases.sql.gz

2) Install Remi repo.

Code: [Select]
cd /etc/yum.repos.d
wget http://rpms.famillecollet.com/enterprise/remi.repo


3) Now upgrade MySQL Server.

Code: [Select]
yum --enablerepo=remi update mysql-server
sudo mysql_upgrade


4) Restart MySQL Server.

Code: [Select]
service mysqld restart

If you want to do a fresh install of MySQL Server.

Code: [Select]
yum --enablerepo=remi install mysql-server

You are done with upgrading.

Pages: [1]