第三章:MysqL安装和postgresql安装
MysqL安装
下载MysqL
cd /usr/local/src wget https://dev.MysqL.com/get/Downloads/MysqL-5.7/MysqL-5.7.18-linux-glibc2.5-x86_64.tar.gz tar -zxvf MysqL-5.7.18-linux-glibc2.5-x86_64.tar.gz mv MysqL-5.7.18-linux-glibc2.5-x86_64 /usr/local/MysqL
groupadd MysqL useradd -r -g MysqL MysqL
初始化数据库
cd /usr/local/MysqL mkdir data chwon -R MysqL:MysqL data bin/MysqLd --initialize --user=MysqL --datadir=/usr/local/MysqL/data #记录初始化数据库的root用户密码 #也可以使用下面的命令,两者的区别就是一个有初始化密码,一个没有 bin/MysqLd --initialize-insecure --user=MysqL --datadir=/usr/local/MysqL/data
配置启动信息
vi /etc/my.cnf #修改配置如下图所示:
#保存退出 cp -a support-files/MysqL.service /etc/init.d/MysqLd chmod +x /etc/init.d/MysqLd #尝试启动MysqL /etc/init.d/MysqLd start #成功如下图:
#备注:MysqL启动,重启有时会报下图错误:
mmap(137428992 bytes) Failed; errno 12 #错误是MysqL启动内存不足导致的,解决方法如下: mkdir -p /var/cache/swap/ dd if=/dev/zero of=/var/cache/swap/swap0 bs=1M count=512 chmod 0600 /var/cache/swap/swap0 mkswap /var/cache/swap/swap0 swapon /var/cache/swap/swap0 #这样就可以顺利启动MysqL数据库 #将swap分区设置为开机启动: vi /etc/fstab #加入下列代码 /var/cache/swap/swap0 swap swap defaults 0 0
添加环境变量
export PATH=$PATH:/usr/local/MysqL:/usr/local/MysqL/bin
设置开机启动
chkconfig --add MysqLd chkconfig MysqLd on
MysqL相关设置
#第一次进入需要输入初始密码: MysqL -uroot -p #初始root密码 MysqL > set password=PASSWORD(''); #设置密码为空 MysqL > use MysqL; MysqL > update user set host = '%' where user = 'root'; #修改host MysqL > select user,host from user; #查看修改结果 MysqL > flush privileges; #刷新设置 MysqL > exit #退出 #在本地进行连接测试,结果如下图:
#安装成功
MysqL安装汇总
安装包存放点:/usr/local/src/ MysqL配置文件:/etc/my.cnf MysqL数据信息目录:/usr/local/MysqL/data/ MysqL日志文件:/var/log/mariadb/mariadb.log MysqLpid文件:/var/run/mariadb/mariadb.pid(配置文件里是这样写的,实际根据服务器生成的具体文件为主,通过ps aux|grep MysqL查看) 进入MysqL数据库: MysqL(无密码) MysqL -u用户名 -p用户密码(有密码) 开启MysqL: service MysqLd start systemctl start MysqLd 关闭MysqL: service MysqLd stop systemctl stop MysqLd 重启MysqL service MysqLd restart syatemctl restart MysqLd MysqL状态 service MysqLd status syatemctl status MysqLd
postgresql安装
下载postgresql
cd /usr/local/src wget https://ftp.postgresql.org/pub/source/v10.1/postgresql-10.1.tar.gz tar -zxvf postgresql-10.1.tar.gz
postgresql编译安装
cd /postgresql-10.1 ./configure make && make install
adduser postgres
cd /usr/local/pgsql mkdir data mkdir logs touch logs/pgsql.log #设置postgres数据信息和日志权限 chown -R postgres:postgres data chown -R postgres:postgres logs #初始化postgresql bin/initdb -D /usr/local/pgsql/data #根据提示执行 bin/pg_ctl start -D /usr/local/pgsql/data -l /usr/local/pgsql/logs/pgsql.log #成功启动出现下列信息 waiting for server to start.... done server started
bin/psql postgres=# \l #查看数据库信息 postgres=# \du #查看用户信息 postgres=# CREATE DATABASE root; #创建root数据库 postgres=# \l #查看创建结果 postgres=# CREATE ROLE root SUPERUSER #创建root超级用户 postgres=# ALTER ROLE root LOGIN #设置root用户登录权限 postgres=# \du #查看创建结果 退出postgresql数据库
su - root cp /usr/local/src/postgresql-10.1/contrib/start-scripts/linux /etc/init.d/postgresql vi /etc/init.d/postgresql chmod +x /etc/init.d/postgresql 设置如下信息:
保存退出,测试如下命令: /etc/init.d/postgresql stop /etc/init.d/postgresql start /etc/init.d/postgresql restart 使用root用户进入postgresql数据库 /usr/local/pgsql/bin/psql 效果如下图:
postgresql安装成功
配置环境变量
cd /etc/profile export PATH=$PATH:/usr/local/pgsql/bin
配置开机启动
chkconfig --add postgresql chkconfig postgresql on
postgresql远程连接
vi /usr/local/pgsql/data/postgresql.conf # 修改如下:
# 保存退出 vi /usr/local/pgsql/data/pg_hba.conf # 修改如下:
# 保存退出 # 本地测试结果:
# 远程连接成功
postgresql安装总结
安装包存放点:/usr/local/src/ postgresql配置文件:/usr/local/pgsql/data/postgresql.conf /usr/local/pgsql/data/pg_hba.conf /etc/init.d/postgresql postgresql数据目录:/usr/local/pgsql/data postgresql日志文件:/usr/local/pgsql/logs/pgsql.log postgresqlpid文件:/usr/local/pgsql/data/postmaster.pid 进入postgresql数据库: psql # 已配置环境变量 /usr/local/pgsql/bin/psql # 未配置环境变量 启动postgresql /etc/init.d/postgresql start service postgresql start systemctl start postgresql 停止postgresql /etc/init.d/postgresql stop service postgresql stop systemctl stop postgresql 重启postgresql /etc/init.d/postgresql restart service postgresql restart systemctl restart postgresql
安装PHP扩展
如果在之前编译PHP时没有加入--with-pdo-pgsql,--with-pgsql这两个模块,我们只需要在PHP编译文件里编译就可以使用postgresqlPHP模块 # 安装pdo_pgsql模块 cd /usr/local/src/PHP-7.2.2/ext/pdo_pgsql/ /usr/local/PHP/bin/PHPize ./configure --with-PHP-config=/usr/local/PHP/bin/PHP-config make && make install # 安装pgsql模块 cd /usr/local/src/PHP-7.2.2/ext/pgsql/ /usr/local/PHP/bin/PHPize ./configure --with-PHP-config=/usr/local/PHP/bin/PHP-config make && make install service PHP-fpm restart # 重启PHP PHP -m # 查看模块列表 查看PHPinfo()结果如下:
安装成功原文链接:https://www.f2er.com/centos/374687.html