CentOS上安装mysql, 使用yum安装很方便。

按照A Quick Guide to Using the MySQL Yum Repository里的步骤即可。

配置镜像仓库

Download MySQL Yum Repository下载仓库, 服务器是CentOS6, 于是下载mysql57-community-release-el6-9.noarch.rpm,之后执行rpm -i mysql57-community-release-el6-9.noarch.rpm

下载镜像

yum install mysql-community-server下载mysql

启动MySQL

service mysqld start

修改root用户密码

  • 使用grep ‘temporary password’ /var/log/mysqld.log找到root用户密码,
  • mysql -uroot -p登录,输入grep得到的密码
  • 执行ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';修改root用户密码

联系作者

git克隆仓库时,报如下错误

1
2
3
4
Initialized empty Git repository in 
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/maqmall/eyaos_signature.git/info/refs

fatal: HTTP request failed

参考HTTPS cloning errors,发现是git版本过低,用的CentOS6默认是1.7.1, 于是升级git版本。如何升级git, 可参考之前写的CentOS6.5升级git

联系作者