setup web server centos with apache
Install Apache, Mysql , PhP Web Server
# yum install httpd mod_ssl
#/etc/init.d/httpd start
# yum install mysql mysql-server
# chkconfig –levels 235 mysqld on
# /etc/init.d/mysqld start
configure mysql
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’@’localhost.localdomain’ = PASSWORD(‘new-password‘);
SET PASSWORD FOR ‘root’@’127.0.0.1′ = PASSWORD(‘new-password‘);
Drop the Any user
DROP USER ”@’localhost’;
DROP USER ”@’localhost.localdomain’;
Exit MySQL
exit