Blair  - Soul Eater 버추얼박스 REDASH

• WINDOW

버추얼박스 REDASH

oujin 2024. 6. 2. 23:42
728x90

 

버추얼박스에서 redash 가입 완료

 

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

기본 mysqld.cnf 설정 파일 내용

더보기

[mysqld]
user            = mysql
pid-file        = /var/run/mysqld/mysqld.pid
socket          = /var/run/mysqld/mysqld.sock
port            = 3306
basedir         = /usr
datadir         = /var/lib/mysql
tmpdir          = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking

# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address            = 0.0.0.0

# * Fine Tuning
key_buffer_size         = 16M
max_allowed_packet      = 16M
thread_stack            = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover-options  = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10

# * Query Cache Configuration
query_cache_limit       = 1M
query_cache_size        = 16M

# * Logging and Replication
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1

# Error log - should be very few entries.
log_error = /var/log/mysql/error.log

# Here you can see queries with especially long duration
#slow_query_log_file     = /var/log/mysql/mysql-slow.log
#slow_query_log          = 1
#long_query_time = 2
#log-queries-not-using-indexes

# * InnoDB
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
# Most important is to give InnoDB enough memory to keep frequently used
# data in memory.
# Depending on your available memory, you might want to increase this
# a bit to up to 80% of the computer's memory.
#innodb_buffer_pool_size = 256M
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
quote-names
max_allowed_packet      = 16M

[mysql]
#no-auto-rehash  # faster start of mysql but no tab completion

[isamchk]
key_buffer              = 16M

!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

 

  1. sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf 명령을 실행하여 mysqld.cnf 파일을 엽니다.
  2. 위의 내용을 복사하여 nano 에디터에 붙여넣습니다.
  3. bind-address 설정을 확인하고, 필요한 경우 0.0.0.0으로 설정합니다.
  4. Ctrl + X를 눌러 파일을 저장하고 Enter를 눌러 종료합니다.
  5. MySQL 서버를 재시작합니다.

sudo service mysql restart

 

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

 

MySQL 설치 및 설정 확인

MySQL 서버가 설치되어 있는지 확인: MySQL이 설치되어 있다면, MySQL 서버가 실행 중인지 확인합니다.

sudo service mysql status

 

MySQL 서버 시작: 만약 MySQL 서버가 실행 중이지 않다면, 서버를 시작합니다.

sudo service mysql start

 

MySQL 원격 접근 설정: MySQL 서버가 외부에서 접근 가능하도록 설정합니다. my.cnf 파일을 수정하여 bind-address를 설정합니다.

sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf

 

아래와 같이 수정

bind-address = 0.0.0.0

 

MySQL 사용자와 권한 설정: MySQL에 접속하여 원격 접근 권한을 설정합니다. MySQL 프롬프트에서 다음 명령을 실행합니다.

mysql -u root -p

 

MySQL 프롬프트에 접속한 후, 다음 명령을 실행하여 원격 접근을 허용합니다.

GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;

 

방화벽 설정 확인: MySQL 포트(기본적으로 3306번 포트)가 방화벽에서 열려 있는지 확인합니다.

sudo ufw allow 3306

 

MySQL 연결 테스트: MySQL 클라이언트를 사용하여 원격 연결이 가능한지 테스트합니다.

mysql -u username -p -h 127.0.0.1 -P 3306

 

  1. Redash에서 MySQL 데이터 소스 추가: Redash 웹 인터페이스에 접속하여 MySQL 데이터 소스를 추가합니다.
    • Host: MySQL 서버의 IP 주소 (또는 127.0.0.1 로컬 서버일 경우)
    • Port: 3306
    • User: redash_user (앞서 생성한 사용자)
    • Password: strong_password (앞서 설정한 비밀번호)
    • Database Name: 연결할 MySQL 데이터베이스 이름
  2. 연결 테스트 및 저장: 설정이 완료되면 "연결 테스트"를 클릭하여 연결이 성공하는지 확인합니다. 연결이 성공하면 설정을 저장합니다.

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

 

MySQL Workbench 설치

MySQL APT Repository 추가: MySQL Workbench를 설치하기 전에 MySQL APT 리포지토리를 추가해야 할 수 있습니다.

wget https://dev.mysql.com/get/mysql-apt-config_0.8.16-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.16-1_all.deb
sudo apt-get update

 

 

MySQL Workbench 설치: MySQL Workbench를 설치합니다.

sudo apt-get install mysql-workbench

 

MySQL Workbench 실행: 설치가 완료되면 MySQL Workbench를 실행합니다. 터미널에서 다음 명령을 입력하거나 GUI에서 직접 실행할 수 있습니다

mysql-workbench

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

728x90