Latest Added Tutorials
25-07-2016
With following codes, we can install mbstring library in Amazon Ec2 Service:
yum install php56-mbstring
php -m | grep mb
sudo service httpd restart...Continue Reading
1. First of all, create a new mysql user:
mysql -u root -p
create user 'olyanren'@'%' identified by '123456';
grant all priviliges on *.* to 'olyanren'@'%' with grant option;
Note: Change olyanren username and password 123456. Also note that don't delete single quotas.
The key point is wildcard (%). By using wildcard, we give olyanren user an access right to connect from any host.
After these steps, confirm if the new user olyanren has been created
select user, host from mysql.user;
2) Restart mysql service mysqld restart
...