Igor Abzalov's site
  • Home
  • Blog
  • General information
  • Authorization
  1. You are here:  
  2. Home
  3. Blog
Cybersecurity Python neo4j Cyber security SSH Docker GoLang Sean D. Stuber

Blog

Блог

Мой хостинг-провайдер

Details
Category: Блог
Last Updated: 14 July 2024
Hits: 1341

Я использую мощности хостинг-провайдера BeGet.  Круглосуточная культурная питерская техническая поддержка. Рекомендую всем.

История успеха компании Бегет

Дата-центр Selectel. Блог компании Selectel

Методы анализа занятости диска

Details
Category: Блог
Last Updated: 14 July 2024
Hits: 4045

Microsoft

  • File Server Resource Manager

SequoiaView

  • статья на Хабр "Чем забит мой жесткий диск"
  • статья Cushion Treemaps: Visualization of Hierarchical Information, Jarke J. van Wijk Huub van de Wetering Eindhoven University of Technology Dept. of Mathematics and Computing Science P.O. Box 513, 5600 MB Eindhoven, The Netherlands fvanwijk, This email address is being protected from spambots. You need JavaScript enabled to view it.

GNOME Disk Usage Analyzer (baobab)

  • GitHub-репозиторий baobab
  • Справка GNOME Help

Disk Usage Analyzer - это графическое приложение для анализа использования устройств хранения. Его можно использовать для сканирования нескольких локальных или удаленных устройств хранения, включая жесткие диски, твердотельные накопители, USB-накопители, цифровые камеры и карты памяти. Анализатор использования диска может сканировать либо всю файловую систему, ваш домашний каталог, указанную папку, либо удаленный каталог.

С помощью полученных результатов можно определить, какие папки можно заархивировать, удалить или переместить, чтобы освободить место. Также можно оценить, сколько места понадобится для резервного копирования определённых папок.

Сканирование домашней папки

Домашняя папка - это то место, где находится большинство файлов для большинства пользователей, поскольку настройки по умолчанию часто настроены на сохранение или копирование файлов в подкаталоги внутри нее. Сюда входят загрузки из Интернета, документы, с которыми вы работаете, и фотографии с вашей камеры. Обычно для каждого пользователя на компьютере существует одна домашняя папка.

 

K Jarrod Millman - Complex network analysis with NetworkX

Details
Category: Блог
Last Updated: 14 July 2024
Hits: 1707

K Jarrod Millman - Complex network analysis with NetworkX PyData Global 2020

import networkx as nx
G = nx.Graph()
G.add_edge('A', 'B', weight=4)
G.add_edge('B', 'D', weight=2)
G.add_edge('A', 'C', weight=3)
G.add_edge('C', 'D', weight=4)
nx.shortest_path(G, 'A', 'D', weight='weight')

['A', 'B', 'D']

 

 

Cython

Details
Category: Блог
Last Updated: 14 July 2024
Hits: 1759

Cython- это оптимизирующий статический компилятор как для языка программирования Python, так и для расширенного языка программирования Cython (на основе Pyrex). Это делает написание расширений C для Python таким же простым, как и сам Python.

Read more: Cython

MySQL EN

Details
Category: Блог
Last Updated: 14 July 2024
Hits: 662

If you need to allow remote connections to your MySQL server, see how you can easily accomplish that task. If you work with MySQL, there will be instances in which you need to give remote access to the server. Say, for example, you have servers set up specifically for database and web: Your web server hosts an instance of WordPress that needs to be able to access the remote MySQL server. Out of the box, Ubuntu Server does not allow this, so you have to manually configure MySQL to allow remote connections. The process is fairly simply, and you can even lock down that MySQL server so it is only reachable from specific users on specific IP addresses. Let's dig in and configure your MySQL server to accept remote connections. I'll be working from a 16.04 instance of Ubuntu Server, but the process is quite similar on almost every Linux platform hosting MySQL.

Step one: Allowing access

Out of the box, MySQL will only allow access from the localhost address 127.0.0.1. To change this, you need to open the /etc/mysql/mysql.conf.d/mysqld.cnf file and change the line:
bind-address = 127.0.0.1 to: bind-address = 0.0.0.0
Save and close that file. Restart the MySQL server with the command:
systemctl restart mysql.service

Step two: Granting access to the user

Let's say you have your WordPress server set up (running on IP address 192.168.1.100) to access a MySQL database named wordpressdb on the MySQL server with user wpadmin. On the MySQL server, you must grant access to the wordpressdb to that user from that IP address. Here's how to grant the user access (I'm assuming you already created the user wpadmin on the MySQL server and given it password %u#098Tl3).
Log in to the MySQL server.
Log in to MySQL with the command mysql -u root -p
Type the MySQL root user password.
Issue the MySQL command:
GRANT ALL ON wordpressdb.* TO 'wpadmin'@'192.168.1.100' IDENTIFIED BY '%u#098Tl3' WITH GRANT OPTION;
Flush the MySQL privileges with the command FLUSH PRIVILEGES;
Exit out of the MySQL prompt with the command exit;

Your WordPress instance (set up with the proper user credentials for the database) should be able to use the remote MySQL server as its database host. Congratulations! You successfully set up MySQL for remote connections.

Keep it secure

Although you can open MySQL for connections from remote servers, you should only grant privileges for select users to avoid possible security breaches. Also, be sure those users use very strong passwords. When you combine that with keeping your MySQL server up to date, you should be good to go.

 

  1. Синхронизация облачных хранилищ пользователя
  2. Робот-пылесос Xiaomi Mi Robot Vacuum Mop
  3. SQLite
  4. Удалённое управление компьютерами

Subcategories

Page 11 of 18

  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • AWStats
  • Как Oracle хранит пароли
  • Основы реляционной алгебры и теории графов на практике
  • Графовые базы данных
  • VMware vRealize Operations Manager 7.5

Архивные материалы

  • December, 2019
  • June, 2019
  • May, 2019
  • April, 2019
  • March, 2019
Copyright © 2026 Igor Abzalov's site. All Rights Reserved.
Joomla! is Free Software released under the GNU General Public License.
  • Users 6
  • Articles 98
  • Articles View Hits 1656454
  • Authorization