10,启动mysql服务
[root@localhost mysql-5.5.33]# /etc/init.d/mysqld start
/usr/local/mysql/bin/mysqladmin -u root password '999999'
11,启动完成之后用ps -ef |grep mysql 命令查看是否启动
12,/usr/local/mysql/bin/mysql -u root -p
通过命令行登录管理MySQL服务器 初始密码为空
13,修改root密码
mysql>;use mysql;
mysql>; update user set password=PASSWORD("999999") where user='root';
mysql>; update user set host="%" where user="root" and host="localhost";
mysql>; FLUSH PRIVILEGES;
mysql>; flush privileges;
×××××××××××××××××××××××××××××××××××××××××××××××××××
删除host不是:%/127.0.0.1/localhost 的记录,删除用户字段为空的记录
delete from user where host !='%' and host !='127.0.0.1' and host !='localhost';
delete from user where user='';
delete from user where title like '%cheng人网%';
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
设置软链接方便执行mysql短标签命令【mysql -u root -p】
ln -sf /usr/local/mysql/bin/mysql /sbin/mysql
ln -sf /usr/local/mysql/bin/mysqladmin /sbin/mysqladmin
ln -sf /usr/local/mysql/bin/mysqldump /sbin/mysqldump
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
注册Apache为Service
cp /usr/local/apache/bin/apachectl /etc/init.d/httpd
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
就可以使用:
service httpd start
service httpd restart
service httpd stop
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
在末尾增加以下内容,自动启动服务:
vi /etc/rc.local
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
ulimit -SHn 65535
/etc/init.d/mysqld start
/etc/init.d/httpd start