<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: IMC Linux in IMC</title>
    <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7086083#M5811</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;had you performed&amp;nbsp;special preparation such as installing addional packetges on CentOS/RedHat before started installing IMC ? Which packetges did you install ?&lt;/P&gt;&lt;P&gt;...Just found the HPE IMC v7.3 RedHat Server 7.4 Installation Guide. I hope it's enoght.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Apr 2020 14:11:38 GMT</pubDate>
    <dc:creator>Alexey_</dc:creator>
    <dc:date>2020-04-27T14:11:38Z</dc:date>
    <item>
      <title>IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059562#M5431</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Is it possible to install IMC 7.3 on linux with sql server database?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 18:38:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059562#M5431</guid>
      <dc:creator>ofcgreg0</dc:creator>
      <dc:date>2019-08-22T18:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059563#M5432</link>
      <description>&lt;P&gt;Yes, it is.&lt;/P&gt;&lt;P&gt;A possible scenario is to use latest CentOS 7.5 + MySQL 5.7.&lt;/P&gt;&lt;P&gt;I suggest you to first familiarize with the HPE IMC on Linux scenario by reading the &lt;A href="https://support.hpe.com/hpsc/doc/public/display?docLocale=en_US&amp;amp;docId=emr_na-a00075555en_us&amp;amp;withFrame" target="_blank" rel="noopener"&gt;HPE Intelligent Management Center MySQL 5.7 Installation and Configuration Guide (for Linux)&lt;/A&gt;&amp;nbsp;which is valid for HPE IMC 7.3 E0703 and was published few weeks ago, in June 2019.&lt;/P&gt;&lt;P&gt;I'm not totally sure that that guide, even if recently published, is de-facto updated and that can be used as a really step-by-step installation guide...but, at least, it will give you an idea of what you need for a working setup (I recall there are few things that I fixed along the way with regard to MySQL configuration but, generally, it is a good starting point).&lt;/P&gt;&lt;P&gt;Other HPE IMC related guides can be (not easily) found on support.hpe.com...try this filtering:&amp;nbsp;&lt;A href="https://support.hpe.com/hpesc/public/km/search#q=%22Intelligent%20Management%20Center%22&amp;amp;t=Documents&amp;amp;sort=%40hpescuniversaldate%20descending&amp;amp;layout=table&amp;amp;f:@kmdoclanguagecode=[cv1871448,cv1871440]&amp;amp;hpe=1" target="_blank"&gt;https://support.hpe.com/hpesc/public/km/search#q=%22Intelligent%20Management%20Center%22&amp;amp;t=Documents&amp;amp;sort=%40hpescuniversaldate%20descending&amp;amp;layout=table&amp;amp;f:@kmdoclanguagecode=[cv1871448,cv1871440]&amp;amp;hpe=1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 19:04:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059563#M5432</guid>
      <dc:creator>parnassus</dc:creator>
      <dc:date>2019-08-22T19:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059612#M5433</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;The MySQL 5.7 Guide is not entirely accurate at the moment, and a new version will be published soon with some enhancements and changes that I've asked for.&lt;/P&gt;&lt;P&gt;For Linux installation requirements and demo you can also refer to this video:&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=Ymz-I9F4Hko" target="_blank" rel="noopener"&gt;https://www.youtube.com/watch?v=Ymz-I9F4Hko&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Below is a working MySQL 5.7 /etc/my.cnf file, since there are issues with the one provided by the guide. Note that you only need the deployment issue workaround (validate_password_policy settings) when installing MySQL using 'yum' instead of 'rpm', since the rpm-based method does not install validate_password plugin by default.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NOTE:&amp;nbsp;&lt;/STRONG&gt;Binary logging is enabled here with&amp;nbsp;log_bin = bin.log which is useful for debugging purposes, but would recommend disabling it for production use, as it logs every single transaction to binary logs, which can take up a lot of space on the filesystem over time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[client]
port		= 3306
socket		= /var/lib/mysql/mysql.sock

[mysqld]
port		= 3306
socket		= /var/lib/mysql/mysql.sock

symbolic-links=0

log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

server-id = 1
user = mysql
bind_address = 0.0.0.0
autocommit =1
character_set_server=latin1
skip_name_resolve =1
max_connections = 800
max_connect_errors = 1000
datadir = /var/lib/mysql
transaction_isolation = READ-COMMITTED
explicit_defaults_for_timestamp =1
join_buffer_size = 134217728
tmp_table_size = 67108864
tmpdir = /tmp
max_allowed_packet = 200M
sql_mode = "STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER"
interactive_timeout = 1800
wait_timeout = 1800
read_buffer_size = 16777216
read_rnd_buffer_size = 33554432
sort_buffer_size = 33554432
default-storage-engine = INNODB
lower_case_table_names = 1

########IMC deployment issue workaround########
validate_password_policy=LOW
validate_password_special_char_count=0
validate_password_length=0
validate_password_mixed_case_count=0
validate_password_number_count=0

########log settings########
log_error = error.log
slow_query_log = 1
slow_query_log_file = slow.log
log_queries_not_using_indexes = 1
log_slow_admin_statements = 1
log_slow_slave_statements = 1
log_throttle_queries_not_using_indexes = 10
expire_logs_days = 90
long_query_time = 2
min_examined_row_limit = 100

########replication settings########
master_info_repository = TABLE
relay_log_info_repository = TABLE
log_bin = bin.log
sync_binlog = 1
gtid_mode = on
enforce_gtid_consistency = 1
log_slave_updates
binlog_format = row
relay_log = relay.log
relay_log_recovery = 1
binlog_gtid_simple_recovery = 1
slave_skip_errors = ddl_exist_errors

########innodb settings########
innodb_page_size = 16384
innodb_buffer_pool_size = 512M
innodb_buffer_pool_instances = 8
innodb_buffer_pool_load_at_startup = 1
innodb_buffer_pool_dump_at_shutdown = 1
innodb_lru_scan_depth = 2000
innodb_lock_wait_timeout = 5
innodb_io_capacity = 4000
innodb_io_capacity_max = 8000
innodb_flush_method = O_DIRECT
innodb_file_format = Barracuda
innodb_file_format_max = Barracuda
innodb_log_group_home_dir = ./
innodb_undo_directory = ./
innodb_undo_logs = 128
innodb_undo_tablespaces = 0
innodb_flush_neighbors = 1
innodb_log_file_size = 512M
innodb_log_buffer_size = 16777216
innodb_purge_threads = 4
innodb_large_prefix = 1
innodb_thread_concurrency = 64
innodb_print_all_deadlocks = 1
innodb_strict_mode = 1
innodb_sort_buffer_size = 67108864

########semi sync replication settings########
plugin_dir=/usr/lib64/mysql/plugin/
plugin_load = "rpl_semi_sync_master=semisync_master.so;rpl_semi_sync_slave=semisync_slave.so"
loose_rpl_semi_sync_master_enabled = 1
loose_rpl_semi_sync_slave_enabled = 1
loose_rpl_semi_sync_master_timeout = 5000

[mysqld-5.7]
innodb_buffer_pool_dump_pct = 40
innodb_page_cleaners = 4
innodb_undo_log_truncate = 1
innodb_max_undo_log_size = 2G
innodb_purge_rseg_truncate_frequency = 128
binlog_gtid_simple_recovery=1
log_timestamps=system
transaction_write_set_extraction=MURMUR32
show_compatibility_56=on

[mysqldump]
quick
single-transaction&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 06:26:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059612#M5433</guid>
      <dc:creator>jguse</dc:creator>
      <dc:date>2019-08-23T06:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059696#M5436</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I would like to use HPE IMC on a centOS server with the Microsoft SQL Server database.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 18:25:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059696#M5436</guid>
      <dc:creator>ofcgreg0</dc:creator>
      <dc:date>2019-08-23T18:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059702#M5438</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;CentOS is not a supported OS for IMC. Though that will work for IMC if you follow the documentation/video tutorials linked above.&lt;/P&gt;&lt;P&gt;Microsoft SQL though is only supported on Windows OS (Server 2012 and 2016). I understand there is a Microsoft SQL Server for Linux, but I highly doubt it will be detected by IMC. By the way, Microsoft SQL on Linux also &lt;A href="https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup?view=sql-server-2017" target="_blank" rel="noopener"&gt;doesn't support&lt;/A&gt; running it on CentOS (even if it is almost identical to RHEL).&lt;/P&gt;&lt;P&gt;If you are going to use RHEL, why not opt for MySQL (or Oracle DB), which are supported?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 18:55:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059702#M5438</guid>
      <dc:creator>jguse</dc:creator>
      <dc:date>2019-08-23T18:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059710#M5439</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.hpe.com/t5/user/viewprofilepage/user-id/1975789"&gt;@ofcgreg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;I would like to use HPE IMC on a centOS server with the Microsoft SQL Server database.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why mixing pears and apples? it looks really unreasonable...you need to explain us the exact meaning of that requirement...IMHO you seem a little bit too confused asking for that.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 22:52:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059710#M5439</guid>
      <dc:creator>parnassus</dc:creator>
      <dc:date>2019-08-23T22:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059906#M5442</link>
      <description>&lt;P&gt;I bought imc a while ago and put it on my windows server along with the microsoft sql server database, but now I am wanting to migrate to a RedHat server and am having a hard time installing both IMC on redhat and in migrating from database to MySQL.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 15:38:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059906#M5442</guid>
      <dc:creator>ofcgreg0</dc:creator>
      <dc:date>2019-08-26T15:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7059994#M5445</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Unfortunately migrating from one type of database to another is not possible. You cannot restore from an MSSQL backup to a MySQL system. MySQL to MySQL and MSSQL to MSSQL works, but not between the two. If you setup a new IMC system on Linux, you would need to start from scratch - though there are a few features, like Device View, where you can run an Export of the Device List, and Import that on the other system, which works regardless of DB type.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2019 09:17:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7059994#M5445</guid>
      <dc:creator>jguse</dc:creator>
      <dc:date>2019-08-27T09:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7086083#M5811</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;had you performed&amp;nbsp;special preparation such as installing addional packetges on CentOS/RedHat before started installing IMC ? Which packetges did you install ?&lt;/P&gt;&lt;P&gt;...Just found the HPE IMC v7.3 RedHat Server 7.4 Installation Guide. I hope it's enoght.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Apr 2020 14:11:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7086083#M5811</guid>
      <dc:creator>Alexey_</dc:creator>
      <dc:date>2020-04-27T14:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: IMC Linux</title>
      <link>https://community.hpe.com/t5/imc/imc-linux/m-p/7086239#M5817</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;More or less documentation is sufficient.&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;You should install:&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install ftp-server&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install hardware-monitoring&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install development&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install performance&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum install glibc.i686 libaio.i686 libgcc.i686 libstdc++.i686 compat-libstdc++-33.i686 compat-libstdc++-33.x86_64&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install kde-desktop --skip-broken&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install x11&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum group install java-platform&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If you intend to use MySQL you should install:&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;wget &lt;A href="https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm" target="_blank" rel="noopener"&gt;https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm&lt;/A&gt;&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum localinstall mysql80-community-release-el7-3.noarch.rpm&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum-config-manager --disable mysql80-community&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum-config-manager --enable mysql57-community&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum install mysql-community-server&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;I'm not sure but I think that some features will not work if you will not install:&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;yum install bind-utils&lt;/P&gt;&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 12:36:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/imc/imc-linux/m-p/7086239#M5817</guid>
      <dc:creator>ahpawgol</dc:creator>
      <dc:date>2020-04-28T12:36:37Z</dc:date>
    </item>
  </channel>
</rss>

