Skip to content

Tag: centos

SQL Server service can not execute in centos

I want to install SQL Server on centOs. I initial this service by command When I get status of service, I get this error: Failed to start Microsoft SQL Server Database Engine /var/opt/mssql/log/ I checked this location to see errors from SQL Server, but this location is empty. Can you help me? Answer Larnu, T…

Creating tables in InfluxDB via Terminal

Are there tutorials online that teaches you how to create tables and input values in InfluxDB? How would you create a table and insert values into them? Answer InfluxDB doesn’t really have the concept of a table. Data is structured into series, which is composed of measurements, tags, and fields. Measur…