主机名或IP地址换成服务器的IP 如果是本地搭建的更换成本地IP 不要使用127.0.0.1
查看本地IP方法:Win+R 打开运行输入cmd 在d出的窗口输入ipconfig 即可查看本地服务器的IP
show variables where Variable_name = 'datadir'执行这个sql就能看到当前mysql服务的数据存储在哪个目录下了,根据目录就知道是在哪个磁盘下了
准备好yum源,命令:yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpmyum install postgresql94-server postgresql94-contrib
设置开机启动,并启动服务
systemctl enable postgresql-9.4.service
初始化数据库/usr/pgsql-9.4/bin/postgresql94-setup initdb 然后,
启动数据库:systemctl start postgresql-9.4.service
查看进程是否正常启动,开启远程访问
修改用户密码,用命令su到用户上,如下图
将postgresq加入防火墙,新建文件/usr/lib/firewalld/services/postgresql.xml如下图 *** 作:
重启服务systemctl restart postgresql-9.4.service,进行基本的数据库 *** 作,就是使用一般的SQL语言
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)