Freebsd postgresql: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Links= *https://cwharton.com/blog/2016/10/postgresql-and-freebsd-quick-start/“)
 
Zeile 1: Zeile 1:
 +
=Install=
 +
*pkg install -y postgresql96-server
 +
=Enable=
 +
*sysrc mysql_enable=yes
 +
=Start=
 +
*service mysql-server start
 +
=Set more security=
 +
*mysql_secure_installation
 +
=Login=
 +
*mysql -p
 +
<pre>
 +
Enter password:
 +
Welcome to the MySQL monitor.  Commands end with ; or \g.
 +
Your MySQL connection id is 15
 +
Server version: 5.6.37 Source distribution
 +
</pre>
 +
 +
 
=Links=
 
=Links=
 
*https://cwharton.com/blog/2016/10/postgresql-and-freebsd-quick-start/
 
*https://cwharton.com/blog/2016/10/postgresql-and-freebsd-quick-start/

Version vom 31. Oktober 2017, 22:18 Uhr

Install

  • pkg install -y postgresql96-server

Enable

  • sysrc mysql_enable=yes

Start

  • service mysql-server start

Set more security

  • mysql_secure_installation

Login

  • mysql -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 5.6.37 Source distribution


Links