Log into your PostgreSQL instance:
sudo -u postgres psql
Then execute:
CREATE DATABASE 1pogolinks_db;
CREATE USER 1pogouser WITH ENCRYPTED PASSWORD 'strongpassword';
GRANT ALL PRIVILEGES ON DATABASE 1pogolinks_db TO 1pogouser;
\q
For MariaDB:
sudo mysql -u root -p
CREATE DATABASE 1pogolinks_db;
CREATE USER '1pogouser'@'localhost' IDENTIFIED BY 'strongpassword';
GRANT ALL PRIVILEGES ON 1pogolinks_db.* TO '1pogouser'@'localhost';
FLUSH PRIVILEGES;
EXIT;
The most probable explanation is a keyboard error. The user may have intended one of these common commands: 1pogolinks install
Check the source – if you saw this in a README, forum post, or chat, ask the author for clarification. Log into your PostgreSQL instance: sudo -u postgres psql
This section details the standard method for a 1pogolinks install using cPanel, the most common hosting control panel. For MariaDB: sudo mysql -u root -p
Why do users go through the trouble of a manual install? Here are the standout features:
Log into your PostgreSQL instance:
sudo -u postgres psql
Then execute:
CREATE DATABASE 1pogolinks_db;
CREATE USER 1pogouser WITH ENCRYPTED PASSWORD 'strongpassword';
GRANT ALL PRIVILEGES ON DATABASE 1pogolinks_db TO 1pogouser;
\q
For MariaDB:
sudo mysql -u root -p
CREATE DATABASE 1pogolinks_db;
CREATE USER '1pogouser'@'localhost' IDENTIFIED BY 'strongpassword';
GRANT ALL PRIVILEGES ON 1pogolinks_db.* TO '1pogouser'@'localhost';
FLUSH PRIVILEGES;
EXIT;
The most probable explanation is a keyboard error. The user may have intended one of these common commands:
Check the source – if you saw this in a README, forum post, or chat, ask the author for clarification.
This section details the standard method for a 1pogolinks install using cPanel, the most common hosting control panel.
Why do users go through the trouble of a manual install? Here are the standout features: