Genel

  • Kategori: genel
  • Gösterim: 2174

MySQL Could not find [mysqld] section in my.cnf

Webmin gibi bir panel kullanırken aşağıdaki hatayı alıyorsanız sebebi mysql kurulumu sırasından ya da önceki sürüm kaldırılırken my.cnf dosyasının içeriğinin boş olması.

 

Could not find [mysqld] section in my.cnf

Çözüm;

nano /etc/mysql/conf.d/mysql.cnf
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
explicit_defaults_for_timestamp = 1
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
key_buffer_size = 16M
max_allowed_packet = 16M
thread_stack = 192K
thread_cache_size = 8
myisam-recover-options = BACKUP
query_cache_limit = 1M
query_cache_size = 16M
log_error = /var/log/mysql/error.log
expire_logs_days = 10
max_binlog_size = 100M
big-tables
systemctl restart mysql 

 

Faydalı Olması Dileği İle

SunucuPARK Destek

  • Kategori: genel
  • Gösterim: 2852

Django PostgreSQL yüksek performans ayarları

echo '' > /etc/postgresql/10/main/postgresql.conf
nano /etc/postgresql/10/main/postgresql.conf
data_directory = '/var/lib/postgresql/10/main'
hba_file = '/etc/postgresql/10/main/pg_hba.conf'
ident_file = '/etc/postgresql/10/main/pg_ident.conf'
external_pid_file = '/var/run/postgresql/10-main.pid'
listen_addresses = '*'
port = 5432
max_connections = 300
shared_buffers = 2GB
effective_cache_size = 4GB
maintenance_work_mem = 512MB
checkpoint_completion_target = 0.9
wal_buffers = 16MB
default_statistics_target = 100
effective_io_concurrency = 200
work_mem = 6990kB
min_wal_size = 2GB
max_wal_size = 4GB
max_worker_processes = 2
max_parallel_workers_per_gather = 1
max_parallel_workers = 2
random_page_cost = 10
seq_page_cost = 1
unix_socket_directories = '/var/run/postgresql'
dynamic_shared_memory_type = posix
cluster_name = '10/main'
stats_temp_directory = '/var/run/postgresql/10-main.pg_stat_tmp'
datestyle = 'iso, mdy'
timezone = 'Europe/Istanbul'
lc_messages = 'en_US.UTF-8'
lc_monetary = 'en_US.UTF-8'
lc_numeric = 'en_US.UTF-8'
lc_time = 'en_US.UTF-8'
default_text_search_config = 'pg_catalog.english'
include_dir = 'conf.d'

log_statement = all
logging_collector = on
log_destination = 'stderr'
log_rotation_age = 1d
log_directory = '/var/log/postgresql/pg_log'
log_min_duration_statement = 30
log_rotation_age = 1d
log_timezone = 'Turkey'
log_rotation_size = 100MB

 

systemctl restart postgresql; systemctl enable postgresql

 

Faydalı Olması Dileği İle

SunucuPARK Destek

  • Kategori: genel
  • Gösterim: 2319

Centos'ta Plesk Panel Kurulumu

Bu makalemizde sizlere Centos işletim sisteminde Plesk paneli nasıl kuracağınızı göstereceğiz.

Öncelikle sunucunuzu update edin.

yum update

Selinux'u disable edin.

vi /etc/sysconfig/selinux
selinux=disabled

Ardından sunucunuzu yeniden başlatın.

reboot

Sunucu açıldıktan sonra kurulum dosyalarını indirerek kuruluma başlayın

wget autoinstall.plesk.com/plesk-installer chmod +x plesk-installer ./plesk-installer

Kurulum yalaşık 30 dakika sürmektedir.Kurulum tamamlandıktan sonra https://sunucuipadresi:8443 linkinden plesk panele ulaşabilirsiniz

Faydalı Olması Dileği İle

SunucuPARK Destek

  • Kategori: genel
  • Gösterim: 1903

The command could not be located because '/snap/bin' is not included in

Linux türevlerinde aşağıdaki hatayı alıyorsanız sebebi kurulumda kullanılan klasörün yetkili bir path de kulanılmaması

 

The command could not be located because '/snap/bin' is not included in the PATH environment variable.

Çözüm;

nano ~/.profile
PATH=$PATH:/snap/bin
source ~/.profile

Faydalı Olması Dileği İle

SunucuPARK Destek

  • Kategori: genel
  • Gösterim: 2082

Cisco Cihazlarda Named ACL (Access Control List)

Cisco cihazınızda ACL aktif etmek için aşağıdaki komutları kullanabilirsiniz.

Makdos Teknoloji olarak genelde Object-Group oluşturup bu izinleri ayarlıyoruz.

Sizlerde isterseniz Object-Group isterseniz ip bazlı ACL oluşturabilirsiniz.

 

MK-BB-R01(config)# ip access-list 
<permit/deny> 

Kuralı girdikden sonra bunu istenilen interface'e in yada out yönünde tanımlamak gerekmektedir.

interface ip access-group<out/in>

Faydalı Olması Dileği İle

SunucuPARK Destek

Alt Kategoriler