пятница, 21 ноября 2014 г.

Duplicate key on write or update. Errno 121

SELECT
  constraint_name,
  table_name
FROM
  information_schema.table_constraints
WHERE
  constraint_type = 'FOREIGN KEY'
  AND table_schema = DATABASE()
ORDER BY
  constraint_name;

вторник, 9 сентября 2014 г.

send-mail: Cannot open smtp.gmail.com:587

При настройке ssmtp возникла указанная ошибка в логе mailog было примерно следующее:
sSMTP[1332]: Creating SSL connection to host
sSMTP[1332]: SSL not working: certificate verify failed (20)
sSMTP[1332]: Cannot open smtp.gmail.com:587
sSMTP[1412]: Creating SSL connection to host
sSMTP[1412]: SSL not working: unknown protocol (0)
sSMTP[1412]: Cannot open smtp.gmail.com:587

решением проблемы оказалось:
TLS_CA_File=/etc/pki/tls/certs/ca-bundle.crt

четверг, 4 сентября 2014 г.

Изменение размера LVM для виртуальной машины VMware

Note: These steps only apply to EXT3 file systems.
 
Caution: VMware recommends having a complete backup of the virtual machine prior making these changes.
  1. Power off the virtual machine.
  2. Edit the virtual machine settings and extend the virtual disk size. For more information, see Increasing the size of a virtual disk (1004047).
  3. Power on the virtual machine.
  4. Identify the device name, which is by default /dev/sda, and confirm the new size by running the command:
    # fdisk -l
  5. Create a new primary partition:
    1. Run the command:
      # fdisk /dev/sda (depending the results of the step 4)
       
    2. Press p to print the partition table to identify the number of partitions. By default there are 2: sda1 and sda2.
    3. Press n to create a new primary partition. 
    4. Press p for primary.
    5. Press 3 for the partition number, depending the output of the partition table print.
    6. Press Enter two times.
    7. Press t to change the system's partition ID
    8. Press 3 to select the newly creation partition
    9. Type 8e to change the Hex Code of the partition for Linux LVM
    10. Press w to write the changes to the partition table.
  6. Restart the virtual machine.
  7. Run this command to verify that the changes were saved to the partition table and that the new partition has an 8e type:

    # fdisk -l
  8. Run this command to convert the new partition to a physical volume:

    Note: The number for the sda can change depending on system setup. Use the sda number that was created in step 5.

    # pvcreate /dev/sda3
  9. Run this command to extend the physical volume:

    # vgextend VolGroup00 /dev/sda3

    Note: To determine which volume group to extend, use the command vgdisplay.
  10. Run this command to verify how many physical extents are available to the Volume Group:
    # vgdisplay VolGroup00 | grep "Free"
  11. Run the following command to extend the Logical Volume:

    # lvextend -L+#G /dev/VolGroup00/LogVol00

    Where # is the number of Free space in GB available as per the previous command. Use the full number output from Step 10 including any decimals.

    Note: to determine which logical volume to extend, use the command lvdisplay.
  12. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:

    # ext2online /dev/VolGroup00/LogVol00
    Note: Use resize2fs instead of ext2online if it is not a Red Hat virtual machine.
  13. Run the following command to verify that the / filesystem has the new space available:

    # df -h /

среда, 20 августа 2014 г.

Установка java sdk CentOS 6

Ищем доступные для установки версии java: Устанавливаем java devkit 1.7:

Включение X11 и XMing

Чтобы корректно заработало удаленное подключение через Xming нужно установить на сервере X-сервер и шрифты:
yum groupinstall 'X Window System' 
yum install xorg-x11-xauth
yum install xorg-x11-fonts-*
yum install  xorg-x11-utils
Выставить в yes следующие опции в файле /etc/ssh/sshd_config
#X11Forwarding no
X11Forwarding yes
#X11DisplayOffset 10
X11UseLocalhost yes

После всего перезапустить service sshd restart и сделать export DISPLAY=localhost:0.0

вторник, 24 июня 2014 г.

Установка timezone в CentOS

Установить корректное дату-время и часовой пояс в CentOS 6 можно с помощью специальной утилиты tzselect.

понедельник, 23 июня 2014 г.

yum install ssmtp

Для установки ssmtp из-под Centos 6 необходимо поставить дополнительный репозитарий. Делается это следующим образом:

Для x86_64: rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
Для i386:      rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm

четверг, 20 марта 2014 г.

Неправильное время в Enterprise Manager

Возникла ситуация, когда в Enterprise Manager отображалось некорректное время (летнее, а должно быть зимнее). Естественно, сам сервер был установлен на корректный timezone и нам нем выполнена отмена перевода времени на лето/зима.

Решение проблемы было в том, что Enterprise Manager использует свою java и для нее тоже нужно было применять updater.jar.

Ищем в конфигурационном файле агента emd.properties откуда EM цепляет java. Моем случае это было: JAVA_HOME=/oracle/app/oracle/product/11.2.0/dbhome_1/jdk/jre

Далее качаем tzupdater и выполняем команду:
/oracle/app/oracle/product/11.2.0/dbhome_1/jdk/jre/bin/java -jar tzupdater.jar -u

Рестратуем EM (emctl stop dbconsole, emctl start dbconsole) и все работает!


  

среда, 19 марта 2014 г.

вторник, 4 марта 2014 г.

Oracle SQL Developer. ORA-12705: Cannot access NLS data files or invalid environment specified

Oracle SQL Developer. ORA-12705: Cannot access NLS data files or invalid environment specified.

Возникла проблема подключения Oracle SQL Developer к СУБД Oracle 11g XE. При попытке создать соединение к стандартному для  Oracle 11g XE экземпляру БД (SID) - XE получаю ошибку - ORA-12705: Cannot access NLS data files or invalid environment specified.

Все дело в локали. Для устранения данной ошибки нужно в настройках SQL Developer - \sqldeveloper\ide\bin\ - в файлик - ide.conf - добавить следующие строчки:

AddVMOption -Duser.region=us
AddVMOption -Duser.language=en