How to Host a MySQL Server on Linux

How to Host a MySQL Server on Linux

Tech With Tim

4 года назад

66,957 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@princeonagwa2750
@princeonagwa2750 - 03.10.2023 15:25

can i do this on a pc🤨

Ответить
@akutGame
@akutGame - 10.06.2023 17:47

But why does he have a root user with pwsd? Im so stupid... I get the error: ... Failed! Error: SET PASSWORD has no significance for user 'root'@'localhost' as the authentication method used doesn't store authentication data in the MySQL server. Please consider using ALTER USER instead if you want to change authentication parameters.

Ответить
@lowgn9251
@lowgn9251 - 03.03.2023 01:31

Great !! Thanks a lot

Ответить
@hackwithprogramming7849
@hackwithprogramming7849 - 15.12.2022 11:43

that firewall will create an issu for u again if u try to connected it from ssh i dont know why

Ответить
@gabenfanboy7471
@gabenfanboy7471 - 19.08.2022 10:16

when you already prepared your pi for the video and start panicing a little when he mentions the website

Ответить
@dpthew
@dpthew - 09.08.2022 18:50

Everything worked great until GRANT ALL ON test.* etc... I get error 1064 although I did everything exactly like in the video, any ideas why?

Ответить
@sebase1161
@sebase1161 - 16.07.2022 11:40

... Failed! Error: SET PASSWORD has no significance for user 'root'@'localhost' as the authentication method used doesn't store authentication data in the MySQL server. Please consider using ALTER USER instead if you want to change authentication parameters. can somone help me

Ответить
@shamaelangel7212
@shamaelangel7212 - 25.05.2022 18:00

muchas gracias ¡¡

Ответить
@dabbopabblo
@dabbopabblo - 03.05.2022 02:25

dont go out of your way to download putty just for a simple ssh connection if your using linode, the web console is terrible but you can just copy and past the ssh command they give you into the windows cmd and instantly have access (after putting your password in ofc)

Ответить
@davidbaker5932
@davidbaker5932 - 01.02.2022 11:45

Enabling the firewall without first allowing the SSH port locked me out of my own droplet when I tried to log in again after this tutorial.

Ответить
@epicfuturehouse
@epicfuturehouse - 23.12.2021 17:28

If you have the error of not being able to access your VServer with SSH again, then execute this command:

sudo ufw allow ssh

you have to allow ssh connections to the firewall that is set up in this tutorial

Ответить
@quiupu07
@quiupu07 - 21.09.2021 06:43

Unable to locate package mysql-server

this will help
sudo apt-get update

Ответить
@mryarut
@mryarut - 21.08.2021 12:30

sick video man! learned a ton, however how could I use this for an app for example as everytime I download the app on a new device the IP that tries to acces the database obviously changes? Thanks!

Ответить
@ytehagiang
@ytehagiang - 30.05.2021 16:46

i can't access

Ответить
@Pet010011
@Pet010011 - 03.05.2021 16:59

If you have a problem with GRANT command be noticed that starting from MySQL 8 you should firstly create a user:

CREATE USER SomeUser@'PUBLIC IPV4 ADDRESS' IDENTIFIED BY 'some_password';

and only then you can specify access to this user:

GRANT ALL ON database_name.* TO SomeUser@'PUBLIC IPV4 ADDRESS';

Ответить
@brandonthomas7698
@brandonthomas7698 - 17.04.2021 02:22

Thanks so much. Helps a ton!

Ответить
@nunogomes1663
@nunogomes1663 - 25.02.2021 19:09

Thanks, been looking for theses for three days

Ответить
@thefsquad7787
@thefsquad7787 - 13.02.2021 20:14

For peaple that get error's do this

CREATE user 'YOURUSERNAME'@'YOURHOST' IDENTIFIED BY 'YOURPASSWORD';
GRANT ALL ON YOURDATABASE.* TO 'YOURUSERNAME'@'YOURHOST;

-----------------

Example->

CREATE user 'test'@'localhost' IDENTIFIED BY 'password12345';
GRANT ALL ON animaldatabase.* TO 'test'@'localhost;

Ответить
@alphaO27
@alphaO27 - 23.01.2021 11:20

Is it possible to host the database on our PC having Ubuntu OS ?

Ответить
@alexalbon8274
@alexalbon8274 - 06.01.2021 07:40

you are a god

Ответить
@soisauce364
@soisauce364 - 05.01.2021 05:27

can you do with other platforms except for linode :D

Ответить
@adeichan5251
@adeichan5251 - 13.12.2020 17:01

hey man...after i do ufw enable, the firewall is enabled and i cant ssh to the remote system anymore, i have logged off... now its giving me a headache...from what i gathered, i need a direct connection to straighten this out, any thoughts?

Ответить
@prestonwallitsch8636
@prestonwallitsch8636 - 24.11.2020 20:10

I converted an old computer into a Linux server.

Ответить
@whitehammer9gaming156
@whitehammer9gaming156 - 08.11.2020 03:27

Anyone having issues creating the last step u need to do

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';

then

GRANT ALL ON DATABASE_NAME.table TO username@localhost IDENTIFIED BY 'password';

You're Welcome

Ответить
@himanshikalra8602
@himanshikalra8602 - 04.09.2020 23:12

For those who wanna follow along this tutorial, you can create a VM instance of Ubuntu on Google Compute Engine, login using ssh using putty, need to add your public key to the instance and private key to putty

Ответить
@hanhvo2495
@hanhvo2495 - 01.09.2020 03:08

what is the purpose of hosting a sql server on linux?

Ответить
@blisard2648
@blisard2648 - 16.06.2020 15:46

If you already have a database set up, can you use that database on the linux server?

Ответить
@lucasayala1125
@lucasayala1125 - 15.05.2020 10:37

Thank you Tim! Awsome playlist

Ответить
@nathanforrest7310
@nathanforrest7310 - 25.04.2020 01:36

write ur own cnc and make a mirai botnet

Ответить
@hareeshch
@hareeshch - 20.04.2020 13:05

while running the command 'mysql -u root -p' if you get the error 'ERROR 1698 (28000): Access denied for user 'root'@'localhost'' trying running using a sudo like 'sudo mysql -u root -p'

Ответить
@suyashvashishtha4904
@suyashvashishtha4904 - 16.04.2020 12:06

hey tim can you make a video on how to link Mysql and Kivy. it will be great ... pleaseeee

Ответить
@dennisasamoah2213
@dennisasamoah2213 - 01.02.2020 22:34

great stuff

Ответить
@ElliyahuRosha
@ElliyahuRosha - 17.12.2019 14:31

Yesterday I too the day to learn SQL, and today I went all over this playlist.
This was just perfect for me, I'm good to go :)


Elliyahu from Jerusalem

Ответить
@Max-oj9tp
@Max-oj9tp - 12.11.2019 00:50

Great series!

Ответить
@Star-zf8su
@Star-zf8su - 15.10.2019 22:02

Really really!!! Thanks a lot........You are helping us a lot by providing so much nicely explained lessons.......... I Finally learned how to connect to database with Python 😀😀

Ответить
@TheAmazingpower
@TheAmazingpower - 13.10.2019 18:01

Is it possible to use a own server like a raspberry pi for this and using then the similar setup?

Ответить
@krsingh.shubham
@krsingh.shubham - 13.10.2019 08:53

next video very fast please

Ответить
@sergdonskikh2140
@sergdonskikh2140 - 12.10.2019 17:29

Good day!

can use windows operating system or only under linux?

Ответить
@justicegugu9775
@justicegugu9775 - 12.10.2019 10:34

Do you have a video for python ?

Ответить
@ethiclesshacker
@ethiclesshacker - 11.10.2019 22:18

I was going to begin with sql and python and this entire series just helped me a lot. Thanks!

Ответить
@sainco3036
@sainco3036 - 11.10.2019 20:36

thanks.

Ответить
@jackaxel1430
@jackaxel1430 - 11.10.2019 19:27

Tim would you please do some videos about Business intelligence project , like with Microsoft sql server , big up Bro

Ответить
@aryanbhatia6992
@aryanbhatia6992 - 11.10.2019 19:04

Great video as always :)

Ответить
@AKHILKumar-kh8rz
@AKHILKumar-kh8rz - 11.10.2019 19:02

Tim bro. Do kali linux tutorials

Ответить
@Alphabet_-_
@Alphabet_-_ - 11.10.2019 19:02

<>

Ответить
@etakoma7400
@etakoma7400 - 11.10.2019 19:01

first

Ответить